From: Dirk Lemstra Date: Mon, 2 Jan 2017 20:37:10 +0000 (+0100) Subject: No longer disallowing execution with NVIDIA cards in AccelerateConvolveImage. X-Git-Tag: 7.0.4-2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=069212957d9c0859b5644c2c73cdcef6bf514bcb;p=imagemagick No longer disallowing execution with NVIDIA cards in AccelerateConvolveImage. --- diff --git a/MagickCore/accelerate.c b/MagickCore/accelerate.c index 08c6b0957..de899c10f 100644 --- a/MagickCore/accelerate.c +++ b/MagickCore/accelerate.c @@ -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)