Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/core/ir/
Dtensor.h67 auto this_data = static_cast<const uint8_t *>(const_data()); in equals() local
69 if (this_data == nullptr || other_data == nullptr) { in equals()
73 return (this_data == other_data) || (ndim() == other.ndim() && nbytes() == other.nbytes() && in equals()
74 std::equal(this_data, this_data + nbytes(), other_data)); in equals()