Commit 98771471 authored by Jing Zhang's avatar Jing Zhang
Browse files

fixed CI

parent d81d5673
...@@ -20,7 +20,7 @@ using Row = ck::tensor_layout::gemm::RowMajor; ...@@ -20,7 +20,7 @@ using Row = ck::tensor_layout::gemm::RowMajor;
using Col = ck::tensor_layout::gemm::ColumnMajor; using Col = ck::tensor_layout::gemm::ColumnMajor;
using PassThrough = ck::tensor_operation::element_wise::PassThrough; using PassThrough = ck::tensor_operation::element_wise::PassThrough;
using AddBias = ck::tensor_operation::element_wise::AddBias; using Add = ck::tensor_operation::element_wise::Add;
using ADataType = F16; using ADataType = F16;
using BDataType = F16; using BDataType = F16;
...@@ -36,7 +36,7 @@ using ELayout = Row; ...@@ -36,7 +36,7 @@ using ELayout = Row;
using AElementOp = PassThrough; using AElementOp = PassThrough;
using BElementOp = PassThrough; using BElementOp = PassThrough;
using CDEElementOp = AddBias; using CDEElementOp = Add;
struct SimpleDeviceMem struct SimpleDeviceMem
{ {
......
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