]> granicus.if.org Git - imagemagick/commitdiff
No longer disallowing execution with NVIDIA cards in AccelerateConvolveImage.
authorDirk Lemstra <dirk@git.imagemagick.org>
Mon, 2 Jan 2017 20:37:10 +0000 (21:37 +0100)
committerDirk Lemstra <dirk@git.imagemagick.org>
Mon, 2 Jan 2017 20:37:27 +0000 (21:37 +0100)
MagickCore/accelerate.c

index 08c6b095721ccaa8c51e6b9faac82d36d018c589..de899c10fa15043aeca5678188c92fe6dd7faa55 100644 (file)
@@ -1587,10 +1587,6 @@ static Image *ComputeConvolveImage(const Image* image,MagickCLEnv clEnv,
 
   device = RequestOpenCLDevice(clEnv);
 
-  /* Work around an issue on NVIDIA devices */
-  if (strcmp("NVIDIA Corporation",device->vendor_name) == 0)
-    goto cleanup;
-
   image_view=AcquireAuthenticCacheView(image,exception);
   inputPixels=GetCacheViewAuthenticPixels(image_view,0,0,image->columns,image->rows,exception);
   if (inputPixels == (const void *) NULL)