Files
coorl-lost-cities/experiments/julia_torch_mlp/bench_torch.jl
T
2026-05-07 21:36:21 +09:00

18 lines
299 B
Julia

using JSON
function main()
try
@eval using Torch
catch err
result = Dict(
"backend" => "Torch.jl",
"status" => "BLOCKED",
"error" => sprint(showerror, err),
)
println(JSON.json(result))
exit(1)
end
end
main()