Home
last modified time | relevance | path

Searched defs:QuantParam (Results 1 – 3 of 3) sorted by relevance

/third_party/mindspore/include/api/
Dtypes.h57 struct QuantParam { struct
58 int bit_num;
59 double scale;
60 int32_t zero_point;
/third_party/mindspore/mindspore/lite/mindir/include/
Dmindir_types.h22 struct QuantParam { struct
23 int32_t zeroPoint;
24 double scale;
25 int numBits;
/third_party/mindspore/mindspore/ccsrc/cxx_api/
Dtypes.cc446 void MSTensor::SetQuantParams(std::vector<QuantParam>) { MS_LOG_EXCEPTION << "Invalid implement."; } in SetQuantParams()