"git@developer.sourcefind.cn:gaoqiong/migraphx.git" did not exist on "b263cfa0ad4485c7588b7cf292c7bfa2b8e95a68"
Commit fa4f5244 authored by Shucai Xiao's avatar Shucai Xiao
Browse files

refine an error message.

parent 6747beec
......@@ -919,7 +919,7 @@ struct dot
std::size_t dim_0 = a_lens.size() - 2;
std::size_t dim_1 = a_lens.size() - 1;
if(a_lens[dim_1] != b_lens[dim_0])
MIGRAPHX_THROW("Inner dimensions do not match, operand A: {" +
MIGRAPHX_THROW("DOT: inner dimensions do not match, operand A: {" +
to_string_range(a_lens) + "}, operand B: {" +
to_string_range(b_lens) + "}");
out_lens[dim_1] = b_lens[dim_1];
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment