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 94ddf62 commit 049b488Copy full SHA for 049b488
test/test_express_opt.jl
@@ -8,7 +8,7 @@
8
state = 1im*X1⊗Z2+2*Y2⊗(Z1+X1)+StabilizerState("YX ZZ")
9
nocache = @timed express(state)
10
withcache = @timed express(state)
11
- @test nocache.time > 10*withcache.time
+ !Sys.isapple() && @test nocache.time > 10*withcache.time
12
@test withcache.bytes == 0
13
@test nocache.value ≈ withcache.value ≈ express(1im*X1⊗Z2+2*Y2⊗(Z1+X1)+StabilizerState("YX ZZ"))
14
@@ -20,7 +20,7 @@
20
express(state)
21
nocache = @timed express(state2)
22
withcache = @timed express(state2)
23
- @test nocache.time > 20*withcache.time
+ !Sys.isapple() && @test nocache.time > 20*withcache.time
24
25
@test nocache.value ≈ withcache.value ≈ express(state2)
26
0 commit comments