在将自定义Core Image滤镜内核迁移到Metal Shading Language时,在构建默认的Metal库(default.metallib)时遇到错误:
metallib: error: exactly one input file required
我的印象是这些文件可能位于单独的.metal文件中。尝试将它们合并到一个文件中会导致此错误:
Metal library creation failed: Error Domain=MTLLibraryErrorDomain Code=3 "Filters module must contain no vertex/fragment/kernel functions but contains 1 kernel function"
将名称空间分隔为
metal
和coreimage
可以防止计算内核在默认库中显示为可用功能。找到了这个SO答案,建议建立单独的库:
Metal: vertexFunction defined in .metal file becomes nil once setting Compiler and Linker Options for MSL cikernel
最佳答案
您目前无法使用默认的Metal构建管道将包含Core Image内核的多个.metal
文件编译到一个库中。设置.air
标志时,链接器不允许将多个.metallib
文件合并为一个-cikernel
。
您要么必须将所有内核放入一个.metal
文件,要么使用我在上面链接到的答案中发布的解决方案。
关于swift - 一个来自多个.metal文件的默认MTLLibrary(计算内核和CIKernel实现)?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58738946/