Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 rader
821 B
Markdown
Permalänk Normal vy Historik

2016-01-26 10:43:41 -05:00
# Square.md
2016-01-26 20:14:33 -06:00
Simple test below is an example, shows how to use hipify-perl to port CUDA code to HIP:
2016-01-26 20:14:33 -06:00
- Add hip/bin path to the PATH
```
$ export PATH=$PATH:[MYHIP]/bin
```
- Define environment variable
```
$ export HIP_PATH=[MYHIP]
```
- Build executable file
```
$ cd ~/hip/samples/0_Intro/square
mkdir -p build && cd build
cmake ..
make
$ Building without cmake
/opt/rocm/hip/bin/hipify-perl square.cu > square.cpp
/opt/rocm/hip/bin/hipcc square.cpp -o square.out
/opt/rocm/hip/bin/hipcc -use-staticlib square.cpp -o square.out.static
```
- Execute file
```
$ ./square.out
2024-06-01 22:23:10 +01:00
info: running on device AMD Radeon RX 6900 XT
info: allocate host mem ( 7.63 MB)
info: allocate device mem ( 7.63 MB)
info: copy Host2Device
info: launch 'vector_square' kernel
info: copy Device2Host
info: check result
PASSED!
```