plugin-nvptx.c (nvptx_exec): Remove check on compute dimensions.
authorNathan Sidwell <nathan@codesourcery.com>
Wed, 28 Oct 2015 03:00:10 +0000 (03:00 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Wed, 28 Oct 2015 03:00:10 +0000 (03:00 +0000)
* plugin/plugin-nvptx.c (nvptx_exec): Remove check on compute
dimensions.

From-SVN: r229471

libgomp/ChangeLog
libgomp/plugin/plugin-nvptx.c

index 019450399fc889aa9c83c0db7bb4ccfc4bb75b35..0f6fd91de1f7a356b9ce6190f00533fa1cd059ce 100644 (file)
@@ -1,3 +1,8 @@
+2015-10-27  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * plugin/plugin-nvptx.c (nvptx_exec): Remove check on compute
+       dimensions.
+
 2015-10-27  Thomas Schwinge  <thomas@codesourcery.com>
 
        PR testsuite/68063
index 9b846378a11d0a5aeb44f4a3139e23fa3da3955d..5c9334900c203e342a8b101c91f3d4d5e65b4e23 100644 (file)
@@ -902,13 +902,6 @@ nvptx_exec (void (*fn), size_t mapnum, void **hostaddrs, void **devaddrs,
     if (targ_fn->launch->dim[i])
       dims[i] = targ_fn->launch->dim[i];
 
-  if (dims[GOMP_DIM_GANG] != 1)
-    GOMP_PLUGIN_fatal ("non-unity num_gangs (%d) not supported",
-                      dims[GOMP_DIM_GANG]);
-  if (dims[GOMP_DIM_WORKER] != 1)
-    GOMP_PLUGIN_fatal ("non-unity num_workers (%d) not supported",
-                      dims[GOMP_DIM_WORKER]);
-
   /* This reserves a chunk of a pre-allocated page of memory mapped on both
      the host and the device. HP is a host pointer to the new chunk, and DP is
      the corresponding device pointer.  */