diff src/gpu/ptx/gpu_ptx.cpp @ 10588:b0b368d38b40

CR-1032 - change ExternalCompilationResult kernel -> entryPoint
author Morris Meyer <morris.meyer@oracle.com>
date Mon, 01 Jul 2013 15:46:27 -0400
parents 9c7d9e2c8326
children
line wrap: on
line diff
--- a/src/gpu/ptx/gpu_ptx.cpp	Mon Jul 01 11:47:01 2013 +0200
+++ b/src/gpu/ptx/gpu_ptx.cpp	Mon Jul 01 15:46:27 2013 -0400
@@ -164,7 +164,9 @@
                                       gridX, gridY, gridZ,
                                       blockX, blockY, blockZ,
                                       0, NULL, NULL, NULL);
-  tty->print_cr("gpu_ptx::_cuda_cu_launch_kernel(%x): %d", kernel, status);
+  if (TraceWarpLoading) {
+    tty->print_cr("gpu_ptx::_cuda_cu_launch_kernel(%x): %d", kernel, status);
+  }
   return status == 0;  // CUDA_SUCCESS
 }