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 6559dff commit 20526cbCopy full SHA for 20526cb
src/trials.jl
@@ -11,14 +11,14 @@ mutable struct Trial
11
linux_perf_stats::Union{LinuxPerf.Stats,Nothing}
12
end
13
14
-struct TrialContents
15
- time
16
- gctime
17
- memory
18
- allocs
19
- return_val
20
- return_val_2
21
- linux_perf_stats
+struct TrialContents{A, B}
+ time::Float64
+ gctime::Float64
+ memory::Int
+ allocs::Int
+ return_val::A
+ return_val_2::B
+ linux_perf_stats::Union{LinuxPerf.Stats,Nothing}
22
23
24
function Trial(params::Parameters)
0 commit comments