Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
vchuravy committed Oct 24, 2024
1 parent c9d37bf commit 447e57d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions reframe/checks/src/saxpy.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ end setup = (
)

bytes_saxpy = 3 * sizeof(T) * N # num bytes transferred in SAXPY
bytes_copy = 2 * sizeof(T) * N # num bytes transferred in copy
bytes_copy = 2 * sizeof(T) * N # num bytes transferred in copy
time_saxpy = minimum(res_saxpy).time
time_copy = minimum(res_copy).time
time_copy = minimum(res_copy).time

println("Copy: ", bytes_copy/time_copy)
println("Saxpy: ", bytes_saxpy/time_saxpy)
println("Copy: ", bytes_copy / time_copy)
println("Saxpy: ", bytes_saxpy / time_saxpy)
println("Solution Validates")

0 comments on commit 447e57d

Please sign in to comment.