Merge pull request #256 from gargrahul/texture_driver_api_support

Texture driver APIs support
This commit is contained in:
Ben Sander
2017-11-27 13:52:39 -06:00
committed by GitHub
16 changed files with 4522 additions and 180 deletions
+3 -1
View File
@@ -14,7 +14,9 @@ texture<float, 2, hipReadModeElementType> tex;
bool testResult = true;
__global__ void tex2DKernel(float* outputData,
#ifdef __HIP_PLATFORM_HCC__
hipTextureObject_t textureObject,
#endif
int width,
int height)
{
@@ -78,7 +80,7 @@ void runTest(int argc, char **argv)
#ifdef __HIP_PLATFORM_HCC__
hipLaunchKernelGGL(tex2DKernel, dim3(dimGrid), dim3(dimBlock), 0, 0, dData, tex.textureObject, width, height);
#else
hipLaunchKernelGGL(tex2DKernel, dim3(dimGrid), dim3(dimBlock), 0, 0, dData, 0, width, height);
hipLaunchKernelGGL(tex2DKernel, dim3(dimGrid), dim3(dimBlock), 0, 0, dData, width, height);
#endif
hipDeviceSynchronize();