Rename hipDrvOccupancy to hipModuleOccupancy and match CUDA syntax (#1943)

[ROCm/hip commit: ba8a556ea9]
Este commit está contenido en:
Rahul Garg
2020-04-07 01:32:52 -07:00
cometido por GitHub
padre 326bd0fe1d
commit 003d776e72
Se han modificado 10 ficheros con 222 adiciones y 112 borrados
@@ -56,9 +56,9 @@ void launchKernel(float* C, float* A, float* B, bool manual){
const unsigned threadsperblock = 32;
const unsigned blocks = (NUM/threadsperblock)+1;
uint32_t mingridSize = 0;
uint32_t gridSize = 0;
uint32_t blockSize = 0;
int mingridSize = 0;
int gridSize = 0;
int blockSize = 0;
if (manual){
blockSize = threadsperblock;
@@ -86,7 +86,7 @@ void launchKernel(float* C, float* A, float* B, bool manual){
printf("kernel Execution time = %6.3fms\n", eventMs);
//Calculate Occupancy
uint32_t numBlock = 0;
int numBlock = 0;
HIP_CHECK(hipOccupancyMaxActiveBlocksPerMultiprocessor(&numBlock, multiply, blockSize, 0));
if(devProp.maxThreadsPerMultiProcessor){