diff options
Diffstat (limited to 'trace_profile/vtune/Makefile')
-rw-r--r-- | trace_profile/vtune/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/trace_profile/vtune/Makefile b/trace_profile/vtune/Makefile new file mode 100644 index 0000000..694e453 --- /dev/null +++ b/trace_profile/vtune/Makefile @@ -0,0 +1,11 @@ +VTUNE ?= /opt/intel/oneapi/vtune/latest + +main: main.c + gcc -o $@ $^ -I$(VTUNE)/include -L$(VTUNE)/lib64 -littnotify + +vtune: main + $(VTUNE)/bin64/vtune -collect hotspots -start-paused -- ./main + +clean: + $(RM) main + $(RM) -r r*hs |