Revert "Make directed_test support static libs"
This reverts commit8d296e9e2a. Reason for revert: <INSERT REASONING HERE> Change-Id: Ib2d1084ea21461f70f96f95c6025a08f88288357 [ROCm/hip-tests commit:144a6fb100]
This commit is contained in:
@@ -2,14 +2,6 @@ project(bit_extract)
|
||||
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
|
||||
if(NOT DEFINED __HIP_ENABLE_PCH)
|
||||
set(__HIP_ENABLE_PCH ON CACHE BOOL "enable/disable pre-compiled hip headers")
|
||||
endif()
|
||||
|
||||
if(${__HIP_ENABLE_PCH})
|
||||
add_definitions(-D__HIP_ENABLE_PCH)
|
||||
endif()
|
||||
|
||||
# Search for rocm in common locations
|
||||
list(APPEND CMAKE_PREFIX_PATH /opt/rocm/hip /opt/rocm)
|
||||
|
||||
|
||||
@@ -54,20 +54,6 @@ int main(int argc, char* argv[]) {
|
||||
size_t N = 1000000;
|
||||
size_t Nbytes = N * sizeof(uint32_t);
|
||||
|
||||
#ifdef __HIP_ENABLE_PCH
|
||||
// Verify hip_pch.o
|
||||
const char* pch = nullptr;
|
||||
unsigned int size = 0;
|
||||
__hipGetPCH(&pch, &size);
|
||||
printf("pch size: %u\n", size);
|
||||
if (size == 0) {
|
||||
printf("__hipGetPCH failed!\n");
|
||||
return -1;
|
||||
} else {
|
||||
printf("__hipGetPCH succeeded!\n");
|
||||
}
|
||||
#endif
|
||||
|
||||
int deviceId;
|
||||
CHECK(hipGetDevice(&deviceId));
|
||||
hipDeviceProp_t props;
|
||||
|
||||
@@ -7,9 +7,6 @@ cmake_minimum_required(VERSION 3.10)
|
||||
# Search for rocm in common locations
|
||||
list(APPEND CMAKE_PREFIX_PATH /opt/rocm/hip /opt/rocm)
|
||||
|
||||
# create square.cpp
|
||||
execute_process(COMMAND sh -c "/opt/rocm/hip/bin/hipify-perl ../square.cu > ../square.cpp")
|
||||
|
||||
# Find hip
|
||||
find_package(hip)
|
||||
|
||||
|
||||
@@ -9,9 +9,6 @@ if(NOT DEFINED HIP_PATH)
|
||||
endif()
|
||||
set(CMAKE_MODULE_PATH "${HIP_PATH}/cmake" ${CMAKE_MODULE_PATH})
|
||||
|
||||
# Search for rocm in common locations
|
||||
list(APPEND CMAKE_PREFIX_PATH ${HIP_PATH} /opt/rocm)
|
||||
|
||||
project(12_cmake)
|
||||
|
||||
set(HIP_CLANG_NUM_PARALLEL_JOBS 2)
|
||||
|
||||
@@ -37,13 +37,7 @@ Use the following commands to build and execute the sample
|
||||
```
|
||||
mkdir build
|
||||
cd build
|
||||
|
||||
For shared lib of hip rt,
|
||||
cmake ..
|
||||
Or for static lib of hip rt,
|
||||
cmake -DCMAKE_PREFIX_PATH="/opt/rocm/llvm/lib/cmake" ..
|
||||
|
||||
Then,
|
||||
make
|
||||
./MatrixTranspose
|
||||
```
|
||||
|
||||
@@ -12,22 +12,16 @@ make
|
||||
|
||||
2.CMakeLists.txt can support shared and static libs of hip-rocclr runtime.
|
||||
|
||||
To build a sample, run in the sample folder,
|
||||
To build a sample, type in sample folder,
|
||||
|
||||
mkdir -p build && cd build
|
||||
mkdir build (if build folder is missing)
|
||||
|
||||
rm -rf * (to clear up)
|
||||
|
||||
a. to build with shared libs, run
|
||||
cd build
|
||||
|
||||
cmake ..
|
||||
|
||||
b. to build with static libs, run
|
||||
|
||||
cmake -DCMAKE_PREFIX_PATH="/opt/rocm/llvm/lib/cmake" ..
|
||||
|
||||
Then run,
|
||||
|
||||
make
|
||||
|
||||
Note that if you want debug version, add "-DCMAKE_BUILD_TYPE=Debug" in cmake cmd.
|
||||
If you want debug version, follow,
|
||||
|
||||
cmake -DCMAKE_BUILD_TYPE=Debug ..
|
||||
Reference in New Issue
Block a user