Compute Library
 23.05
NEInstanceNormalizationLayer.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019-2021 Arm Limited.
3  *
4  * SPDX-License-Identifier: MIT
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to
8  * deal in the Software without restriction, including without limitation the
9  * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10  * sell copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in all
14  * copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22  * SOFTWARE.
23  */
25 
29 #include "src/common/utils/Log.h"
31 
32 namespace arm_compute
33 {
35 
36 NEInstanceNormalizationLayer::NEInstanceNormalizationLayer(std::shared_ptr<IMemoryManager> memory_manager)
37  : _memory_group(std::move(memory_manager)), _normalization_kernel(), _is_nchw(false), _permute_input(), _permute_output(), _permuted_input(), _permuted_output()
38 {
39 }
40 
41 void NEInstanceNormalizationLayer::configure(ITensor *input, ITensor *output, float gamma, float beta, float epsilon)
42 {
43  ARM_COMPUTE_LOG_PARAMS(input, output, gamma, beta, epsilon);
44 
45  const DataLayout data_layout = input->info()->data_layout();
46  const auto kernel_descriptor = InstanceNormalizationLayerKernelInfo{ gamma, beta, epsilon, true };
47 
48  // Configure Kernels
49  _is_nchw = data_layout == DataLayout::NCHW;
50 
51  _normalization_kernel = std::make_unique<NEInstanceNormalizationLayerKernel>();
52 
53  if(!_is_nchw)
54  {
55  _memory_group.manage(&_permuted_input);
56  _memory_group.manage(&_permuted_output);
57 
58  // Configure the function to transform the input tensor from NHWC -> NCHW
59  _permute_input.configure(input, &_permuted_input, PermutationVector(1U, 2U, 0U));
60  _permuted_input.info()->set_data_layout(DataLayout::NCHW);
61 
62  _normalization_kernel->configure(&_permuted_input, &_permuted_output, kernel_descriptor);
63  _permuted_output.info()->set_data_layout(DataLayout::NCHW);
64 
65  _permute_output.configure(&_permuted_output, output != nullptr ? output : input, PermutationVector(2U, 0U, 1U));
66  _permuted_input.allocator()->allocate();
67  _permuted_output.allocator()->allocate();
68  }
69  else
70  {
71  _normalization_kernel->configure(input, output, kernel_descriptor);
72  }
73 }
74 
75 Status NEInstanceNormalizationLayer::validate(const ITensorInfo *input, const ITensorInfo *output, float gamma, float beta, float epsilon)
76 {
77  return NEInstanceNormalizationLayerKernel::validate(&input->clone()->set_data_layout(DataLayout::NCHW),
78  &output->clone()->set_data_layout(DataLayout::NCHW),
79  InstanceNormalizationLayerKernelInfo{ gamma, beta, epsilon, true });
80 }
81 
83 {
84  MemoryGroupResourceScope scope_mg(_memory_group);
85 
86  // Permute input
87  if(!_is_nchw)
88  {
89  _permute_input.run();
90  }
91 
92  NEScheduler::get().schedule(_normalization_kernel.get(), Window::DimZ);
93 
94  // Permute output
95  if(!_is_nchw)
96  {
97  _permute_output.run();
98  }
99 }
100 } // namespace arm_compute
static Status validate(const ITensorInfo *input, const ITensorInfo *output, const InstanceNormalizationLayerKernelInfo &info)
Static function to check if given info will lead to a valid configuration of NEInstanceNormalizationL...
void configure(ITensor *input, ITensor *output, float gamma=1.0f, float beta=0.0f, float epsilon=1e-12f)
Set the input and output tensors.
Strides PermutationVector
Permutation vector.
Definition: Types.h:51
~NEInstanceNormalizationLayer()
Default destructor.
Store the tensor&#39;s metadata.
Definition: ITensorInfo.h:43
NEInstanceNormalizationLayer(std::shared_ptr< IMemoryManager > memory_manager=nullptr)
Constructor.
Status class.
Definition: Error.h:52
Interface for CPU tensor.
Definition: ITensor.h:36
void run() override
Run the kernels contained in the function.
Copyright (c) 2017-2023 Arm Limited.
TensorAllocator * allocator()
Return a pointer to the tensor&#39;s allocator.
Definition: Tensor.cpp:48
ITensorInfo * info() const override
Interface to be implemented by the child class to return the tensor&#39;s metadata.
Definition: Tensor.cpp:33
static Status validate(const ITensorInfo *input, const ITensorInfo *output, float gamma=1.0f, float beta=0.0f, float epsilon=1e-12f)
Static function to check if given info will lead to a valid configuration of NEInstanceNormalizationL...
void manage(IMemoryManageable *obj) override
Sets a object to be managed by the given memory group.
Definition: MemoryGroup.h:79
virtual ITensorInfo & set_data_layout(const DataLayout &data_layout)=0
Set the data layout of the tensor.
void allocate() override
Allocate size specified by TensorInfo of CPU memory.
virtual std::unique_ptr< T > clone() const =0
Provide a clone of the current object of class T.
virtual ITensorInfo * info() const =0
Interface to be implemented by the child class to return the tensor&#39;s metadata.
Num samples, channels, height, width.
void run() override
Run the kernels contained in the function.
Definition: NEPermute.cpp:63
Memory group resources scope handling class.
Definition: IMemoryGroup.h:82
virtual void schedule(ICPPKernel *kernel, const Hints &hints)=0
Runs the kernel in the same thread as the caller synchronously.
static constexpr size_t DimZ
Alias for dimension 2 also known as Z dimension.
Definition: Window.h:47
#define ARM_COMPUTE_LOG_PARAMS(...)
void configure(const ITensor *input, ITensor *output, const PermutationVector &perm)
Configure the permute function.
Definition: NEPermute.cpp:45
DataLayout
[DataLayout enum definition]
Definition: Types.h:113
virtual DataLayout data_layout() const =0
Get the data layout of the tensor.
static IScheduler & get()
Access the scheduler singleton.
Definition: Scheduler.cpp:94