Skip to content

Commit fcc687a

Browse files
committed
benchmarks: more hierarchy
1 parent 5f61a9c commit fcc687a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

benchmark/benchmarks.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function test_pydict_init()
1313
return x
1414
end
1515

16-
SUITE["julia"]["pydict"]["init"] = @benchmarkable test_pydict_init()
16+
SUITE["basic"]["julia"]["pydict"]["init"] = @benchmarkable test_pydict_init()
1717

1818
function test_pydict_pydel()
1919
random = pyimport("random").random
@@ -31,7 +31,7 @@ function test_pydict_pydel()
3131
return x
3232
end
3333

34-
SUITE["julia"]["pydict"]["pydel"] = @benchmarkable test_pydict_pydel()
34+
SUITE["basic"]["julia"]["pydict"]["pydel"] = @benchmarkable test_pydict_pydel()
3535

3636
@generated function test_atpy(::Val{use_pydel}) where {use_pydel}
3737
quote
@@ -47,5 +47,5 @@ SUITE["julia"]["pydict"]["pydel"] = @benchmarkable test_pydict_pydel()
4747
end
4848
end
4949

50-
SUITE["@py"]["pydict"]["init"] = @benchmarkable test_atpy(Val(false))
51-
SUITE["@py"]["pydict"]["pydel"] = @benchmarkable test_atpy(Val(true))
50+
SUITE["basic"]["@py"]["pydict"]["init"] = @benchmarkable test_atpy(Val(false))
51+
SUITE["basic"]["@py"]["pydict"]["pydel"] = @benchmarkable test_atpy(Val(true))

0 commit comments

Comments
 (0)