diff --git a/mindspore/lite/src/runtime/kernel/arm/base/arg_min_max_base.cc b/mindspore/lite/src/runtime/kernel/arm/base/arg_min_max_base.cc index 3289c0642c..2e2164fb3a 100644 --- a/mindspore/lite/src/runtime/kernel/arm/base/arg_min_max_base.cc +++ b/mindspore/lite/src/runtime/kernel/arm/base/arg_min_max_base.cc @@ -15,7 +15,7 @@ */ #include "src/runtime/kernel/arm/base/arg_min_max_base.h" #include "nnacl/arg_min_max.h" -#include "src/runtime/kernel/arm/fp32/argminmax.h" +#include "src/runtime/kernel/arm/fp32/argminmax_fp32.h" #include "nnacl/arithmetic_common.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/base/batch_to_space_base.cc b/mindspore/lite/src/runtime/kernel/arm/base/batch_to_space_base.cc index 4eb6df20ef..7066af04d8 100644 --- a/mindspore/lite/src/runtime/kernel/arm/base/batch_to_space_base.cc +++ b/mindspore/lite/src/runtime/kernel/arm/base/batch_to_space_base.cc @@ -15,7 +15,7 @@ */ #include "src/runtime/kernel/arm/base/batch_to_space_base.h" #include "nnacl/batch_to_space.h" -#include "src/runtime/kernel/arm/fp32/batch_to_space.h" +#include "src/runtime/kernel/arm/fp32/batch_to_space_fp32.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/base/concat_base.cc b/mindspore/lite/src/runtime/kernel/arm/base/concat_base.cc index 4da39778d4..20a36b1f55 100644 --- a/mindspore/lite/src/runtime/kernel/arm/base/concat_base.cc +++ b/mindspore/lite/src/runtime/kernel/arm/base/concat_base.cc @@ -15,7 +15,7 @@ */ #include "src/runtime/kernel/arm/base/concat_base.h" #include -#include "src/runtime/kernel/arm/fp32/concat.h" +#include "src/runtime/kernel/arm/fp32/concat_fp32.h" #include "nnacl/fp32/concat.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/base/crop_base.cc b/mindspore/lite/src/runtime/kernel/arm/base/crop_base.cc index c22573feb1..539c48ec47 100644 --- a/mindspore/lite/src/runtime/kernel/arm/base/crop_base.cc +++ b/mindspore/lite/src/runtime/kernel/arm/base/crop_base.cc @@ -15,7 +15,7 @@ */ #include "src/runtime/kernel/arm/base/crop_base.h" #include -#include "src/runtime/kernel/arm/fp32/crop.h" +#include "src/runtime/kernel/arm/fp32/crop_fp32.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/base/depth_to_space_base.cc b/mindspore/lite/src/runtime/kernel/arm/base/depth_to_space_base.cc index e6501e0843..4ffb3a1915 100644 --- a/mindspore/lite/src/runtime/kernel/arm/base/depth_to_space_base.cc +++ b/mindspore/lite/src/runtime/kernel/arm/base/depth_to_space_base.cc @@ -15,7 +15,7 @@ */ #include "src/runtime/kernel/arm/base/depth_to_space_base.h" #include "nnacl/depth_to_space.h" -#include "src/runtime/kernel/arm/fp32/depth_to_space.h" +#include "src/runtime/kernel/arm/fp32/depth_to_space_fp32.h" #include "nnacl/arithmetic_common.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/base/fullconnection_base.cc b/mindspore/lite/src/runtime/kernel/arm/base/fullconnection_base.cc index 3a2704bd44..fe4c696187 100644 --- a/mindspore/lite/src/runtime/kernel/arm/base/fullconnection_base.cc +++ b/mindspore/lite/src/runtime/kernel/arm/base/fullconnection_base.cc @@ -14,7 +14,7 @@ * limitations under the License. */ #include "src/runtime/kernel/arm/base/fullconnection_base.h" -#include "src/runtime/kernel/arm/fp32/fullconnection.h" +#include "src/runtime/kernel/arm/fp32/fullconnection_fp32.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/base/matmul_base.cc b/mindspore/lite/src/runtime/kernel/arm/base/matmul_base.cc index 3b4bae5a0c..0ef4ca3414 100644 --- a/mindspore/lite/src/runtime/kernel/arm/base/matmul_base.cc +++ b/mindspore/lite/src/runtime/kernel/arm/base/matmul_base.cc @@ -14,7 +14,7 @@ * limitations under the License. */ #include "src/runtime/kernel/arm/base/matmul_base.h" -#include "src/runtime/kernel/arm/fp32/matmul.h" +#include "src/runtime/kernel/arm/fp32/matmul_fp32.h" #include "src/kernel_registry.h" #include "include/errorcode.h" #include "include/context.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/base/pad.cc b/mindspore/lite/src/runtime/kernel/arm/base/pad.cc index d0b57932dc..180d42ea4e 100644 --- a/mindspore/lite/src/runtime/kernel/arm/base/pad.cc +++ b/mindspore/lite/src/runtime/kernel/arm/base/pad.cc @@ -14,7 +14,7 @@ * limitations under the License. */ #include -#include "src/runtime/kernel/arm/fp32/pad.h" +#include "src/runtime/kernel/arm/fp32/pad_fp32.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/base/pooling_base.cc b/mindspore/lite/src/runtime/kernel/arm/base/pooling_base.cc index 7af0b332af..4be43df6fb 100644 --- a/mindspore/lite/src/runtime/kernel/arm/base/pooling_base.cc +++ b/mindspore/lite/src/runtime/kernel/arm/base/pooling_base.cc @@ -15,7 +15,7 @@ */ #include "src/runtime/kernel/arm/base/pooling_base.h" #include -#include "src/runtime/kernel/arm/fp32/pooling.h" +#include "src/runtime/kernel/arm/fp32/pooling_fp32.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/base/power_base.cc b/mindspore/lite/src/runtime/kernel/arm/base/power_base.cc index 2f90a9f3f9..8d0d7b1c53 100644 --- a/mindspore/lite/src/runtime/kernel/arm/base/power_base.cc +++ b/mindspore/lite/src/runtime/kernel/arm/base/power_base.cc @@ -15,7 +15,7 @@ */ #include "src/runtime/kernel/arm/base/power_base.h" #include -#include "src/runtime/kernel/arm/fp32/power.h" +#include "src/runtime/kernel/arm/fp32/power_fp32.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/base/reduce_base.cc b/mindspore/lite/src/runtime/kernel/arm/base/reduce_base.cc index 5fe16a4e7b..11917adeb3 100644 --- a/mindspore/lite/src/runtime/kernel/arm/base/reduce_base.cc +++ b/mindspore/lite/src/runtime/kernel/arm/base/reduce_base.cc @@ -19,7 +19,7 @@ #include "schema/model_generated.h" #include "include/errorcode.h" #include "src/runtime/runtime_api.h" -#include "src/runtime/kernel/arm/fp32/reduce.h" +#include "src/runtime/kernel/arm/fp32/reduce_fp32.h" using mindspore::kernel::KERNEL_ARCH::kCPU; using mindspore::lite::KernelRegistrar; diff --git a/mindspore/lite/src/runtime/kernel/arm/base/reshape_base.cc b/mindspore/lite/src/runtime/kernel/arm/base/reshape_base.cc index d4c6fe91a5..9d5bb4c23b 100644 --- a/mindspore/lite/src/runtime/kernel/arm/base/reshape_base.cc +++ b/mindspore/lite/src/runtime/kernel/arm/base/reshape_base.cc @@ -15,7 +15,7 @@ */ #include "src/runtime/kernel/arm/base/reshape_base.h" #include -#include "src/runtime/kernel/arm/fp32/reshape.h" +#include "src/runtime/kernel/arm/fp32/reshape_fp32.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/base/resize_base.cc b/mindspore/lite/src/runtime/kernel/arm/base/resize_base.cc index bcd45862c6..d6a966a804 100644 --- a/mindspore/lite/src/runtime/kernel/arm/base/resize_base.cc +++ b/mindspore/lite/src/runtime/kernel/arm/base/resize_base.cc @@ -19,7 +19,7 @@ #include "schema/model_generated.h" #include "src/kernel_registry.h" #include "include/errorcode.h" -#include "src/runtime/kernel/arm/fp32/resize.h" +#include "src/runtime/kernel/arm/fp32/resize_fp32.h" using mindspore::lite::KernelRegistrar; using mindspore::lite::RET_ERROR; using mindspore::lite::RET_INVALID_OP_ATTR; diff --git a/mindspore/lite/src/runtime/kernel/arm/base/softmax_base.cc b/mindspore/lite/src/runtime/kernel/arm/base/softmax_base.cc index 7346bfa8fb..0afe0206fb 100644 --- a/mindspore/lite/src/runtime/kernel/arm/base/softmax_base.cc +++ b/mindspore/lite/src/runtime/kernel/arm/base/softmax_base.cc @@ -16,7 +16,7 @@ #include "src/runtime/kernel/arm/base/softmax_base.h" #include -#include "src/runtime/kernel/arm/fp32/softmax.h" +#include "src/runtime/kernel/arm/fp32/softmax_fp32.h" #include "nnacl/fp32/softmax.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/base/split_base.cc b/mindspore/lite/src/runtime/kernel/arm/base/split_base.cc index 5b87461044..be47457ed3 100644 --- a/mindspore/lite/src/runtime/kernel/arm/base/split_base.cc +++ b/mindspore/lite/src/runtime/kernel/arm/base/split_base.cc @@ -15,7 +15,7 @@ */ #include "src/runtime/kernel/arm/base/split_base.h" #include -#include "src/runtime/kernel/arm/fp32/split.h" +#include "src/runtime/kernel/arm/fp32/split_fp32.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp16/arithmetic_self_fp16.h b/mindspore/lite/src/runtime/kernel/arm/fp16/arithmetic_self_fp16.h index a16b6287e1..660c7fcde1 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp16/arithmetic_self_fp16.h +++ b/mindspore/lite/src/runtime/kernel/arm/fp16/arithmetic_self_fp16.h @@ -17,7 +17,7 @@ #define MINDSPORE_LITE_SRC_RUNTIME_KERNEL_ARM_FP16_ARITHMETIC_SELF_FP16_H_ #include -#include "src/runtime/kernel/arm/fp32/arithmetic_self.h" +#include "src/runtime/kernel/arm/fp32/arithmetic_self_fp32.h" namespace mindspore::kernel { typedef int (*ArithmeticSelfFp16Func)(float16_t *input, float16_t *output, int element_size); diff --git a/mindspore/lite/src/runtime/kernel/arm/fp16/batchnorm_fp16.h b/mindspore/lite/src/runtime/kernel/arm/fp16/batchnorm_fp16.h index 14ea1a2c20..253e7a01c3 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp16/batchnorm_fp16.h +++ b/mindspore/lite/src/runtime/kernel/arm/fp16/batchnorm_fp16.h @@ -18,7 +18,7 @@ #define MINDSPORE_LITE_SRC_RUNTIME_KERNEL_ARM_FP16_BATCHNORM_FP16_H_ #include -#include "src/runtime/kernel/arm/fp32/batchnorm.h" +#include "src/runtime/kernel/arm/fp32/batchnorm_fp32.h" namespace mindspore::kernel { class BatchnormFp16CPUKernel : public BatchnormCPUKernel { diff --git a/mindspore/lite/src/runtime/kernel/arm/fp16/concat_fp16.cc b/mindspore/lite/src/runtime/kernel/arm/fp16/concat_fp16.cc index 42bffd5d2a..9f70a8cd03 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp16/concat_fp16.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp16/concat_fp16.cc @@ -15,7 +15,7 @@ */ #include "src/runtime/kernel/arm/fp16/concat_fp16.h" #include "src/runtime/kernel/arm/fp16/common_fp16.h" -#include "src/runtime/kernel/arm/fp32/concat.h" +#include "src/runtime/kernel/arm/fp32/concat_fp32.h" #include "nnacl/fp16/concat_fp16.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp16/fused_batchnorm_fp16.h b/mindspore/lite/src/runtime/kernel/arm/fp16/fused_batchnorm_fp16.h index 79b6a044b7..67f3410546 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp16/fused_batchnorm_fp16.h +++ b/mindspore/lite/src/runtime/kernel/arm/fp16/fused_batchnorm_fp16.h @@ -18,7 +18,7 @@ #define MINDSPORE_LITE_SRC_RUNTIME_KERNEL_ARM_FP16_FUSED_BATCHNORM_FP16_H_ #include -#include "src/runtime/kernel/arm/fp32/fused_batchnorm.h" +#include "src/runtime/kernel/arm/fp32/fused_batchnorm_fp32.h" namespace mindspore::kernel { class FusedBatchnormFp16CPUKernel : public FusedBatchnormCPUKernel { diff --git a/mindspore/lite/src/runtime/kernel/arm/fp16/pad_fp16.h b/mindspore/lite/src/runtime/kernel/arm/fp16/pad_fp16.h index fe3dd1021b..8a906644cc 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp16/pad_fp16.h +++ b/mindspore/lite/src/runtime/kernel/arm/fp16/pad_fp16.h @@ -17,7 +17,7 @@ #define MINDSPORE_LITE_SRC_RUNTIME_KERNEL_ARM_FP16_PAD_FP16_H_ #include -#include "src/runtime/kernel/arm/fp32/pad.h" +#include "src/runtime/kernel/arm/fp32/pad_fp32.h" #include "nnacl/fp16/pad_fp16.h" namespace mindspore::kernel { diff --git a/mindspore/lite/src/runtime/kernel/arm/fp16/reshape_fp16.h b/mindspore/lite/src/runtime/kernel/arm/fp16/reshape_fp16.h index badddff56e..b06f7ec4d4 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp16/reshape_fp16.h +++ b/mindspore/lite/src/runtime/kernel/arm/fp16/reshape_fp16.h @@ -21,7 +21,7 @@ #include "src/lite_kernel.h" #include "include/context.h" -#include "src/runtime/kernel/arm/fp32/reshape.h" +#include "src/runtime/kernel/arm/fp32/reshape_fp32.h" using mindspore::lite::InnerContext; diff --git a/mindspore/lite/src/runtime/kernel/arm/fp16/scale_fp16.h b/mindspore/lite/src/runtime/kernel/arm/fp16/scale_fp16.h index a8c4749702..26da3846d0 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp16/scale_fp16.h +++ b/mindspore/lite/src/runtime/kernel/arm/fp16/scale_fp16.h @@ -19,7 +19,7 @@ #include #include "src/lite_kernel.h" -#include "src/runtime/kernel/arm/fp32/scale.h" +#include "src/runtime/kernel/arm/fp32/scale_fp32.h" #include "nnacl/scale.h" namespace mindspore::kernel { diff --git a/mindspore/lite/src/runtime/kernel/arm/fp16/slice_fp16.h b/mindspore/lite/src/runtime/kernel/arm/fp16/slice_fp16.h index 48bed73e45..3c1b200416 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp16/slice_fp16.h +++ b/mindspore/lite/src/runtime/kernel/arm/fp16/slice_fp16.h @@ -17,7 +17,7 @@ #define MINDSPORE_LITE_SRC_RUNTIME_KERNEL_ARM_FP16_SLICE_FP16_H_ #include -#include "src/runtime/kernel/arm/fp32/slice.h" +#include "src/runtime/kernel/arm/fp32/slice_fp32.h" namespace mindspore::kernel { class SliceFp16CPUKernel : public SliceCPUKernel { diff --git a/mindspore/lite/src/runtime/kernel/arm/fp16/stack_fp16.h b/mindspore/lite/src/runtime/kernel/arm/fp16/stack_fp16.h index 98ca30fc5c..a6a19332f0 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp16/stack_fp16.h +++ b/mindspore/lite/src/runtime/kernel/arm/fp16/stack_fp16.h @@ -18,7 +18,7 @@ #include #include "src/lite_kernel.h" -#include "src/runtime/kernel/arm/fp32/stack.h" +#include "src/runtime/kernel/arm/fp32/stack_fp32.h" namespace mindspore::kernel { class StackFp16CPUKernel : public StackCPUKernel { diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/activation.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/activation_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/activation.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/activation_fp32.cc index 5abe9005b6..1f87b125bc 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/activation.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/activation_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/activation.h" +#include "src/runtime/kernel/arm/fp32/activation_fp32.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" #include "src/runtime/runtime_api.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/activation.h b/mindspore/lite/src/runtime/kernel/arm/fp32/activation_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/activation.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/activation_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/addn.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/addn_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/addn.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/addn_fp32.cc index 98543bcd93..f70797ae8f 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/addn.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/addn_fp32.cc @@ -13,9 +13,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/addn.h" +#include "src/runtime/kernel/arm/fp32/addn_fp32.h" #include "src/kernel_registry.h" -#include "src/runtime/kernel/arm/fp32/arithmetic.h" +#include "src/runtime/kernel/arm/fp32/arithmetic_fp32.h" #include "include/errorcode.h" #include "src/runtime/runtime_api.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/addn.h b/mindspore/lite/src/runtime/kernel/arm/fp32/addn_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/addn.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/addn_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/argminmax.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/argminmax_fp32.cc similarity index 96% rename from mindspore/lite/src/runtime/kernel/arm/fp32/argminmax.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/argminmax_fp32.cc index ded9a01656..7dd50c8ee4 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/argminmax.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/argminmax_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/argminmax.h" +#include "src/runtime/kernel/arm/fp32/argminmax_fp32.h" #include #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/argminmax.h b/mindspore/lite/src/runtime/kernel/arm/fp32/argminmax_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/argminmax.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/argminmax_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_compare.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_compare_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_compare.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_compare_fp32.cc index dea58b171e..3b6a68e5ac 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_compare.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_compare_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/arithmetic_compare.h" +#include "src/runtime/kernel/arm/fp32/arithmetic_compare_fp32.h" #include "src/kernel_registry.h" #include "nnacl/fp32/arithmetic_compare.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_compare.h b/mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_compare_fp32.h similarity index 97% rename from mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_compare.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_compare_fp32.h index 2d6c39dcf7..42bb61237e 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_compare.h +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_compare_fp32.h @@ -17,7 +17,7 @@ #define MINDSPORE_LITE_SRC_RUNTIME_KERNEL_ARM_FP32_ARITHMETIC_COMPARE_H_ #include -#include "src/runtime/kernel/arm/fp32/arithmetic.h" +#include "src/runtime/kernel/arm/fp32/arithmetic_fp32.h" namespace mindspore::kernel { typedef int (*ArithmeticCompareFp32Func)(const float *input0, const float *input1, uint8_t *output, int element_size); diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_fp32.cc index 412a40e6d6..4be999a401 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/arithmetic.h" +#include "src/runtime/kernel/arm/fp32/arithmetic_fp32.h" #include "include/errorcode.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic.h b/mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_self.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_self_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_self.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_self_fp32.cc index cef480bbc1..41a3abbe31 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_self.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_self_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/arithmetic_self.h" +#include "src/runtime/kernel/arm/fp32/arithmetic_self_fp32.h" #include "src/kernel_registry.h" #include "nnacl/fp32/arithmetic_self.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_self.h b/mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_self_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_self.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/arithmetic_self_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/batch_to_space.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/batch_to_space_fp32.cc similarity index 96% rename from mindspore/lite/src/runtime/kernel/arm/fp32/batch_to_space.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/batch_to_space_fp32.cc index 1a9bb76fbe..11edc030e0 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/batch_to_space.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/batch_to_space_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/batch_to_space.h" +#include "src/runtime/kernel/arm/fp32/batch_to_space_fp32.h" #include #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/batch_to_space.h b/mindspore/lite/src/runtime/kernel/arm/fp32/batch_to_space_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/batch_to_space.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/batch_to_space_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/batchnorm.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/batchnorm_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/batchnorm.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/batchnorm_fp32.cc index ff97fc5e7b..79bdd050ac 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/batchnorm.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/batchnorm_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/batchnorm.h" +#include "src/runtime/kernel/arm/fp32/batchnorm_fp32.h" #include "src/kernel_registry.h" using mindspore::lite::KernelRegistrar; diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/batchnorm.h b/mindspore/lite/src/runtime/kernel/arm/fp32/batchnorm_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/batchnorm.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/batchnorm_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/bias.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/bias_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/bias.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/bias_fp32.cc index 6c7d54c517..5353d47376 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/bias.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/bias_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/bias.h" +#include "src/runtime/kernel/arm/fp32/bias_fp32.h" #include #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/bias.h b/mindspore/lite/src/runtime/kernel/arm/fp32/bias_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/bias.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/bias_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/broadcast_to.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/broadcast_to_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/broadcast_to.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/broadcast_to_fp32.cc index 0fbaf03213..5747d49e30 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/broadcast_to.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/broadcast_to_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/broadcast_to.h" +#include "src/runtime/kernel/arm/fp32/broadcast_to_fp32.h" #include #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/broadcast_to.h b/mindspore/lite/src/runtime/kernel/arm/fp32/broadcast_to_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/broadcast_to.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/broadcast_to_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/cast.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/cast_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/cast.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/cast_fp32.cc index 0df744465c..f67cdd8f02 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/cast.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/cast_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/cast.h" +#include "src/runtime/kernel/arm/fp32/cast_fp32.h" #include #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/cast.h b/mindspore/lite/src/runtime/kernel/arm/fp32/cast_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/cast.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/cast_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/concat.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/concat_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/concat.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/concat_fp32.cc index b4f38d4b96..dc508e0351 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/concat.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/concat_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/concat.h" +#include "src/runtime/kernel/arm/fp32/concat_fp32.h" #include #include "nnacl/fp32/concat.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/concat.h b/mindspore/lite/src/runtime/kernel/arm/fp32/concat_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/concat.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/concat_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/constant_of_shape.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/constant_of_shape_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/constant_of_shape.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/constant_of_shape_fp32.cc index 097dcbb2f0..5bf9e0f68f 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/constant_of_shape.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/constant_of_shape_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/constant_of_shape.h" +#include "src/runtime/kernel/arm/fp32/constant_of_shape_fp32.h" #include #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/constant_of_shape.h b/mindspore/lite/src/runtime/kernel/arm/fp32/constant_of_shape_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/constant_of_shape.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/constant_of_shape_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_1x1.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_1x1_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/convolution_1x1.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/convolution_1x1_fp32.cc index 7f204135a7..ace4d2dda3 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_1x1.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_1x1_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/convolution_1x1.h" +#include "src/runtime/kernel/arm/fp32/convolution_1x1_fp32.h" #include "src/runtime/runtime_api.h" using mindspore::lite::RET_ERROR; diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_1x1.h b/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_1x1_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/convolution_1x1.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/convolution_1x1_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise_fp32.cc index 99e8c6c25e..540ea0a2ca 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise_fp32.cc @@ -14,8 +14,8 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/convolution_depthwise.h" -#include "src/runtime/kernel/arm/fp32/convolution_depthwise_slidewindow.h" +#include "src/runtime/kernel/arm/fp32/convolution_depthwise_fp32.h" +#include "src/runtime/kernel/arm/fp32/convolution_depthwise_slidewindow_fp32.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise.h b/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise_slidewindow.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise_slidewindow_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise_slidewindow.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise_slidewindow_fp32.cc index c157bd5011..2ee4f70407 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise_slidewindow.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise_slidewindow_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/convolution_depthwise_slidewindow.h" +#include "src/runtime/kernel/arm/fp32/convolution_depthwise_slidewindow_fp32.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise_slidewindow.h b/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise_slidewindow_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise_slidewindow.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/convolution_depthwise_slidewindow_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/convolution.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/convolution.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/convolution_fp32.cc index ee99b8e3ba..14ef117939 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/convolution.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_fp32.cc @@ -14,10 +14,10 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/convolution.h" -#include "src/runtime/kernel/arm/fp32/convolution_1x1.h" -#include "src/runtime/kernel/arm/fp32/convolution_winograd.h" -#include "src/runtime/kernel/arm/fp32/group_convolution.h" +#include "src/runtime/kernel/arm/fp32/convolution_fp32.h" +#include "src/runtime/kernel/arm/fp32/convolution_1x1_fp32.h" +#include "src/runtime/kernel/arm/fp32/convolution_winograd_fp32.h" +#include "src/runtime/kernel/arm/fp32/group_convolution_fp32.h" #include "nnacl/fp32/conv.h" #include "nnacl/common_func.h" #include "schema/model_generated.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/convolution.h b/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/convolution.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/convolution_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_winograd.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_winograd_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/convolution_winograd.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/convolution_winograd_fp32.cc index 1b7d0e7f1d..51ebcc7261 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_winograd.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_winograd_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/convolution_winograd.h" +#include "src/runtime/kernel/arm/fp32/convolution_winograd_fp32.h" #include "nnacl/fp32/conv.h" #include "nnacl/pack.h" #include "schema/model_generated.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_winograd.h b/mindspore/lite/src/runtime/kernel/arm/fp32/convolution_winograd_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/convolution_winograd.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/convolution_winograd_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/crop.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/crop_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/crop.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/crop_fp32.cc index 52140ae477..0376fb4c29 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/crop.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/crop_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/crop.h" +#include "src/runtime/kernel/arm/fp32/crop_fp32.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" #include "nnacl/fp32/crop.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/crop.h b/mindspore/lite/src/runtime/kernel/arm/fp32/crop_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/crop.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/crop_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_depthwise.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_depthwise_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_depthwise.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_depthwise_fp32.cc index 2eb80d91b5..3a129e1379 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_depthwise.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_depthwise_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/deconvolution_depthwise.h" +#include "src/runtime/kernel/arm/fp32/deconvolution_depthwise_fp32.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_depthwise.h b/mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_depthwise_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_depthwise.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_depthwise_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_fp32.cc index 3df0f798c5..c46c01a93c 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_fp32.cc @@ -14,8 +14,8 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/deconvolution.h" -#include "src/runtime/kernel/arm/fp32/deconvolution_winograd.h" +#include "src/runtime/kernel/arm/fp32/deconvolution_fp32.h" +#include "src/runtime/kernel/arm/fp32/deconvolution_winograd_fp32.h" #include "src/runtime/runtime_api.h" #include "src/runtime/kernel/arm/base/dequant.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution.h b/mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_winograd.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_winograd_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_winograd.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_winograd_fp32.cc index c0aa442055..f6392aaae1 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_winograd.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_winograd_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/deconvolution_winograd.h" +#include "src/runtime/kernel/arm/fp32/deconvolution_winograd_fp32.h" #include "src/runtime/runtime_api.h" using mindspore::lite::RET_ERROR; diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_winograd.h b/mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_winograd_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_winograd.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_winograd_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/depth_to_space.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/depth_to_space_fp32.cc similarity index 97% rename from mindspore/lite/src/runtime/kernel/arm/fp32/depth_to_space.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/depth_to_space_fp32.cc index b6e50a39c5..5c7e7fa339 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/depth_to_space.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/depth_to_space_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/depth_to_space.h" +#include "src/runtime/kernel/arm/fp32/depth_to_space_fp32.h" #include #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/depth_to_space.h b/mindspore/lite/src/runtime/kernel/arm/fp32/depth_to_space_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/depth_to_space.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/depth_to_space_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/detection_post_process.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/detection_post_process_fp32.cc similarity index 97% rename from mindspore/lite/src/runtime/kernel/arm/fp32/detection_post_process.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/detection_post_process_fp32.cc index ac7ecccddd..e4da8296ad 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/detection_post_process.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/detection_post_process_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/detection_post_process.h" +#include "src/runtime/kernel/arm/fp32/detection_post_process_fp32.h" #include #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/detection_post_process.h b/mindspore/lite/src/runtime/kernel/arm/fp32/detection_post_process_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/detection_post_process.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/detection_post_process_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/elu.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/elu_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/elu.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/elu_fp32.cc index fd4c55b5df..60d99118d4 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/elu.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/elu_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/elu.h" +#include "src/runtime/kernel/arm/fp32/elu_fp32.h" #include "include/errorcode.h" #include "src/kernel_registry.h" #include "src/runtime/runtime_api.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/elu.h b/mindspore/lite/src/runtime/kernel/arm/fp32/elu_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/elu.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/elu_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/embedding_lookup.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/embedding_lookup_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/embedding_lookup.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/embedding_lookup_fp32.cc index 209aaf3906..4ef2ed84d4 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/embedding_lookup.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/embedding_lookup_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/embedding_lookup.h" +#include "src/runtime/kernel/arm/fp32/embedding_lookup_fp32.h" #include "include/errorcode.h" #include "src/kernel_registry.h" #include "src/runtime/runtime_api.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/embedding_lookup.h b/mindspore/lite/src/runtime/kernel/arm/fp32/embedding_lookup_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/embedding_lookup.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/embedding_lookup_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/exp.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/exp_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/exp.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/exp_fp32.cc index 98271d73eb..bdc83587bf 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/exp.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/exp_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/exp.h" +#include "src/runtime/kernel/arm/fp32/exp_fp32.h" #include #include "include/errorcode.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/exp.h b/mindspore/lite/src/runtime/kernel/arm/fp32/exp_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/exp.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/exp_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/expandDims.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/expandDims_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/expandDims.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/expandDims_fp32.cc index 813b39b75a..7d50357d92 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/expandDims.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/expandDims_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/expandDims.h" +#include "src/runtime/kernel/arm/fp32/expandDims_fp32.h" #include #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/expandDims.h b/mindspore/lite/src/runtime/kernel/arm/fp32/expandDims_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/expandDims.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/expandDims_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/fill.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/fill_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/fill.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/fill_fp32.cc index f72fd6bcdb..6d73d625af 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/fill.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/fill_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/fill.h" +#include "src/runtime/kernel/arm/fp32/fill_fp32.h" #include #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/fill.h b/mindspore/lite/src/runtime/kernel/arm/fp32/fill_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/fill.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/fill_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/flatten.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/flatten_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/flatten.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/flatten_fp32.cc index 5137fe9d83..7ed6d69c74 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/flatten.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/flatten_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/flatten.h" +#include "src/runtime/kernel/arm/fp32/flatten_fp32.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" #include "nnacl/flatten.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/flatten.h b/mindspore/lite/src/runtime/kernel/arm/fp32/flatten_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/flatten.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/flatten_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/fullconnection.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/fullconnection_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/fullconnection.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/fullconnection_fp32.cc index 6f6cec20e9..891075c527 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/fullconnection.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/fullconnection_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/fullconnection.h" +#include "src/runtime/kernel/arm/fp32/fullconnection_fp32.h" #include "src/runtime/runtime_api.h" using mindspore::lite::RET_ERROR; using mindspore::lite::RET_MEMORY_FAILED; diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/fullconnection.h b/mindspore/lite/src/runtime/kernel/arm/fp32/fullconnection_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/fullconnection.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/fullconnection_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/fused_batchnorm.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/fused_batchnorm_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/fused_batchnorm.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/fused_batchnorm_fp32.cc index 69a1785060..fe3a955165 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/fused_batchnorm.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/fused_batchnorm_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/fused_batchnorm.h" +#include "src/runtime/kernel/arm/fp32/fused_batchnorm_fp32.h" #include "src/kernel_registry.h" using mindspore::lite::KernelRegistrar; diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/fused_batchnorm.h b/mindspore/lite/src/runtime/kernel/arm/fp32/fused_batchnorm_fp32.h similarity index 96% rename from mindspore/lite/src/runtime/kernel/arm/fp32/fused_batchnorm.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/fused_batchnorm_fp32.h index e1a42e2776..cea5a532d0 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/fused_batchnorm.h +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/fused_batchnorm_fp32.h @@ -18,7 +18,7 @@ #define MINDSPORE_LITE_SRC_RUNTIME_KERNEL_ARM_FP32_FUSED_BATCHNORM_H_ #include -#include "src/runtime/kernel/arm/fp32/batchnorm.h" +#include "src/runtime/kernel/arm/fp32/batchnorm_fp32.h" namespace mindspore::kernel { class FusedBatchnormCPUKernel : public BatchnormCPUKernel { diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/gatherNd.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/gatherNd_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/gatherNd.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/gatherNd_fp32.cc index ab9e517fc3..3c857bd218 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/gatherNd.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/gatherNd_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/gatherNd.h" +#include "src/runtime/kernel/arm/fp32/gatherNd_fp32.h" #include #include #include "schema/model_generated.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/gatherNd.h b/mindspore/lite/src/runtime/kernel/arm/fp32/gatherNd_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/gatherNd.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/gatherNd_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/gather.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/gather_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/gather.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/gather_fp32.cc index 3b15c00e2b..5328826a3c 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/gather.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/gather_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/gather.h" +#include "src/runtime/kernel/arm/fp32/gather_fp32.h" #include #include "nnacl/gather_parameter.h" #include "nnacl/fp32/gather.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/gather.h b/mindspore/lite/src/runtime/kernel/arm/fp32/gather_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/gather.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/gather_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/group_convolution.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/group_convolution_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/group_convolution.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/group_convolution_fp32.cc index 7754e5ba87..b115556615 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/group_convolution.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/group_convolution_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/group_convolution.h" +#include "src/runtime/kernel/arm/fp32/group_convolution_fp32.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/group_convolution.h b/mindspore/lite/src/runtime/kernel/arm/fp32/group_convolution_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/group_convolution.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/group_convolution_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/instance_norm.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/instance_norm_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/instance_norm.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/instance_norm_fp32.cc index bbf144787a..99a586e3c3 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/instance_norm.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/instance_norm_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/instance_norm.h" +#include "src/runtime/kernel/arm/fp32/instance_norm_fp32.h" #include #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/instance_norm.h b/mindspore/lite/src/runtime/kernel/arm/fp32/instance_norm_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/instance_norm.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/instance_norm_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/l2_norm.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/l2_norm_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/l2_norm.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/l2_norm_fp32.cc index 5b62131217..dc5215d88b 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/l2_norm.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/l2_norm_fp32.cc @@ -16,7 +16,7 @@ #include #include -#include "src/runtime/kernel/arm/fp32/l2_norm.h" +#include "src/runtime/kernel/arm/fp32/l2_norm_fp32.h" #include "include/errorcode.h" #include "nnacl/l2_norm.h" #include "src/runtime/runtime_api.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/l2_norm.h b/mindspore/lite/src/runtime/kernel/arm/fp32/l2_norm_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/l2_norm.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/l2_norm_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/layer_norm.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/layer_norm_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/layer_norm.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/layer_norm_fp32.cc index e0ddb8f63c..3af55274b4 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/layer_norm.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/layer_norm_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/layer_norm.h" +#include "src/runtime/kernel/arm/fp32/layer_norm_fp32.h" #include #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/layer_norm.h b/mindspore/lite/src/runtime/kernel/arm/fp32/layer_norm_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/layer_norm.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/layer_norm_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/local_response_norm.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/local_response_norm_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/local_response_norm.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/local_response_norm_fp32.cc index 7f14ffd121..12e20499a1 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/local_response_norm.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/local_response_norm_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/local_response_norm.h" +#include "src/runtime/kernel/arm/fp32/local_response_norm_fp32.h" #include #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/local_response_norm.h b/mindspore/lite/src/runtime/kernel/arm/fp32/local_response_norm_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/local_response_norm.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/local_response_norm_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/lsh_projection.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/lsh_projection_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/lsh_projection.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/lsh_projection_fp32.cc index 3317ba7007..72ac199ccc 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/lsh_projection.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/lsh_projection_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/lsh_projection.h" +#include "src/runtime/kernel/arm/fp32/lsh_projection_fp32.h" #include "include/errorcode.h" #include "src/common/string_util.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/lsh_projection.h b/mindspore/lite/src/runtime/kernel/arm/fp32/lsh_projection_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/lsh_projection.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/lsh_projection_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/lstm.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/lstm_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/lstm.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/lstm_fp32.cc index 4bbe6aa2c5..3abbc71279 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/lstm.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/lstm_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/lstm.h" +#include "src/runtime/kernel/arm/fp32/lstm_fp32.h" #include #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/lstm.h b/mindspore/lite/src/runtime/kernel/arm/fp32/lstm_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/lstm.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/lstm_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/matmul.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/matmul_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/matmul.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/matmul_fp32.cc index 94739469e1..25d603fed8 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/matmul.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/matmul_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/matmul.h" +#include "src/runtime/kernel/arm/fp32/matmul_fp32.h" #include "include/errorcode.h" #include "nnacl/fp32/matmul.h" #include "src/runtime/runtime_api.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/matmul.h b/mindspore/lite/src/runtime/kernel/arm/fp32/matmul_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/matmul.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/matmul_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/nchw2nhwc.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/nchw2nhwc_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/nchw2nhwc.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/nchw2nhwc_fp32.cc index 91d158393e..2b8b3e33d6 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/nchw2nhwc.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/nchw2nhwc_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/nchw2nhwc.h" +#include "src/runtime/kernel/arm/fp32/nchw2nhwc_fp32.h" using mindspore::kernel::KERNEL_ARCH::kCPU; using mindspore::lite::KernelRegistrar; diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/nchw2nhwc.h b/mindspore/lite/src/runtime/kernel/arm/fp32/nchw2nhwc_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/nchw2nhwc.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/nchw2nhwc_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/nhwc2nchw.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/nhwc2nchw_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/nhwc2nchw.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/nhwc2nchw_fp32.cc index 666d64f660..49112ed8ed 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/nhwc2nchw.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/nhwc2nchw_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/nhwc2nchw.h" +#include "src/runtime/kernel/arm/fp32/nhwc2nchw_fp32.h" using mindspore::kernel::KERNEL_ARCH::kCPU; using mindspore::lite::KernelRegistrar; diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/nhwc2nchw.h b/mindspore/lite/src/runtime/kernel/arm/fp32/nhwc2nchw_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/nhwc2nchw.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/nhwc2nchw_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/non_max_suppression.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/non_max_suppression_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/non_max_suppression.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/non_max_suppression_fp32.cc index 5b86beffd9..a444145f8e 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/non_max_suppression.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/non_max_suppression_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/non_max_suppression.h" +#include "src/runtime/kernel/arm/fp32/non_max_suppression_fp32.h" #include #include #include diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/non_max_suppression.h b/mindspore/lite/src/runtime/kernel/arm/fp32/non_max_suppression_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/non_max_suppression.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/non_max_suppression_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/one_hot.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/one_hot_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/one_hot.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/one_hot_fp32.cc index 6f43d5a148..619e33d03b 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/one_hot.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/one_hot_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/one_hot.h" +#include "src/runtime/kernel/arm/fp32/one_hot_fp32.h" #include "nnacl/fp32/one_hot.h" #include "schema/model_generated.h" #include "src/runtime/runtime_api.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/one_hot.h b/mindspore/lite/src/runtime/kernel/arm/fp32/one_hot_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/one_hot.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/one_hot_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/pad.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/pad_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/pad.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/pad_fp32.cc index f2dac28faa..751b3831f2 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/pad.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/pad_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/pad.h" +#include "src/runtime/kernel/arm/fp32/pad_fp32.h" #include #include "src/kernel_registry.h" #include "schema/model_generated.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/pad.h b/mindspore/lite/src/runtime/kernel/arm/fp32/pad_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/pad.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/pad_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/pooling.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/pooling_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/pooling.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/pooling_fp32.cc index 3649b08e8f..e7474e25af 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/pooling.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/pooling_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/pooling.h" +#include "src/runtime/kernel/arm/fp32/pooling_fp32.h" #include #include "nnacl/fp32/pooling.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/pooling.h b/mindspore/lite/src/runtime/kernel/arm/fp32/pooling_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/pooling.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/pooling_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/power.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/power_fp32.cc similarity index 97% rename from mindspore/lite/src/runtime/kernel/arm/fp32/power.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/power_fp32.cc index 65ca75c8dd..a991c1ee68 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/power.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/power_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/power.h" +#include "src/runtime/kernel/arm/fp32/power_fp32.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" #include "src/runtime/runtime_api.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/power.h b/mindspore/lite/src/runtime/kernel/arm/fp32/power_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/power.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/power_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/prelu.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/prelu_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/prelu.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/prelu_fp32.cc index d978a251e8..f4b1d0da37 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/prelu.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/prelu_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/prelu.h" +#include "src/runtime/kernel/arm/fp32/prelu_fp32.h" #include #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/prelu.h b/mindspore/lite/src/runtime/kernel/arm/fp32/prelu_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/prelu.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/prelu_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/range.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/range_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/range.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/range_fp32.cc index a457e16567..27e7d34baf 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/range.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/range_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/range.h" +#include "src/runtime/kernel/arm/fp32/range_fp32.h" #include #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/range.h b/mindspore/lite/src/runtime/kernel/arm/fp32/range_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/range.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/range_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/rank.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/rank_fp32.cc similarity index 97% rename from mindspore/lite/src/runtime/kernel/arm/fp32/rank.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/rank_fp32.cc index 753c138542..88c2a9aa09 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/rank.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/rank_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/rank.h" +#include "src/runtime/kernel/arm/fp32/rank_fp32.h" #include #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/rank.h b/mindspore/lite/src/runtime/kernel/arm/fp32/rank_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/rank.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/rank_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/reduce.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/reduce_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/reduce.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/reduce_fp32.cc index 6e9f1eff78..bbe08c2ade 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/reduce.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/reduce_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/reduce.h" +#include "src/runtime/kernel/arm/fp32/reduce_fp32.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/reduce.h b/mindspore/lite/src/runtime/kernel/arm/fp32/reduce_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/reduce.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/reduce_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/reshape.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/reshape_fp32.cc similarity index 96% rename from mindspore/lite/src/runtime/kernel/arm/fp32/reshape.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/reshape_fp32.cc index edf9022628..56584f05df 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/reshape.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/reshape_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/reshape.h" +#include "src/runtime/kernel/arm/fp32/reshape_fp32.h" #include #include "nnacl/reshape.h" #include "schema/model_generated.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/reshape.h b/mindspore/lite/src/runtime/kernel/arm/fp32/reshape_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/reshape.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/reshape_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/resize.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/resize_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/resize.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/resize_fp32.cc index 3d553b7921..15affd17d7 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/resize.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/resize_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/resize.h" +#include "src/runtime/kernel/arm/fp32/resize_fp32.h" #include #include "include/errorcode.h" #include "nnacl/fp32/resize.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/resize.h b/mindspore/lite/src/runtime/kernel/arm/fp32/resize_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/resize.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/resize_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/reverse.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/reverse_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/reverse.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/reverse_fp32.cc index 6ecee31189..09b43ac4cc 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/reverse.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/reverse_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/reverse.h" +#include "src/runtime/kernel/arm/fp32/reverse_fp32.h" #include #include #include "schema/model_generated.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/reverse.h b/mindspore/lite/src/runtime/kernel/arm/fp32/reverse_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/reverse.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/reverse_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/reverse_sequence.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/reverse_sequence_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/reverse_sequence.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/reverse_sequence_fp32.cc index ad69092a1b..ccb3a1622b 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/reverse_sequence.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/reverse_sequence_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/reverse_sequence.h" +#include "src/runtime/kernel/arm/fp32/reverse_sequence_fp32.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/reverse_sequence.h b/mindspore/lite/src/runtime/kernel/arm/fp32/reverse_sequence_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/reverse_sequence.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/reverse_sequence_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/roi_pooling.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/roi_pooling_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/roi_pooling.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/roi_pooling_fp32.cc index 6815664a93..0d65a35be0 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/roi_pooling.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/roi_pooling_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/roi_pooling.h" +#include "src/runtime/kernel/arm/fp32/roi_pooling_fp32.h" #include "nnacl/fp32/roi_pooling.h" #include #include "schema/model_generated.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/roi_pooling.h b/mindspore/lite/src/runtime/kernel/arm/fp32/roi_pooling_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/roi_pooling.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/roi_pooling_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/scale.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/scale_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/scale.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/scale_fp32.cc index 3554047a81..0adfcbe805 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/scale.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/scale_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/scale.h" +#include "src/runtime/kernel/arm/fp32/scale_fp32.h" #include #include #include "schema/model_generated.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/scale.h b/mindspore/lite/src/runtime/kernel/arm/fp32/scale_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/scale.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/scale_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/scatter_nd.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/scatter_nd_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/scatter_nd.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/scatter_nd_fp32.cc index b0c5bdbcd9..1010c53a62 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/scatter_nd.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/scatter_nd_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/scatter_nd.h" +#include "src/runtime/kernel/arm/fp32/scatter_nd_fp32.h" #include #include #include "schema/model_generated.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/scatter_nd.h b/mindspore/lite/src/runtime/kernel/arm/fp32/scatter_nd_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/scatter_nd.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/scatter_nd_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/shape.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/shape_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/shape.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/shape_fp32.cc index b8f1231d55..d80e702b34 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/shape.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/shape_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/shape.h" +#include "src/runtime/kernel/arm/fp32/shape_fp32.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/shape.h b/mindspore/lite/src/runtime/kernel/arm/fp32/shape_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/shape.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/shape_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/skip_gram.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/skip_gram_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/skip_gram.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/skip_gram_fp32.cc index da9ee88467..c6b3bd5169 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/skip_gram.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/skip_gram_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/skip_gram.h" +#include "src/runtime/kernel/arm/fp32/skip_gram_fp32.h" #include "include/errorcode.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/skip_gram.h b/mindspore/lite/src/runtime/kernel/arm/fp32/skip_gram_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/skip_gram.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/skip_gram_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/slice.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/slice_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/slice.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/slice_fp32.cc index 8e87d57ab4..2a44c8129b 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/slice.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/slice_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/slice.h" +#include "src/runtime/kernel/arm/fp32/slice_fp32.h" #include "src/kernel_registry.h" #include "nnacl/fp32/slice.h" #include "src/ops/slice.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/slice.h b/mindspore/lite/src/runtime/kernel/arm/fp32/slice_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/slice.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/slice_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/softmax.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/softmax_fp32.cc similarity index 97% rename from mindspore/lite/src/runtime/kernel/arm/fp32/softmax.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/softmax_fp32.cc index 47ef0cd101..1c94561e2e 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/softmax.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/softmax_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/softmax.h" +#include "src/runtime/kernel/arm/fp32/softmax_fp32.h" #include #include #include "nnacl/fp32/softmax.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/softmax.h b/mindspore/lite/src/runtime/kernel/arm/fp32/softmax_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/softmax.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/softmax_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/space_to_batch.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/space_to_batch_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/space_to_batch.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/space_to_batch_fp32.cc index 3bb2f7ca1a..e2c7fd1fb1 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/space_to_batch.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/space_to_batch_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/space_to_batch.h" +#include "src/runtime/kernel/arm/fp32/space_to_batch_fp32.h" #include #include "src/kernel_registry.h" #include "nnacl/fp32/space_to_batch.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/space_to_batch.h b/mindspore/lite/src/runtime/kernel/arm/fp32/space_to_batch_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/space_to_batch.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/space_to_batch_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/space_to_depth.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/space_to_depth_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/space_to_depth.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/space_to_depth_fp32.cc index dc1cb5b152..0e02aa96b3 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/space_to_depth.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/space_to_depth_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/space_to_depth.h" +#include "src/runtime/kernel/arm/fp32/space_to_depth_fp32.h" #include #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/space_to_depth.h b/mindspore/lite/src/runtime/kernel/arm/fp32/space_to_depth_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/space_to_depth.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/space_to_depth_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/sparse_to_dense.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/sparse_to_dense_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/sparse_to_dense.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/sparse_to_dense_fp32.cc index 909cb64350..b8efa5ef26 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/sparse_to_dense.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/sparse_to_dense_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/sparse_to_dense.h" +#include "src/runtime/kernel/arm/fp32/sparse_to_dense_fp32.h" #include diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/sparse_to_dense.h b/mindspore/lite/src/runtime/kernel/arm/fp32/sparse_to_dense_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/sparse_to_dense.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/sparse_to_dense_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/split.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/split_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/split.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/split_fp32.cc index 5a2c84244e..d1f5e7913f 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/split.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/split_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/split.h" +#include "src/runtime/kernel/arm/fp32/split_fp32.h" #include "src/runtime/kernel/arm/base/split_base.h" #include "nnacl/split.h" #include "nnacl/split_parameter.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/split.h b/mindspore/lite/src/runtime/kernel/arm/fp32/split_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/split.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/split_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/squeeze.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/squeeze_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/squeeze.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/squeeze_fp32.cc index c1df45b99f..7a9831378f 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/squeeze.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/squeeze_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/squeeze.h" +#include "src/runtime/kernel/arm/fp32/squeeze_fp32.h" #include #include "nnacl/squeeze.h" #include "schema/model_generated.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/squeeze.h b/mindspore/lite/src/runtime/kernel/arm/fp32/squeeze_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/squeeze.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/squeeze_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/stack.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/stack_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/stack.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/stack_fp32.cc index 006e356127..f1c2b99fb2 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/stack.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/stack_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/stack.h" +#include "src/runtime/kernel/arm/fp32/stack_fp32.h" #include #include "schema/model_generated.h" #include "src/kernel_registry.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/stack.h b/mindspore/lite/src/runtime/kernel/arm/fp32/stack_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/stack.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/stack_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/tile.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/tile_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/tile.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/tile_fp32.cc index 7e4fb9eaf1..76aaff4422 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/tile.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/tile_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/tile.h" +#include "src/runtime/kernel/arm/fp32/tile_fp32.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/tile.h b/mindspore/lite/src/runtime/kernel/arm/fp32/tile_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/tile.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/tile_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/topk.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/topk_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/topk.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/topk_fp32.cc index 3aff858c24..11fb3c4cb9 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/topk.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/topk_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/topk.h" +#include "src/runtime/kernel/arm/fp32/topk_fp32.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/topk.h b/mindspore/lite/src/runtime/kernel/arm/fp32/topk_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/topk.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/topk_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/transpose.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/transpose_fp32.cc similarity index 99% rename from mindspore/lite/src/runtime/kernel/arm/fp32/transpose.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/transpose_fp32.cc index 5bb5c2fd5a..ed9f0ce29f 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/transpose.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/transpose_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/transpose.h" +#include "src/runtime/kernel/arm/fp32/transpose_fp32.h" #include #include "nnacl/transpose.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/transpose.h b/mindspore/lite/src/runtime/kernel/arm/fp32/transpose_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/transpose.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/transpose_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/unique.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/unique_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/unique.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/unique_fp32.cc index 7e09f3de13..132052958e 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/unique.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/unique_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/unique.h" +#include "src/runtime/kernel/arm/fp32/unique_fp32.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/unique.h b/mindspore/lite/src/runtime/kernel/arm/fp32/unique_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/unique.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/unique_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/unsqueeze.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/unsqueeze_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/unsqueeze.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/unsqueeze_fp32.cc index 6c79b4ef97..7a9110f467 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/unsqueeze.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/unsqueeze_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/unsqueeze.h" +#include "src/runtime/kernel/arm/fp32/unsqueeze_fp32.h" #include "schema/model_generated.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/unsqueeze.h b/mindspore/lite/src/runtime/kernel/arm/fp32/unsqueeze_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/unsqueeze.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/unsqueeze_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/unstack.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/unstack_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/unstack.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/unstack_fp32.cc index bc82fa3d47..ebd7733bfe 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/unstack.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/unstack_fp32.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/unstack.h" +#include "src/runtime/kernel/arm/fp32/unstack_fp32.h" #include "src/kernel_registry.h" #include "include/errorcode.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/unstack.h b/mindspore/lite/src/runtime/kernel/arm/fp32/unstack_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/unstack.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/unstack_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/where.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/where_fp32.cc similarity index 98% rename from mindspore/lite/src/runtime/kernel/arm/fp32/where.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/where_fp32.cc index 696798bd40..e551f3ec30 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/where.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/where_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/where.h" +#include "src/runtime/kernel/arm/fp32/where_fp32.h" #include #include "schema/model_generated.h" #include "nnacl/where.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/where.h b/mindspore/lite/src/runtime/kernel/arm/fp32/where_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/where.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/where_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/zeroslike.cc b/mindspore/lite/src/runtime/kernel/arm/fp32/zeroslike_fp32.cc similarity index 97% rename from mindspore/lite/src/runtime/kernel/arm/fp32/zeroslike.cc rename to mindspore/lite/src/runtime/kernel/arm/fp32/zeroslike_fp32.cc index 53a9f8cb04..265e639540 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32/zeroslike.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32/zeroslike_fp32.cc @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "src/runtime/kernel/arm/fp32/zeroslike.h" +#include "src/runtime/kernel/arm/fp32/zeroslike_fp32.h" #include #include "schema/model_generated.h" #include "nnacl/zeroslike.h" diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32/zeroslike.h b/mindspore/lite/src/runtime/kernel/arm/fp32/zeroslike_fp32.h similarity index 100% rename from mindspore/lite/src/runtime/kernel/arm/fp32/zeroslike.h rename to mindspore/lite/src/runtime/kernel/arm/fp32/zeroslike_fp32.h diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32_grad/adam.cc b/mindspore/lite/src/runtime/kernel/arm/fp32_grad/adam.cc index 1b152a27bd..81cfa992d0 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32_grad/adam.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32_grad/adam.cc @@ -21,7 +21,7 @@ #include "src/kernel_registry.h" #include "include/errorcode.h" #include "src/runtime/runtime_api.h" -#include "src/runtime/kernel/arm/fp32/nchw2nhwc.h" +#include "src/runtime/kernel/arm/fp32/nchw2nhwc_fp32.h" using mindspore::kernel::KERNEL_ARCH::kCPU; using mindspore::lite::KernelRegistrar; diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32_grad/apply_momentum.cc b/mindspore/lite/src/runtime/kernel/arm/fp32_grad/apply_momentum.cc index 488cf8ac1f..b629d5f441 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32_grad/apply_momentum.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32_grad/apply_momentum.cc @@ -20,7 +20,7 @@ #include "src/kernel_registry.h" #include "include/errorcode.h" #include "src/runtime/runtime_api.h" -#include "src/runtime/kernel/arm/fp32/nchw2nhwc.h" +#include "src/runtime/kernel/arm/fp32/nchw2nhwc_fp32.h" using mindspore::kernel::KERNEL_ARCH::kCPU; using mindspore::lite::KernelRegistrar; diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32_grad/assign.cc b/mindspore/lite/src/runtime/kernel/arm/fp32_grad/assign.cc index 1984ca1a01..4a222c7843 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32_grad/assign.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32_grad/assign.cc @@ -20,7 +20,7 @@ #include "src/kernel_registry.h" #include "include/errorcode.h" #include "src/runtime/runtime_api.h" -#include "src/runtime/kernel/arm/fp32/nchw2nhwc.h" +#include "src/runtime/kernel/arm/fp32/nchw2nhwc_fp32.h" using mindspore::kernel::KERNEL_ARCH::kCPU; using mindspore::lite::KernelRegistrar; diff --git a/mindspore/lite/src/runtime/kernel/arm/fp32_grad/sgd.cc b/mindspore/lite/src/runtime/kernel/arm/fp32_grad/sgd.cc index 01897195cc..1d4d9b9d7b 100644 --- a/mindspore/lite/src/runtime/kernel/arm/fp32_grad/sgd.cc +++ b/mindspore/lite/src/runtime/kernel/arm/fp32_grad/sgd.cc @@ -20,7 +20,7 @@ #include "src/kernel_registry.h" #include "include/errorcode.h" #include "src/runtime/runtime_api.h" -#include "src/runtime/kernel/arm/fp32/nchw2nhwc.h" +#include "src/runtime/kernel/arm/fp32/nchw2nhwc_fp32.h" using mindspore::kernel::KERNEL_ARCH::kCPU; using mindspore::lite::KernelRegistrar; diff --git a/mindspore/lite/src/runtime/kernel/arm/int8/l2_norm_int8.h b/mindspore/lite/src/runtime/kernel/arm/int8/l2_norm_int8.h index 07dfb354ff..1a455263d3 100644 --- a/mindspore/lite/src/runtime/kernel/arm/int8/l2_norm_int8.h +++ b/mindspore/lite/src/runtime/kernel/arm/int8/l2_norm_int8.h @@ -17,7 +17,7 @@ #define MINDSPORE_LITE_SRC_RUNTIME_KERNEL_ARM_INT8_L2_NORM_INT8_H_ #include -#include "src/runtime/kernel/arm/fp32/l2_norm.h" +#include "src/runtime/kernel/arm/fp32/l2_norm_fp32.h" #include "nnacl/int8/l2_norm_int8.h" namespace mindspore::kernel { diff --git a/mindspore/lite/src/runtime/kernel/arm/int8/slice_int8.h b/mindspore/lite/src/runtime/kernel/arm/int8/slice_int8.h index 8dd7c8dc7b..992c29a609 100644 --- a/mindspore/lite/src/runtime/kernel/arm/int8/slice_int8.h +++ b/mindspore/lite/src/runtime/kernel/arm/int8/slice_int8.h @@ -18,7 +18,7 @@ #define MINDSPORE_LITE_SRC_RUNTIME_KERNEL_ARM_INT8_SLICE_INT8_H_ #include -#include "src/runtime/kernel/arm/fp32/slice.h" +#include "src/runtime/kernel/arm/fp32/slice_fp32.h" #include "nnacl/quantization/quantize.h" namespace mindspore::kernel { diff --git a/mindspore/lite/src/runtime/kernel/arm/int8/space_to_batch_int8.h b/mindspore/lite/src/runtime/kernel/arm/int8/space_to_batch_int8.h index cce69eb314..13c4635d90 100644 --- a/mindspore/lite/src/runtime/kernel/arm/int8/space_to_batch_int8.h +++ b/mindspore/lite/src/runtime/kernel/arm/int8/space_to_batch_int8.h @@ -17,7 +17,7 @@ #define MINDSPORE_LITE_SRC_RUNTIME_KERNEL_ARM_INT8_SPACE_TO_BATCH_INT8_H_ #include -#include "src/runtime/kernel/arm/fp32/space_to_batch.h" +#include "src/runtime/kernel/arm/fp32/space_to_batch_fp32.h" namespace mindspore::kernel { class SpaceToBatchInt8CPUKernel : public SpaceToBatchCPUKernel { diff --git a/mindspore/lite/src/runtime/kernel/opencl/kernel/arithmetic.h b/mindspore/lite/src/runtime/kernel/opencl/kernel/arithmetic.h index d7557d8c94..bc9f2f6ffb 100644 --- a/mindspore/lite/src/runtime/kernel/opencl/kernel/arithmetic.h +++ b/mindspore/lite/src/runtime/kernel/opencl/kernel/arithmetic.h @@ -18,7 +18,7 @@ #define MINDSPORE_LITE_SRC_RUNTIME_KERNEL_OPENCL_KERNEL_ARITHMETIC_H_ #include -#include "src/runtime/kernel/arm/fp32/arithmetic.h" +#include "src/runtime/kernel/arm/fp32/arithmetic_fp32.h" #include "src/runtime/kernel/opencl/opencl_kernel.h" namespace mindspore::kernel { diff --git a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/constant_of_shape_fp32_test.cc b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/constant_of_shape_fp32_test.cc index 4f872d89ce..f0cb9504d4 100644 --- a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/constant_of_shape_fp32_test.cc +++ b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/constant_of_shape_fp32_test.cc @@ -15,7 +15,7 @@ */ #include "src/common/log_adapter.h" #include "common/common_test.h" -#include "mindspore/lite/src/runtime/kernel/arm/fp32/constant_of_shape.h" +#include "mindspore/lite/src/runtime/kernel/arm/fp32/constant_of_shape_fp32.h" #include "src/kernel_registry.h" #include "src/lite_kernel.h" diff --git a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/conv1x1_fp32_tests.cc b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/conv1x1_fp32_tests.cc index d16e4a0922..560c0b1815 100644 --- a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/conv1x1_fp32_tests.cc +++ b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/conv1x1_fp32_tests.cc @@ -20,7 +20,7 @@ #include "common/common_test.h" #include "src/common/file_utils.h" #include "nnacl/matmul_parameter.h" -#include "src/runtime/kernel/arm/fp32/convolution_1x1.h" +#include "src/runtime/kernel/arm/fp32/convolution_1x1_fp32.h" namespace mindspore { using mindspore::lite::Tensor; diff --git a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/crop_fp32_test.cc b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/crop_fp32_test.cc index f91b9c08c6..4bf86f0129 100644 --- a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/crop_fp32_test.cc +++ b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/crop_fp32_test.cc @@ -15,7 +15,7 @@ */ #include "common/common_test.h" #include "mindspore/lite/nnacl/fp32/crop.h" -#include "mindspore/lite/src/runtime/kernel/arm/fp32/crop.h" +#include "mindspore/lite/src/runtime/kernel/arm/fp32/crop_fp32.h" namespace mindspore { class CropTestFp32 : public mindspore::CommonTest { diff --git a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/deconvolution_fp32_tests.cc b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/deconvolution_fp32_tests.cc index 6f08977780..3f4a5bce52 100644 --- a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/deconvolution_fp32_tests.cc +++ b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/deconvolution_fp32_tests.cc @@ -18,7 +18,7 @@ #include "src/common/log_adapter.h" #include "common/common_test.h" #include "src/common/file_utils.h" -#include "mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution.h" +#include "mindspore/lite/src/runtime/kernel/arm/fp32/deconvolution_fp32.h" #include "mindspore/lite/nnacl/fp32/deconv.h" #include "mindspore/lite/nnacl/op_base.h" diff --git a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/detection_post_process_test.cc b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/detection_post_process_test.cc index de55b780df..68b5a6eb7f 100644 --- a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/detection_post_process_test.cc +++ b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/detection_post_process_test.cc @@ -16,7 +16,7 @@ #include "src/common/log_adapter.h" #include "common/common_test.h" -#include "mindspore/lite/src/runtime/kernel/arm/fp32/detection_post_process.h" +#include "mindspore/lite/src/runtime/kernel/arm/fp32/detection_post_process_fp32.h" #include "src/kernel_registry.h" #include "src/lite_kernel.h" #include "src/common/file_utils.h" diff --git a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/elu_fp32_test.cc b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/elu_fp32_test.cc index 8e527fd3e5..097c285dfe 100644 --- a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/elu_fp32_test.cc +++ b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/elu_fp32_test.cc @@ -15,7 +15,7 @@ */ #include -#include "src/runtime/kernel/arm/fp32/elu.h" +#include "src/runtime/kernel/arm/fp32/elu_fp32.h" #include "nnacl/fp32/elu.h" #include "src/common/file_utils.h" #include "common/common_test.h" diff --git a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/embedding_lookup_fp32_test.cc b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/embedding_lookup_fp32_test.cc index bb94ec8dfe..0a7185f69e 100644 --- a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/embedding_lookup_fp32_test.cc +++ b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/embedding_lookup_fp32_test.cc @@ -15,7 +15,7 @@ */ #include -#include "src/runtime/kernel/arm/fp32/embedding_lookup.h" +#include "src/runtime/kernel/arm/fp32/embedding_lookup_fp32.h" #include "nnacl/fp32/embedding_lookup.h" #include "src/common/file_utils.h" #include "common/common_test.h" diff --git a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/fullconnection_fp32_tests.cc b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/fullconnection_fp32_tests.cc index c7b40204b0..36705b3530 100644 --- a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/fullconnection_fp32_tests.cc +++ b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/fullconnection_fp32_tests.cc @@ -21,7 +21,7 @@ #include "nnacl/fp32/matmul.h" #include "src/common/file_utils.h" #include "src/common/log_adapter.h" -#include "src/runtime/kernel/arm/fp32/fullconnection.h" +#include "src/runtime/kernel/arm/fp32/fullconnection_fp32.h" namespace mindspore { using mindspore::lite::Tensor; diff --git a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/l2norm_fp32_test.cc b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/l2norm_fp32_test.cc index 6cfbc3cac3..fa989dc3ff 100644 --- a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/l2norm_fp32_test.cc +++ b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/l2norm_fp32_test.cc @@ -15,7 +15,7 @@ */ #include "src/common/log_adapter.h" #include "common/common_test.h" -#include "mindspore/lite/src/runtime/kernel/arm/fp32/l2_norm.h" +#include "mindspore/lite/src/runtime/kernel/arm/fp32/l2_norm_fp32.h" #include "src/kernel_registry.h" #include "src/lite_kernel.h" using mindspore::schema::Format_NHWC; diff --git a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/matmul_fp32_tests.cc b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/matmul_fp32_tests.cc index 882372fb62..3a1fa9cbe9 100644 --- a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/matmul_fp32_tests.cc +++ b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/matmul_fp32_tests.cc @@ -16,7 +16,7 @@ #include #include "src/common/log_adapter.h" #include "common/common_test.h" -#include "mindspore/lite/src/runtime/kernel/arm/fp32/matmul.h" +#include "mindspore/lite/src/runtime/kernel/arm/fp32/matmul_fp32.h" #include "mindspore/lite/nnacl/fp32/matmul.h" #include "src/kernel_registry.h" #include "src/lite_kernel.h" diff --git a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/non_max_suppression_fp32_tests.cc b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/non_max_suppression_fp32_tests.cc index 432d86fd8e..f24f42fadc 100644 --- a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/non_max_suppression_fp32_tests.cc +++ b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/non_max_suppression_fp32_tests.cc @@ -15,8 +15,8 @@ */ #include "src/common/log_adapter.h" #include "common/common_test.h" -#include "mindspore/lite/src/runtime/kernel/arm/fp32/l2_norm.h" -#include "mindspore/lite/src/runtime/kernel/arm/fp32/non_max_suppression.h" +#include "mindspore/lite/src/runtime/kernel/arm/fp32/l2_norm_fp32.h" +#include "mindspore/lite/src/runtime/kernel/arm/fp32/non_max_suppression_fp32.h" #include "src/kernel_registry.h" #include "src/lite_kernel.h" using mindspore::schema::Format_NHWC; diff --git a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/power_fp32_tests.cc b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/power_fp32_tests.cc index c677a1c4ad..4bfc59b87c 100644 --- a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/power_fp32_tests.cc +++ b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/power_fp32_tests.cc @@ -15,7 +15,7 @@ */ #include "src/common/log_adapter.h" #include "common/common_test.h" -#include "mindspore/lite/src/runtime/kernel/arm/fp32/power.h" +#include "mindspore/lite/src/runtime/kernel/arm/fp32/power_fp32.h" #include "src/kernel_registry.h" #include "src/lite_kernel.h" diff --git a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/roi_pooling_fp32_tests.cc b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/roi_pooling_fp32_tests.cc index 361dfd0984..5feca86088 100644 --- a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/roi_pooling_fp32_tests.cc +++ b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/roi_pooling_fp32_tests.cc @@ -15,7 +15,7 @@ */ #include "src/common/log_adapter.h" #include "common/common_test.h" -#include "mindspore/lite/src/runtime/kernel/arm/fp32/roi_pooling.h" +#include "mindspore/lite/src/runtime/kernel/arm/fp32/roi_pooling_fp32.h" #include "src/kernel_registry.h" #include "src/lite_kernel.h" diff --git a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/skip_gram_fp32.cc b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/skip_gram_fp32.cc index 665718e84a..12cbf375ea 100644 --- a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/skip_gram_fp32.cc +++ b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/skip_gram_fp32.cc @@ -15,7 +15,7 @@ */ #include -#include "src/runtime/kernel/arm/fp32/skip_gram.h" +#include "src/runtime/kernel/arm/fp32/skip_gram_fp32.h" #include "nnacl/fp32/skip_gram.h" #include "src/common/file_utils.h" #include "common/common_test.h" diff --git a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/transpose_fp32_tests.cc b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/transpose_fp32_tests.cc index fe888a18a1..30551a2ecb 100644 --- a/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/transpose_fp32_tests.cc +++ b/mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/transpose_fp32_tests.cc @@ -18,7 +18,7 @@ #include #include "src/common/log_adapter.h" #include "common/common_test.h" -#include "mindspore/lite/src/runtime/kernel/arm/fp32/transpose.h" +#include "mindspore/lite/src/runtime/kernel/arm/fp32/transpose_fp32.h" #include "mindspore/lite/nnacl/transpose.h" #include "mindspore/lite/src/kernel_registry.h" #include "mindspore/lite/src/lite_kernel.h" diff --git a/mindspore/lite/test/ut/src/runtime/kernel/arm/int8/hswish_int8_tests.cc b/mindspore/lite/test/ut/src/runtime/kernel/arm/int8/hswish_int8_tests.cc index 4e81f27a21..fd63d07ae1 100644 --- a/mindspore/lite/test/ut/src/runtime/kernel/arm/int8/hswish_int8_tests.cc +++ b/mindspore/lite/test/ut/src/runtime/kernel/arm/int8/hswish_int8_tests.cc @@ -18,7 +18,7 @@ #include #include "schema/inner/model_generated.h" #include "common/common_test.h" -#include "mindspore/lite/src/runtime/kernel/arm/fp32/activation.h" +#include "mindspore/lite/src/runtime/kernel/arm/fp32/activation_fp32.h" #include "mindspore/lite/nnacl/fp32/activation.h" #include "mindspore/lite/src/runtime/kernel/arm/int8/hswish_int8.h" #include "mindspore/lite/src/kernel_registry.h" diff --git a/mindspore/lite/test/ut/src/runtime/kernel/arm/string/normalize.cc b/mindspore/lite/test/ut/src/runtime/kernel/arm/string/normalize.cc index ebfe33f62c..64357ce127 100644 --- a/mindspore/lite/test/ut/src/runtime/kernel/arm/string/normalize.cc +++ b/mindspore/lite/test/ut/src/runtime/kernel/arm/string/normalize.cc @@ -15,7 +15,7 @@ */ #include -#include "src/runtime/kernel/arm/fp32/skip_gram.h" +#include "src/runtime/kernel/arm/fp32/skip_gram_fp32.h" #include "src/runtime/kernel/arm/string/normalize.h" #include "mindspore/lite/src/kernel_registry.h" #include "nnacl/fp32/skip_gram.h"