// // Copyright (c) 2017 The Khronos Group Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #include "../testBase.h" #define MAX_ERR 0.005f #define MAX_HALF_LINEAR_ERR 0.3f extern bool gDebugTrace, gDisableOffsets, gTestSmallImages, gTestMaxImages, gTestRounding, gEnablePitch; extern cl_filter_mode gFilterModeToUse; extern cl_addressing_mode gAddressModeToUse; extern uint64_t gRoundingStartValue; extern cl_command_queue queue; extern cl_context context; extern int test_copy_image_generic( cl_device_id device, image_descriptor *srcImageInfo, image_descriptor *dstImageInfo, const size_t sourcePos[], const size_t destPos[], const size_t regionSize[], MTdata d ); static size_t random_in_ranges( size_t minimum, size_t rangeA, size_t rangeB, MTdata d ) { if( rangeB < rangeA ) rangeA = rangeB; if( rangeA < minimum ) return rangeA; return (size_t)random_in_range( (int)minimum, (int)rangeA - 1, d ); } static void set_image_dimensions( image_descriptor *imageInfo, size_t width, size_t height, size_t depth, size_t rowPadding, size_t slicePadding ) { size_t pixelSize = get_pixel_size( imageInfo->format ); imageInfo->width = width; imageInfo->height = height; imageInfo->depth = depth; imageInfo->rowPitch = imageInfo->width * pixelSize + rowPadding; if (gEnablePitch) { do { rowPadding++; imageInfo->rowPitch = imageInfo->width * pixelSize + rowPadding; } while ((imageInfo->rowPitch % pixelSize) != 0); } imageInfo->slicePitch = imageInfo->rowPitch * (imageInfo->height + slicePadding); if (depth == 0) imageInfo->type = CL_MEM_OBJECT_IMAGE2D; else imageInfo->type = CL_MEM_OBJECT_IMAGE3D; } int test_copy_image_size_2D_3D( cl_device_id device, image_descriptor *srcImageInfo, image_descriptor *dstImageInfo, MTdata d ) { size_t sourcePos[ 3 ], destPos[ 3 ], regionSize[ 3 ]; int ret = 0, retCode; image_descriptor *threeImage, *twoImage; if( srcImageInfo->depth > 0 ) { threeImage = srcImageInfo; twoImage = dstImageInfo; } else { threeImage = dstImageInfo; twoImage = srcImageInfo; } // First, try just a full covering region sourcePos[ 0 ] = sourcePos[ 1 ] = sourcePos[ 2 ] = 0; destPos[ 0 ] = destPos[ 1 ] = destPos[ 2 ] = 0; regionSize[ 0 ] = ( threeImage->width < twoImage->width ) ? threeImage->width : twoImage->width; regionSize[ 1 ] = ( threeImage->height < twoImage->height ) ? threeImage->height : twoImage->height; regionSize[ 2 ] = 1; if( srcImageInfo->depth == 0 ) // 2D to 3D destPos[ 2 ] = (size_t)random_in_range( 0, (int)dstImageInfo->depth - 1, d ); else // 3D to 2D sourcePos[ 2 ] = (size_t)random_in_range( 0, (int)srcImageInfo->depth - 1, d ); retCode = test_copy_image_generic( device, srcImageInfo, dstImageInfo, sourcePos, destPos, regionSize, d ); if( retCode < 0 ) return retCode; else ret += retCode; // Now try a sampling of different random regions for( int i = 0; i < 8; i++ ) { // Pick a random size regionSize[ 0 ] = random_in_ranges( 8, srcImageInfo->width, dstImageInfo->width, d ); regionSize[ 1 ] = random_in_ranges( 8, srcImageInfo->height, dstImageInfo->height, d ); // Now pick positions within valid ranges sourcePos[ 0 ] = ( srcImageInfo->width > regionSize[ 0 ] ) ? (size_t)random_in_range( 0, (int)( srcImageInfo->width - regionSize[ 0 ] - 1 ), d ) : 0; sourcePos[ 1 ] = ( srcImageInfo->height > regionSize[ 1 ] ) ? (size_t)random_in_range( 0, (int)( srcImageInfo->height - regionSize[ 1 ] - 1 ), d ) : 0; sourcePos[ 2 ] = ( srcImageInfo->depth > 0 ) ? (size_t)random_in_range( 0, (int)( srcImageInfo->depth - 1 ), d ) : 0; destPos[ 0 ] = ( dstImageInfo->width > regionSize[ 0 ] ) ? (size_t)random_in_range( 0, (int)( dstImageInfo->width - regionSize[ 0 ] - 1 ), d ) : 0; destPos[ 1 ] = ( dstImageInfo->height > regionSize[ 1 ] ) ? (size_t)random_in_range( 0, (int)( dstImageInfo->height - regionSize[ 1 ] - 1 ), d ) : 0; destPos[ 2 ] = ( dstImageInfo->depth > 0 ) ? (size_t)random_in_range( 0, (int)( dstImageInfo->depth - 1 ), d ) : 0; // Go for it! retCode = test_copy_image_generic( device, srcImageInfo, dstImageInfo, sourcePos, destPos, regionSize, d ); if( retCode < 0 ) return retCode; else ret += retCode; } return ret; } int test_copy_image_set_2D_3D( cl_device_id device, cl_image_format *format, bool reverse = false ) { size_t maxWidth, maxHeight, max3DWidth, max3DHeight, max3DDepth; cl_ulong maxAllocSize, memSize; image_descriptor srcImageInfo = { 0 }; image_descriptor dstImageInfo = { 0 }; RandomSeed seed( gRandomSeed ); srcImageInfo.format = dstImageInfo.format = format; int error = clGetDeviceInfo( device, CL_DEVICE_IMAGE2D_MAX_WIDTH, sizeof( maxWidth ), &maxWidth, NULL ); error |= clGetDeviceInfo( device, CL_DEVICE_IMAGE2D_MAX_HEIGHT, sizeof( maxHeight ), &maxHeight, NULL ); error |= clGetDeviceInfo( device, CL_DEVICE_IMAGE3D_MAX_WIDTH, sizeof( max3DWidth ), &max3DWidth, NULL ); error |= clGetDeviceInfo( device, CL_DEVICE_IMAGE3D_MAX_HEIGHT, sizeof( max3DHeight ), &max3DHeight, NULL ); error |= clGetDeviceInfo( device, CL_DEVICE_IMAGE3D_MAX_DEPTH, sizeof( max3DDepth ), &max3DDepth, NULL ); error |= clGetDeviceInfo( device, CL_DEVICE_MAX_MEM_ALLOC_SIZE, sizeof( maxAllocSize ), &maxAllocSize, NULL ); error |= clGetDeviceInfo( device, CL_DEVICE_GLOBAL_MEM_SIZE, sizeof( memSize ), &memSize, NULL ); test_error( error, "Unable to get max image 2D or 3D size from device" ); if (memSize > (cl_ulong)SIZE_MAX) { memSize = (cl_ulong)SIZE_MAX; } if( gTestSmallImages ) { for( dstImageInfo.width = 4; dstImageInfo.width < 17; dstImageInfo.width++ ) { for( dstImageInfo.height = 4; dstImageInfo.height < 13; dstImageInfo.height++ ) { for( dstImageInfo.depth = 4; dstImageInfo.depth < 9; dstImageInfo.depth++ ) { size_t rowPadding = gEnablePitch ? 256 : 0; size_t slicePadding = gEnablePitch ? 3 : 0; set_image_dimensions( &dstImageInfo, dstImageInfo.width, dstImageInfo.height, dstImageInfo.depth, rowPadding, slicePadding ); set_image_dimensions( &srcImageInfo, dstImageInfo.width, dstImageInfo.height, 0, rowPadding, slicePadding ); if( gDebugTrace ) log_info( " at size %d,%d to %d,%d,%d\n", (int)srcImageInfo.width, (int)srcImageInfo.height, (int)dstImageInfo.width, (int)dstImageInfo.height, (int)dstImageInfo.depth ); int ret; if( reverse ) ret = test_copy_image_size_2D_3D( device, &dstImageInfo, &srcImageInfo, seed ); else ret = test_copy_image_size_2D_3D( device, &srcImageInfo, &dstImageInfo, seed ); if( ret ) return -1; } } } } else if( gTestMaxImages ) { // Try a specific set of maximum sizes size_t numberOfSizes3D, numberOfSizes2D; size_t sizes3D[100][3], sizes2D[100][3]; // Try to allocate a bit smaller images because we need the 2D ones as well for the copy. get_max_sizes(&numberOfSizes3D, 100, sizes3D, max3DWidth, max3DHeight, max3DDepth, 1, maxAllocSize/2, memSize/2, CL_MEM_OBJECT_IMAGE3D, dstImageInfo.format); get_max_sizes(&numberOfSizes2D, 100, sizes2D, maxWidth, maxHeight, 1, 1, maxAllocSize/2, memSize/2, CL_MEM_OBJECT_IMAGE2D, srcImageInfo.format); for( size_t i = 0; i < numberOfSizes2D; i++ ) for( size_t j = 0; j < numberOfSizes3D; j++ ) { size_t rowPadding = gEnablePitch ? 256 : 0; size_t slicePadding = gEnablePitch ? 3 : 0; set_image_dimensions( &dstImageInfo, sizes3D[ j ][ 0 ], sizes3D[ j ][ 1 ], sizes3D[ j ][ 2 ], rowPadding, slicePadding ); set_image_dimensions( &srcImageInfo, sizes2D[ i ][ 0 ], sizes2D[ i ][ 1 ], 0, rowPadding, slicePadding ); cl_ulong dstSize = (cl_ulong)dstImageInfo.slicePitch * (cl_ulong)dstImageInfo.depth * 4; cl_ulong srcSize = (cl_ulong)srcImageInfo.rowPitch * (cl_ulong)srcImageInfo.height * 4; if( dstSize < maxAllocSize && dstSize < ( memSize / 3 ) && srcSize < maxAllocSize && srcSize < ( memSize / 3 ) ) { log_info( "Testing %d x %d to %d x %d x %d\n", (int)srcImageInfo.width, (int)srcImageInfo.height, (int)dstImageInfo.width, (int)dstImageInfo.height, (int)dstImageInfo.depth ); if( gDebugTrace ) log_info( " at max size %d,%d to %d,%d,%d\n", (int)srcImageInfo.width, (int)srcImageInfo.height, (int)dstImageInfo.width, (int)dstImageInfo.height, (int)dstImageInfo.depth ); int ret; if( reverse ) ret = test_copy_image_size_2D_3D( device, &dstImageInfo, &srcImageInfo, seed ); else ret = test_copy_image_size_2D_3D( device, &srcImageInfo, &dstImageInfo, seed ); if( ret ) return -1; } else { log_info("Not testing max size %d x %d to %d x %d x %d due to memory constraints.\n", (int)srcImageInfo.width, (int)srcImageInfo.height, (int)dstImageInfo.width, (int)dstImageInfo.height, (int)dstImageInfo.depth); } } } else { for( int i = 0; i < NUM_IMAGE_ITERATIONS; i++ ) { cl_ulong srcSize, dstSize; size_t rowPadding = gEnablePitch ? 256 : 0; size_t slicePadding = gEnablePitch ? 3 : 0; // Loop until we get a size that a) will fit in the max alloc size and b) that an allocation of that // image, the result array, plus offset arrays, will fit in the global ram space do { dstImageInfo.width = (size_t)random_log_in_range( 16, (int)max3DWidth / 32, seed ); dstImageInfo.height = (size_t)random_log_in_range( 16, (int)max3DHeight / 32, seed ); dstImageInfo.depth = (size_t)random_log_in_range( 16, (int)max3DDepth / 32, seed ); srcImageInfo.width = (size_t)random_log_in_range( 16, (int)maxWidth / 32, seed ); srcImageInfo.height = (size_t)random_log_in_range( 16, (int)maxHeight / 32, seed ); set_image_dimensions( &srcImageInfo, srcImageInfo.width, srcImageInfo.height, 0, rowPadding, slicePadding ); set_image_dimensions( &dstImageInfo, dstImageInfo.width, dstImageInfo.height, dstImageInfo.depth, rowPadding, slicePadding ); srcSize = (cl_ulong)srcImageInfo.rowPitch * (cl_ulong)srcImageInfo.height * 4; dstSize = (cl_ulong)dstImageInfo.slicePitch * (cl_ulong)dstImageInfo.depth * 4; } while( srcSize > maxAllocSize || ( srcSize * 3 ) > memSize || dstSize > maxAllocSize || ( dstSize * 3 ) > memSize); if( gDebugTrace ) log_info( " at size %d,%d to %d,%d,%d\n", (int)srcImageInfo.width, (int)srcImageInfo.height, (int)dstImageInfo.width, (int)dstImageInfo.height, (int)dstImageInfo.depth ); int ret; if( reverse ) ret = test_copy_image_size_2D_3D( device, &dstImageInfo, &srcImageInfo, seed ); else ret = test_copy_image_size_2D_3D( device, &srcImageInfo, &dstImageInfo, seed ); if( ret ) return -1; } } return 0; }