We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60c532e commit e0179d2Copy full SHA for e0179d2
test/precompile/precompile.jl
@@ -4,7 +4,8 @@ using SnoopCompileCore
4
@testset "Invalidation and precompilation" begin
5
invs = @snoopr using LVUser
6
m = only(methods(LVUser.filter2davx))
7
- mi = m.specializations[1]
+ specs = m.specializations
8
+ mi = isa(specs, Core.MethodInstance) ? specs : specs[1]
9
@test mi ∉ invs
10
A = rand(Float64, 512, 512)
11
kern = [
0 commit comments