From 069212957d9c0859b5644c2c73cdcef6bf514bcb Mon Sep 17 00:00:00 2001 From: Dirk Lemstra Date: Mon, 2 Jan 2017 21:37:10 +0100 Subject: [PATCH] No longer disallowing execution with NVIDIA cards in AccelerateConvolveImage. --- MagickCore/accelerate.c | 4 ---- 1 file changed, 4 deletions(-) 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) -- 2.40.0