Home
last modified time | relevance | path

Searched refs:quant_clusters (Results 1 – 7 of 7) sorted by relevance

/third_party/mindspore/mindspore/lite/micro/coder/wrapper/fp32/
Ddequant_int8_to_fp32_wrapper.c61 float *quant_clusters = de_quant_arg->clusters; in DequantDataPerTensor() local
66 if (quant_clusters != NULL) { in DequantDataPerTensor()
70 de_quant_dst[j] = quant_clusters[quant_data - INT8_MIN]; in DequantDataPerTensor()
/third_party/mindspore/mindspore/lite/src/
Dweight_decoder.h191 auto quant_clusters = input_tensor->quant_clusters(); variable
196 if (!quant_clusters.empty()) {
Dlite_session.cc125 auto quant_clusters = src_tensor->quantClusters(); in ConvertTensorsQuantParam() local
126 if (quant_clusters != nullptr) { in ConvertTensorsQuantParam()
128 for (size_t j = 0; j < quant_clusters->size(); j++) { in ConvertTensorsQuantParam()
129 clusters.push_back(quant_clusters->Get(j)); in ConvertTensorsQuantParam()
Dtensor.h174 std::vector<float> quant_clusters() const;
Dtensor.cc372 std::vector<float> Tensor::quant_clusters() const { return this->quant_clusters_; } in quant_clusters() function in mindspore::lite::Tensor
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/control/
Dtensorlist_setitem.cc120 dst->set_quant_clusters(input2_->quant_clusters()); in Run()
/third_party/mindspore/mindspore/lite/src/train/
Dtrain_export.cc173 tensorT->quantClusters = tensor->quant_clusters(); in CreateTensor()