modify activation_grad file name

This commit is contained in:
jianghui58 2022-08-10 16:50:04 +08:00
parent 51fee4ef61
commit 7feb9ede15
15 changed files with 23 additions and 23 deletions

View File

@ -10,7 +10,7 @@ function(__install_micro_wrapper)
COMPONENT ${RUNTIME_COMPONENT_NAME} FILES_MATCHING PATTERN "*.h") COMPONENT ${RUNTIME_COMPONENT_NAME} FILES_MATCHING PATTERN "*.h")
install(DIRECTORY ${NNACL_DIR}/fp32 DESTINATION ${CODEGEN_ROOT_DIR}/include/nnacl install(DIRECTORY ${NNACL_DIR}/fp32 DESTINATION ${CODEGEN_ROOT_DIR}/include/nnacl
COMPONENT ${RUNTIME_COMPONENT_NAME} FILES_MATCHING PATTERN "*.h") COMPONENT ${RUNTIME_COMPONENT_NAME} FILES_MATCHING PATTERN "*.h")
install(FILES ${NNACL_DIR}/fp32_grad/activation_grad.h DESTINATION install(FILES ${NNACL_DIR}/fp32_grad/activation_grad_fp32.h DESTINATION
${CODEGEN_ROOT_DIR}/include/nnacl/fp32_grad COMPONENT ${RUNTIME_COMPONENT_NAME}) ${CODEGEN_ROOT_DIR}/include/nnacl/fp32_grad COMPONENT ${RUNTIME_COMPONENT_NAME})
install(FILES ${NNACL_DIR}/fp32_grad/softmax_cross_entropy_with_logits.h DESTINATION install(FILES ${NNACL_DIR}/fp32_grad/softmax_cross_entropy_with_logits.h DESTINATION
${CODEGEN_ROOT_DIR}/include/nnacl/fp32_grad COMPONENT ${RUNTIME_COMPONENT_NAME}) ${CODEGEN_ROOT_DIR}/include/nnacl/fp32_grad COMPONENT ${RUNTIME_COMPONENT_NAME})

View File

@ -21,7 +21,7 @@
#include <functional> #include <functional>
#include "include/common/thread_pool.h" #include "include/common/thread_pool.h"
#include "plugin/device/cpu/hal/device/cpu_device_address.h" #include "plugin/device/cpu/hal/device/cpu_device_address.h"
#include "nnacl/fp32_grad/activation_grad.h" #include "nnacl/fp32_grad/activation_grad_fp32.h"
#include "nnacl/fp32_grad/arithmetic_grad.h" #include "nnacl/fp32_grad/arithmetic_grad.h"
#include "nnacl/errorcode.h" #include "nnacl/errorcode.h"

View File

@ -18,7 +18,7 @@
#include <algorithm> #include <algorithm>
#include "mindspore/core/ops/grad/hshrink_grad.h" #include "mindspore/core/ops/grad/hshrink_grad.h"
#include "plugin/factory/ms_factory.h" #include "plugin/factory/ms_factory.h"
#include "plugin/device/cpu/kernel/nnacl/fp32_grad/activation_grad.h" #include "plugin/device/cpu/kernel/nnacl/fp32_grad/activation_grad_fp32.h"
namespace mindspore { namespace mindspore {
namespace kernel { namespace kernel {

View File

@ -1,5 +1,5 @@
/** /**
* Copyright 2021 Huawei Technologies Co., Ltd * Copyright 2021-2022 Huawei Technologies Co., Ltd
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
#include "nnacl/fp16_grad/activation_grad.h" #include "nnacl/fp16_grad/activation_grad_fp16.h"
#include <math.h> #include <math.h>
#include <float.h> #include <float.h>
#ifdef ENABLE_NEON #ifdef ENABLE_NEON

View File

@ -13,8 +13,8 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
#ifndef MINDSPORE_CCSRC_BACKEND_KERNEL_COMPILER_CPU_NNACL_FP16_GRAD_ACTIVATION_GRAD_H_ #ifndef MINDSPORE_CCSRC_PLUGIN_DEVICE_CPU_KERNEL_NNACL_FP16_GRAD_ACTIVATION_GRAD_FP16_H_
#define MINDSPORE_CCSRC_BACKEND_KERNEL_COMPILER_CPU_NNACL_FP16_GRAD_ACTIVATION_GRAD_H_ #define MINDSPORE_CCSRC_PLUGIN_DEVICE_CPU_KERNEL_NNACL_FP16_GRAD_ACTIVATION_GRAD_FP16_H_
#ifdef ENABLE_NEON #ifdef ENABLE_NEON
#include <arm_neon.h> #include <arm_neon.h>
@ -41,4 +41,4 @@ int GeluFp16Grad(const float16_t *src0, const float16_t *src1, int length, float
} }
#endif #endif
#endif // MINDSPORE_CCSRC_BACKEND_KERNEL_COMPILER_CPU_NNACL_FP16_GRAD_ACTIVATION_GRAD_H_ #endif // MINDSPORE_CCSRC_PLUGIN_DEVICE_CPU_KERNEL_NNACL_FP16_GRAD_ACTIVATION_GRAD_FP16_H_

View File

@ -18,7 +18,7 @@
#include "nnacl/op_base.h" #include "nnacl/op_base.h"
#include "nnacl/fp32/arithmetic_fp32.h" #include "nnacl/fp32/arithmetic_fp32.h"
#include "nnacl/fp32/exp_fp32.h" #include "nnacl/fp32/exp_fp32.h"
#include "nnacl/fp32_grad/activation_grad.h" #include "nnacl/fp32_grad/activation_grad_fp32.h"
#include "nnacl/errorcode.h" #include "nnacl/errorcode.h"
#include "nnacl/intrinsics/ms_simd_instructions.h" #include "nnacl/intrinsics/ms_simd_instructions.h"
#include "nnacl/activation_grad_simd.h" #include "nnacl/activation_grad_simd.h"

View File

@ -13,8 +13,8 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
#ifndef MINDSPORE_NNACL_FP32_GRAD_ACTIVATION_GRAD_H_ #ifndef MINDSPORE_CCSRC_PLUGIN_DEVICE_CPU_KERNEL_NNACL_FP32_GRAD_ACTIVATION_GRAD_FP32_H_
#define MINDSPORE_NNACL_FP32_GRAD_ACTIVATION_GRAD_H_ #define MINDSPORE_CCSRC_PLUGIN_DEVICE_CPU_KERNEL_NNACL_FP32_GRAD_ACTIVATION_GRAD_FP32_H_
#include <math.h> #include <math.h>
#include "nnacl/op_base.h" #include "nnacl/op_base.h"
@ -46,4 +46,4 @@ int SoftShrinkGrad(const float *src0, const float *src1, int length, float *dst,
} }
#endif #endif
#endif // MINDSPORE_NNACL_FP32_GRAD_ACTIVATION_GRAD_H_ #endif // MINDSPORE_CCSRC_PLUGIN_DEVICE_CPU_KERNEL_NNACL_FP32_GRAD_ACTIVATION_GRAD_FP32_H_

View File

@ -16,7 +16,7 @@
#include "plugin/device/cpu/kernel/soft_shrink_grad_cpu_kernel.h" #include "plugin/device/cpu/kernel/soft_shrink_grad_cpu_kernel.h"
#include "mindspore/core/ops/grad/soft_shrink_grad.h" #include "mindspore/core/ops/grad/soft_shrink_grad.h"
#include "plugin/device/cpu/kernel/nnacl/fp32_grad/activation_grad.h" #include "plugin/device/cpu/kernel/nnacl/fp32_grad/activation_grad_fp32.h"
namespace mindspore { namespace mindspore {
namespace kernel { namespace kernel {

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
#include "src/common/ops/populate/populate_register.h" #include "src/common/ops/populate/populate_register.h"
#include "nnacl/fp32_grad/activation_grad.h" #include "nnacl/fp32_grad/activation_grad_fp32.h"
using mindspore::schema::PrimitiveType_ActivationGrad; using mindspore::schema::PrimitiveType_ActivationGrad;
namespace mindspore { namespace mindspore {

View File

@ -15,7 +15,7 @@
*/ */
#include "src/litert/kernel/cpu/fp16_grad/activation_fp16_grad.h" #include "src/litert/kernel/cpu/fp16_grad/activation_fp16_grad.h"
#include "nnacl/fp16_grad/activation_grad.h" #include "nnacl/fp16_grad/activation_grad_fp16.h"
#include "schema/model_generated.h" #include "schema/model_generated.h"
#include "src/litert/kernel_registry.h" #include "src/litert/kernel_registry.h"
#include "include/errorcode.h" #include "include/errorcode.h"

View File

@ -19,8 +19,8 @@
#include <vector> #include <vector>
#include "src/litert/lite_kernel.h" #include "src/litert/lite_kernel.h"
#include "nnacl/fp16_grad/activation_grad.h" #include "nnacl/fp16_grad/activation_grad_fp16.h"
#include "nnacl/fp32_grad/activation_grad.h" #include "nnacl/fp32_grad/activation_grad_fp32.h"
namespace mindspore::kernel { namespace mindspore::kernel {
class ActivationGradCPUKernelFp16 : public LiteKernel { class ActivationGradCPUKernelFp16 : public LiteKernel {

View File

@ -15,7 +15,7 @@
*/ */
#include "src/litert/kernel/cpu/fp32_grad/activation_grad.h" #include "src/litert/kernel/cpu/fp32_grad/activation_grad.h"
#include "nnacl/fp32_grad/activation_grad.h" #include "nnacl/fp32_grad/activation_grad_fp32.h"
#include "schema/model_generated.h" #include "schema/model_generated.h"
#include "src/litert/kernel_registry.h" #include "src/litert/kernel_registry.h"
#include "include/errorcode.h" #include "include/errorcode.h"

View File

@ -21,7 +21,7 @@
#include "src/common/log_adapter.h" #include "src/common/log_adapter.h"
#include "common/common_test.h" #include "common/common_test.h"
#include "src/common/file_utils.h" #include "src/common/file_utils.h"
#include "nnacl/fp16_grad/activation_grad.h" #include "nnacl/fp16_grad/activation_grad_fp16.h"
namespace mindspore { namespace mindspore {
class TestActGradFp16 : public mindspore::CommonTest { class TestActGradFp16 : public mindspore::CommonTest {

View File

@ -25,7 +25,7 @@
#include "mindspore/lite/src/tensor.h" #include "mindspore/lite/src/tensor.h"
#include "mindspore/lite/src/litert/kernel_exec.h" #include "mindspore/lite/src/litert/kernel_exec.h"
#include "mindspore/lite/src/litert/kernel/cpu/fp32_grad/activation_grad.h" #include "mindspore/lite/src/litert/kernel/cpu/fp32_grad/activation_grad.h"
#include "nnacl/fp32_grad/activation_grad.h" #include "nnacl/fp32_grad/activation_grad_fp32.h"
namespace mindspore { namespace mindspore {
class TestActGradFp32 : public mindspore::CommonTest { class TestActGradFp32 : public mindspore::CommonTest {

View File

@ -15,7 +15,7 @@
*/ */
#include "coder/opcoders/nnacl/fp32_grad/activation_grad_coder.h" #include "coder/opcoders/nnacl/fp32_grad/activation_grad_coder.h"
#include "nnacl/fp32_grad/activation_grad.h" #include "nnacl/fp32_grad/activation_grad_fp32.h"
#include "coder/opcoders/serializers/nnacl_serializer/nnacl_fp32_serializer.h" #include "coder/opcoders/serializers/nnacl_serializer/nnacl_fp32_serializer.h"
#include "coder/opcoders/file_collector.h" #include "coder/opcoders/file_collector.h"
@ -31,10 +31,10 @@ int ActivationGradCoder::DoCode(CoderContext *const context) {
int count = input_tensor_->ElementsNum(); int count = input_tensor_->ElementsNum();
Collect(context, Collect(context,
{ {
"nnacl/fp32_grad/activation_grad.h", "nnacl/fp32_grad/activation_grad_fp32.h",
}, },
{ {
"activation_grad.c", "activation_grad_fp32.c",
}); });
NNaclFp32Serializer code; NNaclFp32Serializer code;