/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import Foundation struct FlattenMetalParam { var idim: (Int32, Int32, Int32, Int32) var itrans: (Int32, Int32, Int32, Int32) var odim: (Int32, Int32, Int32, Int32) var otrans: (Int32, Int32, Int32, Int32) } class FlattenKernel: Kernel, Computable{ var metalParam: FlattenMetalParam required init(device: MTLDevice, param: FlattenParam

) { param.output.initTexture(device: device, computePrecision: computePrecision) var id: [Int32] = [1, 1, 1, 1] for i in 0..) throws { guard let encoder = commandBuffer.makeComputeCommandEncoder() else { throw PaddleMobileError.predictError(message: " encoder is nil") } encoder.setTexture(param.input.metalTexture, index: 0) encoder.setTexture(param.output.metalTexture, index: 1) encoder.setBytes(&metalParam, length: MemoryLayout.size, index: 0) encoder.dispatch(computePipline: pipline, outTexture: param.output.metalTexture) encoder.endEncoding() } }