• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

DEBIAN/H15-Nov-2018-5138

RPM/H15-Nov-2018-4229

cmake_modules/H15-Nov-2018-11795

include/H03-May-2022-2,4861,457

src/H03-May-2022-10,7638,136

tests/H15-Nov-2018-71,69054,970

.gitignoreH A D15-Nov-2018125 119

LICENSE.mdH A D15-Nov-20181.1 KiB2419

MakefileH A D15-Nov-2018182 1912

README.mdH A D15-Nov-20182.4 KiB4126

libhsakmt.pc.inH A D15-Nov-2018312 129

README.md

1### ROCt Library
2
3This repository includes the user-mode API interfaces used to interact with the ROCk driver. Currently supported agents include only the AMD/ATI Fiji family of discrete GPUs.
4
5Starting at 1.7 release, ROCt uses drm render device. This requires the user to belong to video group. Add the user account to video group with "sudo usermod -a -G video _username_" command if the user if not part of video group yet.
6
7#### ROCk Driver
8
9The ROCt library is not a standalone product and requires that you have the correct ROCk driver set installed. We recommend reading the full compatibility and installation details which are available in the ROCk github:
10
11https://github.com/RadeonOpenCompute/ROCK-Radeon-Open-Compute-Kernel-Driver
12
13#### Building the Thunk
14
15A simple cmake-based system is available for building thunk. To build the thunk from the the ROCT-Thunk-Interface directory, execute:
16
17```bash
18    mkdir -p build
19    cd build
20    cmake ..
21    make
22```
23
24If the hsakmt-roct and hsakmt-roct-dev packages are desired:
25
26```bash
27    mkdir -p build
28    cd build
29    cmake ..
30    make package
31    make package-dev
32```
33
34#### Disclaimer
35
36The information contained herein is for informational purposes only, and is subject to change without notice. While every precaution has been taken in the preparation of this document, it may contain technical inaccuracies, omissions and typographical errors, and AMD is under no obligation to update or otherwise correct this information. Advanced Micro Devices, Inc. makes no representations or warranties with respect to the accuracy or completeness of the contents of this document, and assumes no liability of any kind, including the implied warranties of noninfringement, merchantability or fitness for particular purposes, with respect to the operation or use of AMD hardware, software or other products described herein. No license, including implied or arising by estoppel, to any intellectual property rights is granted by this document. Terms and limitations applicable to the purchase or use of AMD's products are as set forth in a signed agreement between the parties or in AMD's Standard Terms and Conditions of Sale.
37
38AMD, the AMD Arrow logo, and combinations thereof are trademarks of Advanced Micro Devices, Inc. Other product names used in this publication are for identification purposes only and may be trademarks of their respective companies.
39
40Copyright (c) 2014-2017 Advanced Micro Devices, Inc. All rights reserved.
41