File tree Expand file tree Collapse file tree 2 files changed +0
-7
lines changed
Expand file tree Collapse file tree 2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change 5858# cumulative total time spent on compilation, in nanoseconds
5959cumulative_compile_time_ns_before () = ccall (:jl_cumulative_compile_time_ns_before , UInt64, ())
6060cumulative_compile_time_ns_after () = ccall (:jl_cumulative_compile_time_ns_after , UInt64, ())
61- # cumulative total time the process has spent on compilation while measurement was enabled.
62- cumulative_compile_time_ns () = ccall (:jl_cumulative_compile_time_ns , UInt64, ())
6361
6462# total time spend in garbage collection, in nanoseconds
6563gc_time_ns () = ccall (:jl_gc_total_hrtime , UInt64, ())
Original file line number Diff line number Diff line change @@ -90,11 +90,6 @@ uint64_t jl_cumulative_compile_time_ns_after()
9090 return jl_atomic_load (&jl_cumulative_compile_time);
9191}
9292
93- extern " C" JL_DLLEXPORT
94- uint64_t jl_cumulative_compile_time_ns () {
95- return jl_atomic_load (&jl_cumulative_compile_time);
96- }
97-
9893// this generates llvm code for the lambda info
9994// and adds the result to the jitlayers
10095// (and the shadow module),
You can’t perform that action at this time.
0 commit comments