Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 610 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 610 Bytes

AMDuProf.jl

Julia interface for the AMDuProf Application programming Interfaces

Collection control

When actually using AMDuProf tools to profile your application, it's recommended to start the profiler in paused mode, and use AMDuPerf.jl to only instrument the parts of your code that you are interested in. This can be done as follows:

using AMDuProf

# warm-up, compile code, etc

AMDuProf.resume()
# do interesting things here
AMDuProf.pause()

# convenience macro for the above:
AMDuProf.@collect begin
    # ...
end

Acknowledgments