We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61d003d commit 4e627a8Copy full SHA for 4e627a8
src/relax/op/tensor/index.cc
@@ -84,7 +84,7 @@ StructInfo InferStructInfoTake(const Call& call, const BlockBuilder& ctx) {
84
}();
85
86
if (indices_sinfo->IsUnknownDtype()) {
87
- LOG(WARNING) << "Data type of index has not been specified. Assume it has an integer type.";
+ LOG(WARNING) << "Data type of indices has not been specified. Assume it has an integer type.";
88
} else if (!(indices_sinfo->dtype.is_int() || indices_sinfo->dtype.is_uint())) {
89
ctx->ReportFatal(Diagnostic::Error(call)
90
<< "Take op requires the input indices to have integer dtype. However, the "
0 commit comments