Files
rocm-systems/README.md
T

26 行
647 B
Markdown
原始文件 標準檢視 歷史記錄

2018-06-04 15:43:09 -05:00
ROC Tracer library, Callback/Activity APIs
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-05 00:44:23 +00: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-04 15:43:09 -05:00
To build:
2018-06-15 10:31:01 -05:00
cd <your path>/roctracer/build
cmake ..
make
2018-06-04 15:43:09 -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