aboutsummaryrefslogtreecommitdiffhomepage
path: root/trace_profile/vtune
diff options
context:
space:
mode:
authorjohannst <johannst@users.noreply.github.com>2025-03-14 01:19:37 +0000
committerjohannst <johannst@users.noreply.github.com>2025-03-14 01:19:37 +0000
commitb6627f53bf459334446bb1e2c51728a764c8651d (patch)
tree91d1326986ddb28a4bf29071c6db1bd379814402 /trace_profile/vtune
parent2413e9cbad620ca20b3aaffeb9cf4bb132e6113f (diff)
downloadnotes-b6627f53bf459334446bb1e2c51728a764c8651d.tar.gz
notes-b6627f53bf459334446bb1e2c51728a764c8651d.zip
deploy: cb9e06f3a5bd9d42494e6abdaf61fb3fe19d4ea4
Diffstat (limited to 'trace_profile/vtune')
-rw-r--r--trace_profile/vtune/Makefile11
-rw-r--r--trace_profile/vtune/main.c32
2 files changed, 43 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
diff --git a/trace_profile/vtune/main.c b/trace_profile/vtune/main.c
new file mode 100644
index 0000000..8c019d3
--- /dev/null
+++ b/trace_profile/vtune/main.c
@@ -0,0 +1,32 @@
+#include <ittnotify.h>
+
+void init();
+void compute();
+void shutdown();
+
+int main() {
+ init();
+
+ __itt_resume();
+ compute();
+ __itt_pause();
+
+ shutdown();
+ return 0;
+}
+
+//
+
+#include <unistd.h>
+
+void init() {
+ sleep(1);
+}
+
+void compute() {
+ sleep(1);
+}
+
+void shutdown() {
+ sleep(1);
+}