We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9d220e0 + cd29f3b commit b5cc4ebCopy full SHA for b5cc4eb
aten/src/THCUNN/LookupTableBag.cu
@@ -15,7 +15,11 @@
15
#include "THCHalfAutoNumerics.cuh"
16
#include "THCTensorSort.cuh"
17
18
+#if defined(__HIP_PLATFORM_HCC__)
19
+const int WARP_SIZE = 64;
20
+#else
21
const int WARP_SIZE = 32;
22
+#endif
23
const int MODE_SUM = 0;
24
const int MODE_MEAN = 1;
25
cmake/public/LoadHIP.cmake
@@ -47,7 +47,7 @@ ENDIF()
47
48
# ROCFFT_PATH
49
IF(NOT DEFINED ENV{ROCFFT_PATH})
50
- SET(ROCBLAS_PATH ${ROCM_PATH}/rocfft)
+ SET(ROCFFT_PATH ${ROCM_PATH}/rocfft)
51
ELSE()
52
SET(ROCFFT_PATH $ENV{ROCFFT_PATH})
53
ENDIF()
0 commit comments