Skip to content

Commit

Permalink
Update ThermalFluid.jmd
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas authored Jun 19, 2024
1 parent 12cd599 commit 9cfd198
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions benchmarks/ModelingToolkit/ThermalFluid.jmd
Original file line number Diff line number Diff line change
Expand Up @@ -335,17 +335,17 @@ for (i, N_x_i) in enumerate(N_x)
if N_x_i >= 480
total_times[i, 1] = NaN
else
print("Running MTK System")
println("Running MTK System")
total_times[i, 1] = test_speed(MTKSystem, N_x_i)
end

print("Running JSC")
println("Running JSC")
total_times[i, 2] = test_speed(IRSystem, N_x_i)

print("Running JSC C-backend")
println("Running JSC C-backend")
total_times[i, 3] = test_speed(IRSystem, N_x_i, target=CBackend)

print("Running JSC LLVM-backend")
println("Running JSC LLVM-backend")
total_times[i, 4] = test_speed(IRSystem, N_x_i, target=LLVMBackend)

@show N_x_i, ss_times[i, :], times[i, :], total_times[i, :]
Expand Down

0 comments on commit 9cfd198

Please sign in to comment.