Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
yangql
composable_kernel-1
Commits
95e93430
Unverified
Commit
95e93430
authored
Apr 29, 2022
by
Anthony Chang
Committed by
GitHub
Apr 29, 2022
Browse files
Hotfix for gemm test (#214)
* pass by ref to avoid throwing away initialization results * EOL CRLF -> LF
parent
3956085d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
340 additions
and
340 deletions
+340
-340
test/gemm/gemm_util.hpp
test/gemm/gemm_util.hpp
+340
-340
No files found.
test/gemm/gemm_util.hpp
View file @
95e93430
...
...
@@ -139,7 +139,7 @@ struct TestGemm
Tensor
<
CDataType
>
c_m_n_device_result
(
f_host_tensor_descriptor
(
params
.
M
,
params
.
N
,
params
.
StrideC
,
CLayout
{}));
auto
f_generate_tensor_value
=
[](
auto
desc
,
auto
type
)
{
auto
f_generate_tensor_value
=
[](
auto
&
desc
,
auto
type
)
{
using
dataType
=
decltype
(
type
);
if
(
std
::
is_same
<
dataType
,
int8_t
>::
value
)
...
...
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