Post

Replies

Boosts

Views

Activity

MPSImageCanny fails assertion when run on an iPhone 7
I have the following code using MPSImage Canny that performs as expected on my iPhone 12 pro (running iOS 15): UIImage *image = [UIImage imageNamed:@"image.png" inBundle:[NSBundle bundleForClass:self.class] compatibleWithTraitCollection: nil]; id<MTLDevice> device = MTLCreateSystemDefaultDevice(); id<MTLCommandQueue> commandQueue = [device newCommandQueue]; id<MTLCommandBuffer> commandBuffer = [commandQueue commandBuffer]; MTKTextureLoader *textureLoader = [[MTKTextureLoader alloc] initWithDevice:device]; id<MTLTexture> imageTexture = [textureLoader newTextureWithCGImage:image.CGImage options:@{MTKTextureLoaderOptionTextureStorageMode: @0} error:nil]; MTLTextureDescriptor *textureDescriptor = [MTLTextureDescriptor texture2DDescriptorWithPixelFormat:MTLPixelFormatR32Float width:imageTexture.width height:imageTexture.height mipmapped:NO]; id<MTLTexture> edgesTexture = [device newTextureWithDescriptor:textureDescriptor]; float luminanceWeights[3] = {0.33, 0.34, 0.33}; MPSImageCanny *canny = [[MPSImageCanny alloc] initWithDevice:commandBuffer.device linearToGrayScaleTransform:luminanceWeights sigma:1.5]; canny.useFastMode = YES; canny.lowThreshold = 0.8; canny.highThreshold = 0.2; [canny encodeToCommandBuffer:commandBuffer sourceTexture:imageTexture destinationTexture:edgesTexture]; // Error thrown here [commandBuffer commit]; [commandBuffer waitUntilCompleted]; The problem is when I run the same block on an iPhone 7 (running iOS 14) it crashes at the call to encodeToCommandBuffer line with the following output "failed assertion 0 at line 1161 in dispatchTheadgroupDimensionMismatchedWithComputePipeline". Is this a bug in the Canny performance shaders or is it not possible to use this shader on a device that doesn't support non-uniform threadgroup sizes? Any help/pointers would be greatly appreciated 😊
1
0
919
Sep ’22
Rendering Core Image to MTLTexture causes huge memory use
I have a project where I capture live video from the camera then pass it through a chain of CIFilters and render the result into an MTLTexture. It is all working well except that each time a call to CIContext's render toMTLTexture function is called the memory usage increases by ~150Mb and never goes back down. This causes the app to be killed by the OS after about 15-20 images are processed due to memory issues. I have isolated the issue to the following process image function: // Initialise required filters CIFilter *grayScaleFilter = [CIFilter filterWithName:@"CIColorMatrix" keysAndValues: @"inputRVector", [CIVector vectorWithX:1 / 3.0 Y:1 / 3.0 Z:1 / 3.0 W:0], nil]; CIFilter *blurFilter = [CIFilter filterWithName:@"CIBoxBlur" keysAndValues:kCIInputRadiusKey, [NSNumber numberWithFloat:3.0], nil]; const CGFloat dxFilterValues[9] = { 1, 0, -1, 2, 0, -2, 1, 0, -1}; CIFilter *dxFilter = [CIFilter filterWithName:@"CIConvolution3X3" keysAndValues:kCIInputWeightsKey, [CIVector vectorWithValues:dxFilterValues count:9], nil]; const CGFloat dyFilterValues[9] = { 1, 2, 1, 0, 0, 0, -1, -2, -1}; CIFilter *dyFilter = [CIFilter filterWithName:@"CIConvolution3X3" keysAndValues:kCIInputWeightsKey, [CIVector vectorWithValues:dyFilterValues count:9], nil]; // Phase filter is my custom filter implemented with a Metal Kernel CIFilter *phaseFilter = [CIFilter filterWithName:@"PhaseFilter"]; // Apply filter chain to input image [grayScaleFilter setValue:image forKey:kCIInputImageKey]; [blurFilter setValue:grayScaleFilter.outputImage forKey:kCIInputImageKey]; [dxFilter setValue:blurFilter.outputImage forKey:kCIInputImageKey]; [dyFilter setValue:blurFilter.outputImage forKey:kCIInputImageKey]; [phaseFilter setValue:multiplierFilterDx.outputImage forKey:@"inputX"]; [phaseFilter setValue:multiplierFilterDy.outputImage forKey:@"inputY"]; // Initialize MTLTextures MTLTextureDescriptor* desc = [MTLTextureDescriptor texture2DDescriptorWithPixelFormat:MTLPixelFormatR8Unorm width:720 height:1280 mipmapped:NO]; desc.usage = MTLTextureUsageShaderWrite | MTLTextureUsageShaderRead; id<MTLTexture> phaseTexture = [CoreImageOperations::device newTextureWithDescriptor:descriptor]; // Render to MTLTexture CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); // Memory usage increases by ~150Mb after the following function call!!! [context render:phaseFilter.outputImage toMTLTexture:phaseTexture commandBuffer:commandBuffer bounds:phaseFilter.outputImage.extent colorSpace:colorSpace]; CFRelease(colorSpace); return phaseTexture; I profiled the memory usage using instruments and found that most of the memory was being used by IOSurface objects with CoreImage listed as the responsible library and CreateCachedSurface as the responsible caller. (See screenshot below) This is very strange because I set up my CIContext to not cache intermediates witht the following line: const CIContext *context = [CIContext contextWithMTLCommandQueue:commandQueue options:@{ kCIContextWorkingFormat: [NSNumber numberWithInt:kCIFormatRGBAf], kCIContextCacheIntermediates: @NO, kCIContextName: @"Image Processor" }]; Any thoughts or advice would be greatly appreciated!
3
0
1.2k
Jan ’22