/* * Copyright 1993-2015 NVIDIA Corporation. All rights reserved. * * Please refer to the NVIDIA end user license agreement (EULA) associated * with this source code for terms and conditions that govern your use of * this software. Any use, reproduction, disclosure, or distribution of * this software and related documentation outside the terms of the EULA * is strictly prohibited. * */ #ifdef _WIN32 # define WINDOWS_LEAN_AND_MEAN # define NOMINMAX # include #else # include #endif // Includes, system #include #include // Includes CUDA #include // Utilities and timing functions #include // includes cuda.h and cuda_runtime_api.h // CUDA helper functions #include // helper functions for CUDA error check const char *sampleName = "simpleAssert"; //////////////////////////////////////////////////////////////////////////////// // Auto-Verification Code bool testResult = true; //////////////////////////////////////////////////////////////////////////////// // Kernels //////////////////////////////////////////////////////////////////////////////// //! Tests assert function. //! Thread whose id > N will print assertion failed error message. //////////////////////////////////////////////////////////////////////////////// __global__ void testKernel(int N) { int gtid = blockIdx.x*blockDim.x + threadIdx.x ; assert(gtid < N) ; } //////////////////////////////////////////////////////////////////////////////// // Declaration, forward void runTest(int argc, char **argv); //////////////////////////////////////////////////////////////////////////////// // Program main //////////////////////////////////////////////////////////////////////////////// int main(int argc, char **argv) { printf("%s starting...\n", sampleName); runTest(argc, argv); printf("%s completed, returned %s\n", sampleName, testResult ? "OK" : "ERROR!"); exit(testResult ? EXIT_SUCCESS : EXIT_FAILURE); } void runTest(int argc, char **argv) { int Nblocks = 2; int Nthreads = 32; cudaError_t error ; #ifndef _WIN32 utsname OS_System_Type; uname(&OS_System_Type); printf("OS_System_Type.release = %s\n", OS_System_Type.release); if (!strcasecmp(OS_System_Type.sysname, "Darwin")) { printf("simpleAssert is not current supported on Mac OSX\n\n"); exit(EXIT_SUCCESS); } else { printf("OS Info: <%s>\n\n", OS_System_Type.version); } #endif // This will pick the best possible CUDA capable device findCudaDevice(argc, (const char **)argv); // Kernel configuration, where a one-dimensional // grid and one-dimensional blocks are configured. dim3 dimGrid(Nblocks); dim3 dimBlock(Nthreads); printf("Launch kernel to generate assertion failures\n"); testKernel<<>>(60); //Synchronize (flushes assert output). printf("\n-- Begin assert output\n\n"); error = cudaDeviceSynchronize(); printf("\n-- End assert output\n\n"); //Check for errors and failed asserts in asynchronous kernel launch. if (error == cudaErrorAssert) { printf("Device assert failed as expected, " "CUDA error message is: %s\n\n", cudaGetErrorString(error)); } testResult = error == cudaErrorAssert; }