Temporarily comment out Hcc-specific APIs for CLang compiler

Temporarily comment out Hcc-specific template functions
hipExtLaunchKernelGGL and hipOccupancyMaxPotentialBlockSize for CLang
compiler so that all test cases under hip/samples can be built
successfully for Clang + Hip/Hcc runtime.

Change-Id: Iafc761257be4a7b34eafa6759a01f369570cd6ce
이 커밋은 다음에 포함됨:
Tao Sang
2020-02-16 20:03:57 -05:00
부모 eb8c4d1ce2
커밋 15b91e9f1e
6개의 변경된 파일20개의 추가작업 그리고 3개의 파일을 삭제
+2
파일 보기
@@ -46,8 +46,10 @@ int main(int argc, char* argv[]) {
// test case for using kernel function pointer
uint32_t gridSize = 0;
uint32_t blockSize = 0;
#if defined(__HIP_PLATFORM_HCC__) && GENERIC_GRID_LAUNCH == 1 && defined(__HCC__)
hipOccupancyMaxPotentialBlockSize(&gridSize, &blockSize, f1, 0, 0);
assert(gridSize != 0 && blockSize != 0);
#endif
// test case for using kernel function pointer with template
gridSize = 0;