initial commit
[deliverable/exatracer.git] / scripts / check
CommitLineData
74c0b9b3
OD
1#!/bin/sh
2#
3# SPDX-License-Identifier: MIT
4#
5# Copyright (c) 2024 Olivier Dion <odion@efficios.com>
6
7TRACE_OUTPUT=traces
8
9lttng create --output $TRACE_OUTPUT
10
11# Enable all HSA, HIP and roctx event types.
12lttng enable-event --userspace 'hsa:*'
13lttng enable-event --userspace 'hip:*'
14lttng enable-event --userspace 'roctx:*'
15
16lttng start
17
18LD_PRELOAD=$1 $2
19
20lttng destroy
21
22babeltrace2 $TRACE_OUTPUT
This page took 0.023124 seconds and 4 git commands to generate.