change @benchmark to @btime

This commit is contained in:
Bogumił Kamiński 2022-03-24 10:35:42 +01:00
parent 9ce92f5abe
commit de5d3d5b57

View File

@ -68,7 +68,7 @@ read("puzzles2.csv") == read("puzzles.csv")
puzzles.Rating
using BenchmarkTools
@benchmark $puzzles.Rating
@btime $puzzles.Rating;
puzzles.Rating == copy(puzzles.Rating)
@ -96,7 +96,7 @@ columnindex(puzzles, "Some fancy column name")
hasproperty(puzzles, "Rating")
hasproperty(puzzles, "Some fancy column name")
@benchmark $puzzles[:, :Rating]
@btime $puzzles[:, :Rating];
puzzles[!, "Rating"]
puzzles[!, :Rating]