Home
last modified time | relevance | path

Searched refs:DoExecute (Results 1 – 25 of 98) sorted by relevance

1234

/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/fp32/
Darithmetic_fp32.cc251 int ArithmeticCPUKernel::DoExecute(const void *input0, const void *input1, void *output, int size, … in DoExecute() function in mindspore::kernel::ArithmeticCPUKernel
285 … return DoExecute(static_cast<uint8_t *>(input0) + offset, static_cast<uint8_t *>(input1) + offset, in BroadcastRun()
328 …ret = DoExecute(static_cast<uint8_t *>(input0_ptr_) + offset0, static_cast<uint8_t *>(input1_ptr_)… in BatchScalarCalc()
355 … ret = DoExecute(static_cast<uint8_t *>(input0_ptr_) + offset, static_cast<uint8_t *>(input1_ptr_), in BiasCalc()
364 … ret = DoExecute(static_cast<uint8_t *>(input0_ptr_), static_cast<uint8_t *>(input1_ptr_) + offset, in BiasCalc()
387 return DoExecute(input0_ptr_, static_cast<uint8_t *>(input1_ptr_) + offset, in DoArithmetic()
390 return DoExecute(static_cast<uint8_t *>(input0_ptr_) + offset, input1_ptr_, in DoArithmetic()
412 …return DoExecute(static_cast<uint8_t *>(input0_ptr_) + offset, static_cast<uint8_t *>(input1_ptr_)… in DoArithmetic()
Dconvolution_depthwise_fp32.cc63 int ConvolutionDepthwiseCPUKernel::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::ConvolutionDepthwiseCPUKernel
71 auto ret = conv_dw->DoExecute(task_id); in ConvDwRun()
Droi_pooling_fp32.cc84 int ROIPoolingCPUKernel::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::ROIPoolingCPUKernel
101 auto ret = Data->DoExecute(task_id); in ROIPoolingRun()
Dbatchnorm_fp32.cc108 int BatchnormCPUKernel::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::BatchnormCPUKernel
121 auto ret = kernel->DoExecute(task_id); in BatchNormRun()
Dconvolution_depthwise_3x3_fp32.cc59 int ConvolutionDepthwise3x3CPUKernel::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::ConvolutionDepthwise3x3CPUKernel
77 auto ret = conv_dw->DoExecute(task_id); in ConvDw3x3Run()
Darithmetic_self_fp32.cc73 int ArithmeticSelfCPUKernel::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::ArithmeticSelfCPUKernel
112 auto ret = kernel->DoExecute(task_id); in ArithmeticSelfRun()
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/fp16/
Dcrop_fp16.cc35 int CropFp16CPUKernel::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::CropFp16CPUKernel
42 auto ret = g_kernel->DoExecute(task_id); in CropFp16Run()
Dconvolution_depthwise_fp16.cc90 int ConvolutionDepthwiseFp16CPUKernel::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::ConvolutionDepthwiseFp16CPUKernel
106 auto ret = conv_dw_fp16->DoExecute(task_id); in ConvDwFp16Run()
Dstack_fp16.cc86 int StackFp16CPUKernel::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::StackFp16CPUKernel
102 if (stack->DoExecute(task_id) != RET_OK) { in StackRun()
Dconvolution_depthwise_3x3_fp16.cc97 int ConvolutionDepthwise3x3Fp16CPUKernel::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::ConvolutionDepthwise3x3Fp16CPUKernel
111 auto ret = conv_dw->DoExecute(task_id); in ConvDw3x3Fp16Run()
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/int8/
Dcrop_int8.cc60 crop->DoExecute(task_id); in CropInt8Run()
64 void CropInt8CPUKernel::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::CropInt8CPUKernel
Dl2_norm_int8.cc53 auto ret = kernel->DoExecute(task_id); in L2NormInt8Run()
73 int L2NormInt8CPUKernel::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::L2NormInt8CPUKernel
Dreshape_int8.cc69 if (reshape->DoExecute(task_id) != RET_OK) { in ReshapeInt8Run()
75 int ReshapeInt8CPUKernel::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::ReshapeInt8CPUKernel
Dsqueeze_int8.cc101 Squeeze->DoExecute(task_id); in SqueezeInt8Run()
105 void SqueezeInt8CPUKernel::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::SqueezeInt8CPUKernel
Dleaky_relu_int8.cc35 auto ret = relu->DoExecute(task_id); in LeakyReluInt8Run()
121 int LeakyReluInt8CPUKernel::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::LeakyReluInt8CPUKernel
Ddiv_int8.cc74 int DivInt8CPUKernel::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::DivInt8CPUKernel
101 auto ret = div_kernel->DoExecute(task_id); in DivInt8Run()
Dconvolution_depthwise_int8.cc120 int ConvolutionDepthwiseInt8CPUKernel::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::ConvolutionDepthwiseInt8CPUKernel
129 auto ret = conv_dw_int8->DoExecute(task_id); in ConvDwInt8Run()
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/fp16_grad/
Ddropout_fp16_grad.cc64 int DropoutGradCPUKernelFp16::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::DropoutGradCPUKernelFp16
84 auto error_code = dropout->DoExecute(task_id); in RunDropoutFp16Grad()
Dbias_fp16_grad.cc59 int BiasGradCPUKernelFp16::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::BiasGradCPUKernelFp16
85 auto error_code = bias_kernel->DoExecute(task_id); in BiasGradFp16Run()
Dunsorted_segment_sum_fp16.cc66 auto error_code = kernel->DoExecute(task_id); in UnsortedSegmentSumFp16Run()
83 int UnsortedSegmentSumCPUKernelFp16::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::UnsortedSegmentSumCPUKernelFp16
Dresize_fp16_grad.cc65 int ResizeGradCPUKernelFp16::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::ResizeGradCPUKernelFp16
94 auto error_code = resize_grad_kernel->DoExecute(task_id); in ResizeFp16GradRun()
Dstrided_slice_fp16_grad.cc120 auto error_code = slice->DoExecute(task_id); in StridedSliceFp16GradImpl()
137 int StridedSliceGradCPUKernelFp16::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::StridedSliceGradCPUKernelFp16
Dlayernorm_fp16_grad.cc86 int LayerNormGradCPUKernelFp16::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::LayerNormGradCPUKernelFp16
120 auto error_code = ln_kernel->DoExecute(task_id); in LayerNormF16GradRun()
Dpooling_fp16_grad.cc75 int PoolingGradCPUKernelFp16::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::PoolingGradCPUKernelFp16
105 auto error_code = pooling->DoExecute(task_id); in PoolingFp16GradImpl()
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/base/
Dconstant_of_shape.cc32 auto ret = g_kernel->DoExecute(task_id); in ConstantOfShapeRun()
40 int ConstantOfShapeCPUKernel::DoExecute(int task_id) { in DoExecute() function in mindspore::kernel::ConstantOfShapeCPUKernel

1234