Home
last modified time | relevance | path

Searched defs:TensorStatData (Results 1 – 2 of 2) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/debug/debugger/offline_debug/
Ddbg_services.h134 struct TensorStatData { struct
135TensorStatData(uint64_t data_size, int dtype, const std::vector<int64_t> &shape, bool is_bool, dou… in TensorStatData() argument
153 const uint64_t data_size() const { return data_size_; } in data_size()
154 const int dtype() const { return dtype_; } in dtype()
155 const std::vector<int64_t> &shape() const { return shape_; } in shape()
156 const bool is_bool() const { return is_bool_; } in is_bool()
157 const double max_value() const { return max_value_; } in max_value()
158 const double min_value() const { return min_value_; } in min_value()
159 const double avg_value() const { return avg_value_; } in avg_value()
160 const int count() const { return count_; } in count()
[all …]
/third_party/mindspore/mindspore/offline_debug/
Ddbg_services.py700 class TensorStatData: class