Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
gaoqiong
MIGraphX
Commits
8255ddc0
Commit
8255ddc0
authored
Aug 06, 2019
by
Shucai Xiao
Browse files
fix an error message
parent
490a9432
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/targets/gpu/quant_gemm.cpp
src/targets/gpu/quant_gemm.cpp
+1
-1
No files found.
src/targets/gpu/quant_gemm.cpp
View file @
8255ddc0
...
@@ -73,7 +73,7 @@ void rocblas_quant_gemm::batch_not_transposed(const std::vector<std::size_t>& st
...
@@ -73,7 +73,7 @@ void rocblas_quant_gemm::batch_not_transposed(const std::vector<std::size_t>& st
return
(
i
<
j
or
i
<
matrix_size
or
j
<
matrix_size
);
return
(
i
<
j
or
i
<
matrix_size
or
j
<
matrix_size
);
})
!=
batch
.
end
())
})
!=
batch
.
end
())
{
{
MIGRAPHX_THROW
(
"DOT: batch size {"
+
to_string_range
(
strides
)
+
"} is transposed!"
);
MIGRAPHX_THROW
(
"
QUANT_
DOT: batch size {"
+
to_string_range
(
strides
)
+
"} is transposed!"
);
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment