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 92b3a6d commit 38376c3Copy full SHA for 38376c3
.github/workflows/Testing.yaml
@@ -13,7 +13,6 @@ jobs:
13
version:
14
- '1.7'
15
- '1'
16
- - '1.11.1'
17
- 'nightly'
18
os:
19
- ubuntu-latest
perf/benchmark.jl
@@ -114,7 +114,8 @@ println("======= breakdown benchmark =======")
114
x = rand(100000)
115
tf = Libtask.TapedFunction(ackley, x, nothing)
116
tf(x, nothing);
117
-ins = tf.tape[45]
+idx = findlast((x)->isa(x, Libtask.Instruction), tf.tape)
118
+ins = tf.tape[idx]
119
b = ins.input[1]
120
121
@show ins.input |> length
0 commit comments