/* 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. */ #ifdef BATCHNORM_OP #include "operators/kernel/batchnorm_kernel.h" namespace paddle_mobile { namespace operators { template <> bool BatchNormKernel::Init(BatchNormParam *param) { this->cl_helper_.AddKernel("batchnorm", "batchnorm_kernel.cl"); const framework::CLImage *mean = param->InputMean(); const framework::CLImage *variance = param->InputVariance(); const framework::CLImage *scale = param->InputScale(); const framework::CLImage *bias = param->InputBias(); const float epsilon = param->Epsilon(); auto mean_ptr = mean->data(); auto variance_ptr = variance->data(); auto scale_ptr = scale->data(); auto bias_ptr = bias->data(); const int C = mean->numel(); float inv_std_ptr[C]; for (int i = 0; i < C; i++) { inv_std_ptr[i] = 1 / static_cast(pow((variance_ptr[i] + epsilon), 0.5)); } float *new_scale_ptr = new float[C]; float *new_bias_ptr = new float[C]; for (int i = 0; i < C; i++) { new_scale_ptr[i] = inv_std_ptr[i] * scale_ptr[i]; new_bias_ptr[i] = bias_ptr[i] - mean_ptr[i] * inv_std_ptr[i] * scale_ptr[i]; } delete[](new_scale_ptr); delete[](new_bias_ptr); framework::CLImage *new_scale = new framework::CLImage(); framework::CLImage *new_bias = new framework::CLImage(); param->SetNewScale(new_scale); param->SetNewBias(new_bias); return true; } template <> void BatchNormKernel::Compute( const BatchNormParam ¶m) { auto kernel = this->cl_helper_.KernelAt(0); auto default_work_size = this->cl_helper_.DefaultWorkSize(*param.OutputY()); auto input = param.InputX()->GetCLImage(); auto out = param.OutputY()->GetCLImage(); auto new_scale = param.NewScale()->GetCLImage(); auto new_bias = param.NewBias()->GetCLImage(); const int out_height = param.OutputY()->HeightOfOneBlock(); const int out_width = param.OutputY()->WidthOfOneBlock(); clSetKernelArg(kernel, 0, sizeof(int), &out_height); clSetKernelArg(kernel, 1, sizeof(int), &out_width); clSetKernelArg(kernel, 2, sizeof(cl_mem), &input); clSetKernelArg(kernel, 3, sizeof(cl_mem), &new_scale); clSetKernelArg(kernel, 4, sizeof(cl_mem), &new_bias); clSetKernelArg(kernel, 5, sizeof(cl_mem), &out); clEnqueueNDRangeKernel(this->cl_helper_.CLCommandQueue(), kernel, 3, NULL, default_work_size.data(), NULL, 0, NULL, NULL); } template class BatchNormKernel; } // namespace operators } // namespace paddle_mobile #endif