Home
last modified time | relevance | path

Searched refs:CopyData (Results 1 – 8 of 8) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/fp32/
Dembedding_lookup_fp32.c34 int CopyData(float *input_data, const int *ids, float *output_data, int num, in CopyData() function
56 int ret = CopyData(input_data, ids, output_data, i, parameter); in EmbeddingLookup()
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/fp16/
Dconvolution_delegate_fp16.cc52 void *ConvolutionDelegateFP16CPUKernel::CopyData(const lite::Tensor *tensor) { in CopyData() function in mindspore::kernel::ConvolutionDelegateFP16CPUKernel
74 origin_weight_ = weight_tensor->data() != nullptr ? CopyData(weight_tensor) : nullptr; in Init()
77 origin_bias_ = CopyData(in_tensors_.at(kBiasIndex)); in Init()
Dconvolution_delegate_fp16.h42 void *CopyData(const lite::Tensor *tensor);
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/fp32/
Dconvolution_delegate_fp32.cc52 float *ConvolutionDelegateCPUKernel::CopyData(const lite::Tensor *tensor) { in CopyData() function in mindspore::kernel::ConvolutionDelegateCPUKernel
86 origin_weight_ = CopyData(in_tensors_.at(kWeightIndex)); in GetWeightData()
100 origin_bias_ = CopyData(in_tensors_.at(kBiasIndex)); in GetBiasData()
Dconvolution_delegate_fp32.h74 static float *CopyData(const lite::Tensor *tensor);
/third_party/mindspore/mindspore/core/ir/
Dtensor.cc101 std::unique_ptr<T[]> CopyData(const ShapeVector &shape, void *const data, TypeId data_type) { in CopyData() function
171 std::unique_ptr<T[]> CopyData(const ShapeVector &shape, void *const data, size_t data_len) { in CopyData() function
189 : ndim_(shape.size()), data_size_(SizeOf(shape)), data_(CopyData<T>(shape, data, data_len)) {} in TensorDataImpl()
192 … : ndim_(shape.size()), data_size_(SizeOf(shape)), data_(CopyData<T>(shape, data, data_type)) {} in TensorDataImpl()
/third_party/mesa3d/src/gallium/frontends/nine/
Dbasetexture9.h107 BOOL CopyData );
Dbasetexture9.c413 BOOL CopyData ) in NineBaseTexture9_CreatePipeResource() argument
449 if (old && CopyData) { /* Don't return without releasing old ! */ in NineBaseTexture9_CreatePipeResource()