/* 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 ReshapeMetalParam { var idim: (Int32, Int32, Int32, Int32) var itrans: (Int32, Int32, Int32, Int32) var odim: (Int32, Int32, Int32, Int32) var otrans: (Int32, Int32, Int32, Int32) } struct ReshapeTestParam: TestParam { let inputTexture: MTLTexture let outputTexture: MTLTexture let param: ReshapeMetalParam } class ReshapeKernel: Kernel, Computable{ var metalParam: ReshapeMetalParam required init(device: MTLDevice, param: ReshapeParam

, initContext: InitContext) { param.output.initTexture(device: device, computePrecision: GlobalConfig.shared.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() } // func test(commandBuffer: MTLCommandBuffer, testParam: ReshapeTestParam) { // guard let encoder = commandBuffer.makeComputeCommandEncoder() else { // fatalError() // } // encoder.setTexture(testParam.inputTexture, index: 0) // encoder.setTexture(testParam.outputTexture, index: 1) // var pm: ReshapeMetalParam = testParam.param // encoder.setBytes(&pm, length: MemoryLayout.size, index: 0) // encoder.dispatch(computePipline: pipline, outTexture: testParam.outputTexture) // encoder.endEncoding() // } }