Files
rocm-systems/README.md
T

34 lines
691 B
Markdown
Raw Normal View History

2018-06-15 13:49:29 -05:00
# ROC-tracer
ROC tracer library. Callback/Activity APIs
2018-06-04 15:43:09 -05:00
The library source tree:
- doc - Documentation
- inc/roctracer.h - Library public API
- src - Library sources
- core - Library API sources
- util - Library utils sources
- test - test suit
- MatrixTranspose - test based on HIP MatrixTranspose sample
2018-06-15 13:49:29 -05:00
## Environment example
```
2018-06-15 10:31:01 -05:00
export HIP_PATH=/opt/rocm/hip
export HCC_HOME=/opt/rocm/hcc
export CMAKE_PREFIX_PATH=/opt/rocm/lib:/opt/rocm/include/hsa
2018-06-15 13:49:29 -05:00
```
2018-06-04 15:43:09 -05:00
2018-06-15 13:49:29 -05:00
## To build
```
2018-06-15 10:31:01 -05:00
cd <your path>/roctracer/build
cmake ..
make
2018-06-15 13:49:29 -05:00
```
2018-06-04 15:43:09 -05:00
2018-06-15 13:49:29 -05:00
## To rebuild and run test
```
2018-06-15 10:31:01 -05:00
export ITERATIONS=<iterations number [100]>
cd <your path>/roctracer/test/MatrixTranspose
make
2018-06-15 13:49:29 -05:00
```