Commit 707d6261 authored by Alan Turner's avatar Alan Turner
Browse files

Add int32 to fused types with lowered scalarspervector

parent d7173bc6
......@@ -111,6 +111,11 @@ Solution Problem::MakeSolution(std::size_t idx, const std::string& arch) const
{
params[params.size() - 3] = "4";
}
if(EDataType == DataType::Int32 or std::any_of(
DsDataType.begin(), DsDataType.end(), [](auto t) { return t == DataType::Int32; }))
{
params[params.size() - 3] = "4";
}
}
params[a_elementwise_op_idx] = AElementOp;
......
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