我用卷积,池化和串联层构建了一个图。当我尝试初始化图形时:
if let graph = MPSNNGraph(device: commandQueue.device,
resultImage: conv23.resultImage) {
self.graph = graph
} else {
fatalError("Error: could not initialize graph")
}
在MPSNNGraph的if语句的第一部分,我得到以下错误(甚至没有到fatalError部分):
Thread 1: EXC_BAD_ACCESS (code=1, address=0x1089b8070)
这是怎么回事?