|
- // Tencent is pleased to support the open source community by making ncnn available.
- //
- // Copyright (C) 2017 THL A29 Limited, a Tencent company. All rights reserved.
- //
- // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
- // in compliance with the License. You may obtain a copy of the License at
- //
- // https://opensource.org/licenses/BSD-3-Clause
- //
- // 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.
-
- #include "softmax.h"
- #include <float.h>
- #include <math.h>
- #include <algorithm>
-
- namespace ncnn {
-
- DEFINE_LAYER_CREATOR(Softmax)
-
- Softmax::Softmax()
- {
- one_blob_only = true;
- support_inplace = true;
- }
-
- int Softmax::load_param(const ParamDict& pd)
- {
- axis = pd.get(0, 0);
-
- return 0;
- }
-
- int Softmax::forward_inplace(Mat& bottom_top_blob, const Option& opt) const
- {
- // value = exp( value - global max value )
- // sum all value
- // value = value / sum
-
- int dims = bottom_top_blob.dims;
- size_t elemsize = bottom_top_blob.elemsize;
-
- if (dims == 1) // axis == 0
- {
- int w = bottom_top_blob.w;
-
- float* ptr = bottom_top_blob;
-
- float max = -FLT_MAX;
- for (int i=0; i<w; i++)
- {
- max = std::max(max, ptr[i]);
- }
-
- for (int i=0; i<w; i++)
- {
- ptr[i] = exp(ptr[i] - max);
- }
-
- float sum = 0.f;
- for (int i=0; i<w; i++)
- {
- sum += ptr[i];
- }
-
- for (int i=0; i<w; i++)
- {
- ptr[i] /= sum;
- }
-
- return 0;
- }
-
- if (dims == 2 && axis == 0)
- {
- int w = bottom_top_blob.w;
- int h = bottom_top_blob.h;
-
- Mat max;
- max.create(w, elemsize, opt.workspace_allocator);
- if (max.empty())
- return -100;
- max.fill(-FLT_MAX);
-
- for (int i=0; i<h; i++)
- {
- const float* ptr = bottom_top_blob.row(i);
- for (int j=0; j<w; j++)
- {
- max[j] = std::max(max[j], ptr[j]);
- }
- }
-
- for (int i=0; i<h; i++)
- {
- float* ptr = bottom_top_blob.row(i);
- for (int j=0; j<w; j++)
- {
- ptr[j] = exp(ptr[j] - max[j]);
- }
- }
-
- Mat sum;
- sum.create(w, elemsize, opt.workspace_allocator);
- if (sum.empty())
- return -100;
- sum.fill(0.f);
-
- for (int i=0; i<h; i++)
- {
- const float* ptr = bottom_top_blob.row(i);
- for (int j=0; j<w; j++)
- {
- sum[j] += ptr[j];
- }
- }
-
- for (int i=0; i<h; i++)
- {
- float* ptr = bottom_top_blob.row(i);
- for (int j=0; j<w; j++)
- {
- ptr[j] /= sum[j];
- }
- }
-
- return 0;
- }
-
- if (dims == 2 && axis == 1)
- {
- int w = bottom_top_blob.w;
- int h = bottom_top_blob.h;
-
- Mat max;
- max.create(h, elemsize, opt.workspace_allocator);
- if (max.empty())
- return -100;
-
- for (int i=0; i<h; i++)
- {
- const float* ptr = bottom_top_blob.row(i);
-
- float m = -FLT_MAX;
- for (int j=0; j<w; j++)
- {
- m = std::max(m, ptr[j]);
- }
-
- max[i] = m;
- }
-
- for (int i=0; i<h; i++)
- {
- float* ptr = bottom_top_blob.row(i);
-
- float m = max[i];
- for (int j=0; j<w; j++)
- {
- ptr[j] = exp(ptr[j] - m);
- }
- }
-
- Mat sum;
- sum.create(h, elemsize, opt.workspace_allocator);
- if (sum.empty())
- return -100;
-
- for (int i=0; i<h; i++)
- {
- const float* ptr = bottom_top_blob.row(i);
-
- float s = 0.f;
- for (int j=0; j<w; j++)
- {
- s += ptr[j];
- }
-
- sum[i] = s;
- }
-
- for (int i=0; i<h; i++)
- {
- float* ptr = bottom_top_blob.row(i);
-
- float s = sum[i];
- for (int j=0; j<w; j++)
- {
- ptr[j] /= s;
- }
- }
-
- return 0;
- }
-
- if (dims == 3 && axis == 0)
- {
- int w = bottom_top_blob.w;
- int h = bottom_top_blob.h;
- int channels = bottom_top_blob.c;
- int size = w * h;
-
- Mat max;
- max.create(w, h, elemsize, opt.workspace_allocator);
- if (max.empty())
- return -100;
- max.fill(-FLT_MAX);
- for (int q=0; q<channels; q++)
- {
- const float* ptr = bottom_top_blob.channel(q);
-
- for (int i=0; i<size; i++)
- {
- max[i] = std::max(max[i], ptr[i]);
- }
- }
-
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q=0; q<channels; q++)
- {
- float* ptr = bottom_top_blob.channel(q);
-
- for (int i=0; i<size; i++)
- {
- ptr[i] = exp(ptr[i] - max[i]);
- }
- }
-
- Mat sum;
- sum.create(w, h, elemsize, opt.workspace_allocator);
- if (sum.empty())
- return -100;
- sum.fill(0.f);
- for (int q=0; q<channels; q++)
- {
- const float* ptr = bottom_top_blob.channel(q);
-
- for (int i=0; i<size; i++)
- {
- sum[i] += ptr[i];
- }
- }
-
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q=0; q<channels; q++)
- {
- float* ptr = bottom_top_blob.channel(q);
-
- for (int i=0; i<size; i++)
- {
- ptr[i] /= sum[i];
- }
- }
-
- return 0;
- }
-
- if (dims == 3 && axis == 1)
- {
- int w = bottom_top_blob.w;
- int h = bottom_top_blob.h;
- int channels = bottom_top_blob.c;
-
- Mat max;
- max.create(h, channels, elemsize, opt.workspace_allocator);
- if (max.empty())
- return -100;
- max.fill(-FLT_MAX);
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q=0; q<channels; q++)
- {
- const float* ptr = bottom_top_blob.channel(q);
- float* maxptr = max.row(q);
-
- for (int i=0; i<h; i++)
- {
- float max = -FLT_MAX;
- for (int j=0; j<w; j++)
- {
- max = std::max(max, ptr[j]);
- }
-
- maxptr[i] = max;
- ptr += w;
- }
- }
-
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q=0; q<channels; q++)
- {
- float* ptr = bottom_top_blob.channel(q);
- float* maxptr = max.row(q);
-
- for (int i=0; i<h; i++)
- {
- float max = maxptr[i];
- for (int j=0; j<w; j++)
- {
- ptr[j] = exp(ptr[j] - max);
- }
-
- ptr += w;
- }
- }
-
- Mat sum;
- sum.create(h, channels, elemsize, opt.workspace_allocator);
- if (sum.empty())
- return -100;
- sum.fill(0.f);
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q=0; q<channels; q++)
- {
- const float* ptr = bottom_top_blob.channel(q);
- float* sumptr = sum.row(q);
-
- for (int i=0; i<h; i++)
- {
- float sum = 0.f;
- for (int j=0; j<w; j++)
- {
- sum += ptr[j];
- }
-
- sumptr[i] = sum;
- ptr += w;
- }
- }
-
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q=0; q<channels; q++)
- {
- float* ptr = bottom_top_blob.channel(q);
- float* sumptr = sum.row(q);
-
- for (int i=0; i<h; i++)
- {
- float sum = sumptr[i];
- for (int j=0; j<w; j++)
- {
- ptr[j] /= sum;
- }
-
- ptr += w;
- }
- }
-
- return 0;
- }
-
- if (dims == 3 && axis == 2)
- {
- int w = bottom_top_blob.w;
- int h = bottom_top_blob.h;
- int channels = bottom_top_blob.c;
-
- Mat max;
- max.create(w, channels, elemsize, opt.workspace_allocator);
- if (max.empty())
- return -100;
- max.fill(-FLT_MAX);
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q=0; q<channels; q++)
- {
- const float* ptr = bottom_top_blob.channel(q);
- float* maxptr = max.row(q);
-
- for (int i=0; i<h; i++)
- {
- for (int j=0; j<w; j++)
- {
- maxptr[j] = std::max(maxptr[j], ptr[j]);
- }
-
- ptr += w;
- }
- }
-
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q=0; q<channels; q++)
- {
- float* ptr = bottom_top_blob.channel(q);
- float* maxptr = max.row(q);
-
- for (int i=0; i<h; i++)
- {
- for (int j=0; j<w; j++)
- {
- ptr[j] = exp(ptr[j] - maxptr[j]);
- }
-
- ptr += w;
- }
- }
-
- Mat sum;
- sum.create(w, channels, elemsize, opt.workspace_allocator);
- if (sum.empty())
- return -100;
- sum.fill(0.f);
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q=0; q<channels; q++)
- {
- const float* ptr = bottom_top_blob.channel(q);
- float* sumptr = sum.row(q);
-
- for (int i=0; i<h; i++)
- {
- for (int j=0; j<w; j++)
- {
- sumptr[j] += ptr[j];
- }
-
- ptr += w;
- }
- }
-
- #pragma omp parallel for num_threads(opt.num_threads)
- for (int q=0; q<channels; q++)
- {
- float* ptr = bottom_top_blob.channel(q);
- float* sumptr = sum.row(q);
-
- for (int i=0; i<h; i++)
- {
- for (int j=0; j<w; j++)
- {
- ptr[j] /= sumptr[j];
- }
-
- ptr += w;
- }
- }
-
- return 0;
- }
-
- return 0;
- }
-
- } // namespace ncnn
|