提交 6d0370d2 编写于 作者: C chengduoZH

fix warning

上级 0d751917
...@@ -86,10 +86,10 @@ class XeGradFunctor { ...@@ -86,10 +86,10 @@ class XeGradFunctor {
auto x_is_true_offset = sample_id * num_classes_ + label_[sample_id]; auto x_is_true_offset = sample_id * num_classes_ + label_[sample_id];
for (size_t x_offset = sample_id * num_classes_; for (size_t x_offset = sample_id * num_classes_;
x_offset < (sample_id + 1) * num_classes_; ++x_offset) { x_offset < (sample_id + 1) * num_classes_; ++x_offset) {
dx_[x_offset] = dx_[x_offset] = (x_offset != x_is_true_offset ||
(x_offset != x_is_true_offset || label_[sample_id] == ignore_index_) label_[sample_id] == static_cast<int64_t>(ignore_index_))
? static_cast<T>(0) ? static_cast<T>(0)
: -dy_[sample_id] / x_[x_offset]; : -dy_[sample_id] / x_[x_offset];
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册