From ee8013637e4d4823e9ae28abf990e50d391c9577 Mon Sep 17 00:00:00 2001 From: Sagar Dolas Date: Thu, 27 Sep 2018 13:53:09 +0200 Subject: [PATCH] include roublas error corrected opt/rocm/bin/hipcc ./gemm_bench.cpp -o bin/gemm_bench -I./../kernels -lrocblas -O3 -std=c++11 --amdgpu-target=gfx900 ./gemm_bench.cpp:9:10: fatal error: 'rocblas.h' file not found #include --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 66a99b3..538bc9c 100644 --- a/README.md +++ b/README.md @@ -862,7 +862,7 @@ Setting your enviroment variables before compiling/running: ``` export PATH=PATH_TO_ROCM/bin:$PATH -export CPATH=PATH_TO_MIOPEN/include:$CPATH +export CPATH=PATH_TO_MIOPEN/include:PATH_TO_ROCBLAS/include:$CPATH export LIBRARY_PATH=PATH_TO_MIOPEN/lib:$LIBRARY_PATH export LD_LIBRARY_PATH=PATH_TO_MIOPEN/lib:PATH_TO_MIOPENGEMM/lib:$LD_LIBRARY_PATH ```