From b378e1c2ee7c57b56621d9ad47cbf31733671dce Mon Sep 17 00:00:00 2001 From: liuruilong Date: Mon, 3 Sep 2018 21:14:16 +0800 Subject: [PATCH] remoe log --- .../project.pbxproj | 24 +++++++++---------- .../paddle-mobile-demo/Net/Genet.swift | 2 +- .../paddle-mobile-demo/Net/MobileNetSSD.swift | 10 ++++---- .../paddle-mobile-demo/ViewController.swift | 9 +++---- .../xcschemes/paddle-mobile.xcscheme | 2 +- .../Operators/Base/Operator.swift | 2 +- .../Operators/Kernels/BatchNormKernel.swift | 1 - .../Operators/Kernels/ConvAddKernel.swift | 10 ++++---- .../Operators/Kernels/ConvBNReluKernel.swift | 15 ++++++------ 9 files changed, 37 insertions(+), 38 deletions(-) diff --git a/metal/paddle-mobile-demo/paddle-mobile-demo.xcodeproj/project.pbxproj b/metal/paddle-mobile-demo/paddle-mobile-demo.xcodeproj/project.pbxproj index 7584d49711..9f80a84acc 100644 --- a/metal/paddle-mobile-demo/paddle-mobile-demo.xcodeproj/project.pbxproj +++ b/metal/paddle-mobile-demo/paddle-mobile-demo.xcodeproj/project.pbxproj @@ -494,19 +494,19 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - CODE_SIGN_STYLE = Automatic; - DEVELOPMENT_TEAM = A798K58VVL; + CODE_SIGN_IDENTITY = "iPhone Distribution"; + CODE_SIGN_STYLE = Manual; + DEVELOPMENT_TEAM = 6T9LLJKSM4; INFOPLIST_FILE = "paddle-mobile-demo/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = "com.baidu.paddle-mobile"; + PRODUCT_BUNDLE_IDENTIFIER = com.baidu.mms.qa; PRODUCT_NAME = "$(TARGET_NAME)"; - PROVISIONING_PROFILE = ""; - PROVISIONING_PROFILE_SPECIFIER = ""; + PROVISIONING_PROFILE = "ba9c4b24-7bd0-49c5-93cd-e3051e775d6c"; + PROVISIONING_PROFILE_SPECIFIER = Distribution_MMS; SWIFT_OBJC_BRIDGING_HEADER = "paddle-mobile-demo/paddle-mobile-demo-Bridging-Header.h"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 4.0; @@ -520,19 +520,19 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - CODE_SIGN_STYLE = Automatic; - DEVELOPMENT_TEAM = A798K58VVL; + CODE_SIGN_IDENTITY = "iPhone Distribution"; + CODE_SIGN_STYLE = Manual; + DEVELOPMENT_TEAM = 6T9LLJKSM4; INFOPLIST_FILE = "paddle-mobile-demo/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = "com.baidu.paddle-mobile"; + PRODUCT_BUNDLE_IDENTIFIER = com.baidu.mms.qa; PRODUCT_NAME = "$(TARGET_NAME)"; - PROVISIONING_PROFILE = ""; - PROVISIONING_PROFILE_SPECIFIER = ""; + PROVISIONING_PROFILE = "ba9c4b24-7bd0-49c5-93cd-e3051e775d6c"; + PROVISIONING_PROFILE_SPECIFIER = Distribution_MMS; SWIFT_OBJC_BRIDGING_HEADER = "paddle-mobile-demo/paddle-mobile-demo-Bridging-Header.h"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; diff --git a/metal/paddle-mobile-demo/paddle-mobile-demo/Net/Genet.swift b/metal/paddle-mobile-demo/paddle-mobile-demo/Net/Genet.swift index daccf165b7..8b1d2c4ce4 100644 --- a/metal/paddle-mobile-demo/paddle-mobile-demo/Net/Genet.swift +++ b/metal/paddle-mobile-demo/paddle-mobile-demo/Net/Genet.swift @@ -31,7 +31,7 @@ class Genet: Net { } func resultStr(res: [Float]) -> String { - return " \(res) " + return " \(Array(res.suffix(10))) ... " } var preprocessKernel: CusomKernel diff --git a/metal/paddle-mobile-demo/paddle-mobile-demo/Net/MobileNetSSD.swift b/metal/paddle-mobile-demo/paddle-mobile-demo/Net/MobileNetSSD.swift index 0be1a9ee15..1349a93a47 100644 --- a/metal/paddle-mobile-demo/paddle-mobile-demo/Net/MobileNetSSD.swift +++ b/metal/paddle-mobile-demo/paddle-mobile-demo/Net/MobileNetSSD.swift @@ -48,12 +48,12 @@ class MobileNet_ssd_hand: Net{ } var scoreFormatArr: [Float32] = score.metalTexture.realNHWC(dim: (n: score.padToFourDim[0], h: score.padToFourDim[1], w: score.padToFourDim[2], c: score.padToFourDim[3])) - print("score: ") - print(scoreFormatArr.strideArray()) - +// print("score: ") +// print(scoreFormatArr.strideArray()) +// var bboxArr = bbox.metalTexture.float32Array() - print("bbox: ") - print(bboxArr.strideArray()) +// print("bbox: ") +// print(bboxArr.strideArray()) let nmsCompute = NMSCompute.init() nmsCompute.scoreThredshold = 0.01 diff --git a/metal/paddle-mobile-demo/paddle-mobile-demo/ViewController.swift b/metal/paddle-mobile-demo/paddle-mobile-demo/ViewController.swift index 40129d1b14..47708a70c9 100644 --- a/metal/paddle-mobile-demo/paddle-mobile-demo/ViewController.swift +++ b/metal/paddle-mobile-demo/paddle-mobile-demo/ViewController.swift @@ -19,17 +19,18 @@ import MetalPerformanceShaders let threadSupport = [1] -let modelHelperMap: [SupportModel : Net] = [ .mobilenet : MobileNet.init(), .mobilenet_ssd : MobileNet_ssd_hand.init(), .genet : Genet.init()] +//.mobilenet : MobileNet.init(), +let modelHelperMap: [SupportModel : Net] = [.mobilenet_ssd : MobileNet_ssd_hand.init(), .genet : Genet.init()] //, .genet : Genet.init() //let modelHelperMap: [SupportModel : Net] = [.mobilenet : MobileNet.init(), .mobilenet_ssd : MobileNet_ssd_hand.init()] enum SupportModel: String{ - case mobilenet = "mobilenet" +// case mobilenet = "mobilenet" case mobilenet_ssd = "mobilenetssd" case genet = "genet" static func supportedModels() -> [SupportModel] { - // - return [.mobilenet, .mobilenet_ssd ,.genet] + //.mobilenet, + return [.mobilenet_ssd ,.genet] } } diff --git a/metal/paddle-mobile/paddle-mobile.xcodeproj/xcuserdata/liuruilong.xcuserdatad/xcschemes/paddle-mobile.xcscheme b/metal/paddle-mobile/paddle-mobile.xcodeproj/xcuserdata/liuruilong.xcuserdatad/xcschemes/paddle-mobile.xcscheme index d36d4c485d..7c83f42cec 100644 --- a/metal/paddle-mobile/paddle-mobile.xcodeproj/xcuserdata/liuruilong.xcuserdatad/xcschemes/paddle-mobile.xcscheme +++ b/metal/paddle-mobile/paddle-mobile.xcodeproj/xcuserdata/liuruilong.xcuserdatad/xcschemes/paddle-mobile.xcscheme @@ -33,7 +33,7 @@ : OperatorProtocol where let scope: Scope var kernel: KerType required init(device: MTLDevice, opDesc: OpDesc, inScope: Scope) throws { - print("create op: \(opDesc.type)") +// print("create op: \(opDesc.type)") type = opDesc.type scope = inScope inputs = opDesc.inputs diff --git a/metal/paddle-mobile/paddle-mobile/Operators/Kernels/BatchNormKernel.swift b/metal/paddle-mobile/paddle-mobile/Operators/Kernels/BatchNormKernel.swift index bf0a2959fa..80145e677b 100644 --- a/metal/paddle-mobile/paddle-mobile/Operators/Kernels/BatchNormKernel.swift +++ b/metal/paddle-mobile/paddle-mobile/Operators/Kernels/BatchNormKernel.swift @@ -63,7 +63,6 @@ class BatchNormKernel: Kernel, Computable { guard let encoder = commandBuffer.makeComputeCommandEncoder() else { throw PaddleMobileError.predictError(message: " encoder is nil") } - print("BatchNorm compute") encoder.setTexture(param.input.metalTexture, index: 0) encoder.setTexture(param.output.metalTexture, index: 1) encoder.setBuffer(newScale, offset: 0, index: 0) diff --git a/metal/paddle-mobile/paddle-mobile/Operators/Kernels/ConvAddKernel.swift b/metal/paddle-mobile/paddle-mobile/Operators/Kernels/ConvAddKernel.swift index d2b54d9be6..d5aa98d260 100644 --- a/metal/paddle-mobile/paddle-mobile/Operators/Kernels/ConvAddKernel.swift +++ b/metal/paddle-mobile/paddle-mobile/Operators/Kernels/ConvAddKernel.swift @@ -59,14 +59,14 @@ class ConvAddKernel: Kernel, Computable { let offsetX = (Int(param.dilations[0]) * (param.filter.width - 1) + 1)/2 - Int(param.paddings[0]) - print(" function: \(functionName)") - print("offset x: \(offsetX)") - print("offset y: \(offsetY)") +// print(" function: \(functionName)") +// print("offset x: \(offsetX)") +// print("offset y: \(offsetY)") let offsetZ = 0.0 let inMetalParam = MetalConvParam.init(offsetX: Int16(offsetX), offsetY: Int16(offsetY), offsetZ: Int16(offsetZ), strideX: UInt16(param.stride[0]), strideY: UInt16(param.stride[1]), dilationX: UInt16(param.dilations[0]), dilationY: UInt16(param.dilations[1])) - print("metal param: ") - print(inMetalParam) +// print("metal param: ") +// print(inMetalParam) metalParam = inMetalParam } diff --git a/metal/paddle-mobile/paddle-mobile/Operators/Kernels/ConvBNReluKernel.swift b/metal/paddle-mobile/paddle-mobile/Operators/Kernels/ConvBNReluKernel.swift index bbf4eeaaf4..e79f8f9be3 100644 --- a/metal/paddle-mobile/paddle-mobile/Operators/Kernels/ConvBNReluKernel.swift +++ b/metal/paddle-mobile/paddle-mobile/Operators/Kernels/ConvBNReluKernel.swift @@ -88,17 +88,16 @@ class ConvBNReluKernel: Kernel, Computable, Testable { let offsetX = param.filter.width/2 - Int(param.paddings[0]) let offsetY = param.filter.height/2 - Int(param.paddings[1]) - print(" param filter width: \(param.filter.width)") - print(" param filter height: \(param.filter.height)") - - print(" param paddings: \(param.paddings)") - - print("ConvBNReluKernel offset x: \(offsetX)") - print("ConvBNReluKernel offset y: \(offsetY)") +// print(" param filter width: \(param.filter.width)") +// print(" param filter height: \(param.filter.height)") +// +// print(" param paddings: \(param.paddings)") +// +// print("ConvBNReluKernel offset x: \(offsetX)") +// print("ConvBNReluKernel offset y: \(offsetY)") let offsetZ = 0.0 - print(" fuck ") metalParam = MetalConvParam.init(offsetX: Int16(offsetX), offsetY: Int16(offsetY), offsetZ: Int16(offsetZ), strideX: UInt16(param.stride[0]), strideY: UInt16(param.stride[1]), dilationX: UInt16(param.dilations[0]), dilationY: UInt16(param.dilations[1])) var invs: [P] = [] -- GitLab