Revert "Match Occupancy APIs syntax with CUDA (#1625)" (#1857)

Reverting this for now till we figure out how to avoid the build
breakage.

This reverts commit 262ad13dd5.
This commit is contained in:
Maneesh Gupta
2020-02-10 10:45:28 +05:30
committed by GitHub
parent 8f96152d3a
commit d032637934
7 changed files with 60 additions and 35 deletions
@@ -86,8 +86,8 @@ void launchKernel(float* C, float* A, float* B, bool manual){
printf("kernel Execution time = %6.3fms\n", eventMs);
//Calculate Occupancy
int numBlock = 0;
HIP_CHECK(hipOccupancyMaxActiveBlocksPerMultiprocessor(&numBlock, multiply,(int)blockSize, 0));
uint32_t numBlock = 0;
HIP_CHECK(hipOccupancyMaxActiveBlocksPerMultiprocessor(&numBlock, multiply, blockSize, 0));
if(devProp.maxThreadsPerMultiProcessor){
std::cout << "Theoretical Occupancy is " << (double)numBlock* blockSize/devProp.maxThreadsPerMultiProcessor * 100 << "%" << std::endl;