Skip to content
Snippets Groups Projects
Verified Commit 0259928c authored by Dorian Stoll's avatar Dorian Stoll
Browse files

rodinia-srad: julia: Output to stdout

parent f3bc4f4e
No related branches found
No related tags found
No related merge requests found
......@@ -131,14 +131,12 @@ function main(args)
println("Computation done")
f = open("output.txt","w")
for i in 1:size(J,1)
for j in 1:size(J,2)
print(f,@sprintf("%.5f ",J[i,j]))
@printf "%.5f " J[i, j]
end
println(f)
println()
end
close(f)
end
main(ARGS)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment