[neurun] Move Layout.h into ir directory (#9391)
authorSergei Barannikov/AI Tools Lab /SRR/Engineer/Samsung Electronics <s.barannikov@samsung.com>
Thu, 5 Dec 2019 11:32:06 +0000 (14:32 +0300)
committer이한종/On-Device Lab(SR)/Engineer/삼성전자 <hanjoung.lee@samsung.com>
Thu, 5 Dec 2019 11:32:06 +0000 (20:32 +0900)
commit165a89f24a3b97f52fb6afccedb90fe236228a57
tree8048ddc94f0762105dc5eae5942d07da0bde0dda
parent8f372cc269a7a8d30bf73342c8da1545dc3aee61
[neurun] Move Layout.h into ir directory (#9391)

* Move `Layout.h` in `ir` directory.
* Move `Layout` to `neurun::ir` namespace, fixing uses where possible.

Signed-off-by: Sergei Barannikov <s.barannikov@samsung.com>
87 files changed:
runtime/neurun/api/src/nnfw_api_internal.cc
runtime/neurun/backend/acl_cl/KernelGenerator.cc
runtime/neurun/backend/acl_cl/KernelGenerator.h
runtime/neurun/backend/acl_common/Convert.cc
runtime/neurun/backend/acl_common/Convert.h
runtime/neurun/backend/acl_common/IACLTensor.cc
runtime/neurun/backend/acl_common/IACLTensor.h
runtime/neurun/backend/acl_common/Swizzle.h
runtime/neurun/backend/acl_common/TemplTensorBuilder.h
runtime/neurun/backend/acl_neon/KernelGenerator.cc
runtime/neurun/backend/acl_neon/KernelGenerator.h
runtime/neurun/backend/cpu/KernelGenerator.cc
runtime/neurun/backend/cpu/KernelGenerator.h
runtime/neurun/backend/cpu/TensorBuilder.cc
runtime/neurun/backend/cpu/TensorBuilder.h
runtime/neurun/backend/cpu/kernel/OperationUtils.cc
runtime/neurun/backend/cpu/kernel/OperationUtils.h
runtime/neurun/backend/cpu/operand/Tensor.h
runtime/neurun/backend/srcn/ConstantInitializer.cc
runtime/neurun/backend/srcn/Convert.cc
runtime/neurun/backend/srcn/Convert.h
runtime/neurun/backend/srcn/KernelGenerator.cc
runtime/neurun/backend/srcn/KernelGenerator.h
runtime/neurun/backend/srcn/MemoryManager.cc
runtime/neurun/backend/srcn/MemoryManager.h
runtime/neurun/backend/srcn/Swizzle.h
runtime/neurun/backend/srcn/TensorBuilder.cc
runtime/neurun/backend/srcn/TensorBuilder.h
runtime/neurun/backend/srcn/TensorManager.cc
runtime/neurun/backend/srcn/TensorManager.h
runtime/neurun/backend/srcn/TensorRegister.cc
runtime/neurun/backend/srcn/kernel/AddLayer.cc
runtime/neurun/backend/srcn/kernel/AddLayer.h
runtime/neurun/backend/srcn/kernel/ConvolutionLayer.cc
runtime/neurun/backend/srcn/kernel/ConvolutionLayer.h
runtime/neurun/backend/srcn/kernel/DepthwiseConvolutionLayer.cc
runtime/neurun/backend/srcn/kernel/DepthwiseConvolutionLayer.h
runtime/neurun/backend/srcn/kernel/InstanceNormLayer.cc
runtime/neurun/backend/srcn/kernel/InstanceNormLayer.h
runtime/neurun/backend/srcn/kernel/OperationUtils.cc
runtime/neurun/backend/srcn/kernel/OperationUtils.h
runtime/neurun/backend/srcn/kernel/TransposeConvLayer.cc
runtime/neurun/backend/srcn/kernel/TransposeConvLayer.h
runtime/neurun/backend/srcn/operand/Tensor.h
runtime/neurun/core/include/backend/IConstantInitializer.h
runtime/neurun/core/include/backend/ITensorBuilder.h
runtime/neurun/core/include/backend/ITensorRegister.h
runtime/neurun/core/include/backend/operand/ITensor.h
runtime/neurun/core/include/exec/Execution.h
runtime/neurun/core/include/exec/IODescription.h
runtime/neurun/core/include/ir/Graph.h
runtime/neurun/core/include/ir/Layout.h [moved from runtime/neurun/core/include/model/Layout.h with 69% similarity]
runtime/neurun/core/include/ir/operand/PermuteFactor.h
runtime/neurun/core/include/ir/operation/LowerInfo.h
runtime/neurun/core/include/model/OperandInfo.h
runtime/neurun/core/include/model/Shape.h
runtime/neurun/core/include/model/Subgraph.h
runtime/neurun/core/include/util/ShapeInference.h
runtime/neurun/core/include/util/Utils.h
runtime/neurun/core/include/util/feature/nchw/Reader.h
runtime/neurun/core/include/util/feature/nchw/View.h
runtime/neurun/core/include/util/feature/nhwc/Reader.h
runtime/neurun/core/include/util/feature/nhwc/View.h
runtime/neurun/core/src/compiler/OperationValidator.cc
runtime/neurun/core/src/compiler/OperationValidator.h
runtime/neurun/core/src/exec/Execution.cc
runtime/neurun/core/src/exec/ExecutorBase.cc
runtime/neurun/core/src/exec/ExecutorBase.h
runtime/neurun/core/src/exec/Sink.h
runtime/neurun/core/src/exec/Source.h
runtime/neurun/core/src/exec/interp/Tensor.cc
runtime/neurun/core/src/exec/interp/Tensor.h
runtime/neurun/core/src/exec/interp/operations/AvgPool2D.cc
runtime/neurun/core/src/exec/interp/operations/Conv2D.cc
runtime/neurun/core/src/exec/interp/operations/DepthwiseConv.cc
runtime/neurun/core/src/exec/interp/operations/MaxPool2D.cc
runtime/neurun/core/src/ir/Graph.cc
runtime/neurun/core/src/ir/operation/LowerInfo.cc
runtime/neurun/core/src/ir/pass/PermutationEliminationPass.cc
runtime/neurun/core/src/ir/pass/PermutationInsertionPass.cc
runtime/neurun/core/src/ir/pass/PermutationOperationPass.cc
runtime/neurun/core/src/model/LayoutSet.h
runtime/neurun/core/src/util/ShapeInference.cc
runtime/neurun/core/src/util/Utils.cc
runtime/neurun/frontend/nnapi/wrapper/ANeuralNetworksExecution.cc
runtime/neurun/test/graph/operand/LayoutSet.cc
runtime/neurun/test/util/ShapeInference.cc