Unverified Commit 95e93430 authored by Anthony Chang's avatar Anthony Chang Committed by GitHub
Browse files

Hotfix for gemm test (#214)

* pass by ref to avoid throwing away initialization results

* EOL CRLF -> LF
parent 3956085d
......@@ -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)
......
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