Commit 2012bbf7 authored by Paul's avatar Paul
Browse files

Some cleanup

parent 6c27e905
...@@ -104,7 +104,6 @@ struct miopen_apply ...@@ -104,7 +104,6 @@ struct miopen_apply
add_extend_op("scatter_none"); add_extend_op("scatter_none");
add_extend_op("topk"); add_extend_op("topk");
add_convolution_op("convolution");
add_convolution_op("convolution"); add_convolution_op("convolution");
add_convolution_op("deconvolution"); add_convolution_op("deconvolution");
add_convolution_op("quant_convolution"); add_convolution_op("quant_convolution");
...@@ -237,9 +236,6 @@ struct miopen_apply ...@@ -237,9 +236,6 @@ struct miopen_apply
void add_convolution_op(const std::string& name) void add_convolution_op(const std::string& name)
{ {
apply_map.emplace(name, [=](instruction_ref ins) { apply_map.emplace(name, [=](instruction_ref ins) {
// auto&& op = any_cast<op::convolution>(ins->get_operator());
// TODO: Use make_op
operation conv = make_op( operation conv = make_op(
"gpu::" + name, "gpu::" + name,
{{"op", ins->get_operator().to_value()}, {"int8_x4_format", int8_x4_format}}); {{"op", ins->get_operator().to_value()}, {"int8_x4_format", int8_x4_format}});
......
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