Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rewrite 1x1 convolutions to gemm #3568

Open
wants to merge 19 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 13 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ add_library(migraphx
register_target.cpp
replace_allocate.cpp
rewrite_reduce.cpp
rewrite_dot.cpp
simplify_qdq.cpp
split_reduce.cpp
sqlite.cpp
Expand Down
20 changes: 20 additions & 0 deletions src/include/migraphx/rewrite_dot.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#ifndef MIGRAPHX_GUARD_MIGRAPHX_REWRITE_DOT_HPP
#define MIGRAPHX_GUARD_MIGRAPHX_REWRITE_DOT_HPP

#include <migraphx/config.hpp>
#include <string>

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {

struct module;

struct MIGRAPHX_EXPORT rewrite_dot
{
std::string name() const { return "rewrite_dot"; }
void apply(module& m) const;
};

} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx
#endif // MIGRAPHX_GUARD_MIGRAPHX_REWRITE_DOT_HPP
120 changes: 120 additions & 0 deletions src/rewrite_dot.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2015-2024 Advanced Micro Devices, Inc. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
*/
#include <migraphx/rewrite_dot.hpp>
#include <migraphx/module.hpp>
#include <migraphx/matcher.hpp>
#include <migraphx/make_op.hpp>
#include <migraphx/permutation.hpp>

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {

MIGRAPHX_DECLARE_ENV_VAR(MIGRAPHX_DISABLE_REWRITE_DOT);

namespace {

MIGRAPHX_PRED_MATCHER(conv_1x1, instruction_ref ins)
{
if(ins->name() != "convolution")
return false;
auto v = ins->get_operator().to_value();
if(not all_of(v.at("stride"), [](const value& x) { return x.to<std::size_t>() == 1; }))
return false;
if(not all_of(v.at("padding"), [](const value& x) { return x.to<std::size_t>() == 0; }))
return false;
if(not all_of(v.at("dilation"), [](const value& x) { return x.to<std::size_t>() == 1; }))
return false;
auto w = ins->inputs().at(1)->get_shape();
return std::all_of(w.lens().begin() + 2, w.lens().end(), [](std::size_t i) { return i == 1; });
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Might be worthwhile to have a 1x1x1 test case too since its allowed here to make sure it generalizes to the 3D case

}

struct find_1x1_convolution
{
auto matcher() const { return conv_1x1(match::arg(1)(match::is_constant())); }

void apply(module& m, const match::matcher_result& r) const
{
auto ins = r.result;

auto input = ins->inputs().front();
auto weights = ins->inputs().back();

std::vector<int64_t> sq_axes(ins->get_shape().ndim() - 2);
std::iota(sq_axes.begin(), sq_axes.end(), 2);
auto sq_weights =
m.insert_instruction(ins, make_op("squeeze", {{"axes", sq_axes}}), weights);

if(ins->get_shape().transposed())
{
std::vector<int64_t> aperm(ins->get_shape().ndim());
std::iota(aperm.begin(), aperm.end(), 0);
std::rotate(aperm.begin() + 1, aperm.begin() + 2, aperm.end());
auto a_mat =
m.insert_instruction(ins, make_op("transpose", {{"permutation", aperm}}), input);

auto transpose = m.insert_instruction(
ins, make_op("transpose", {{"permutation", {1, 0}}}), sq_weights);
auto b_lens = a_mat->get_shape().lens();
copy(transpose->get_shape().lens(), b_lens.end() - 2);
auto b_mat = m.insert_instruction(
ins, make_op("multibroadcast", {{"out_lens", b_lens}}), transpose);

auto dot = m.insert_instruction(ins, make_op("dot"), a_mat, b_mat);
m.replace_instruction(
ins, make_op("transpose", {{"permutation", invert_permutation(aperm)}}), dot);
}
else
{
auto batch_dim = ins->get_shape().lens().front();
auto m_dim = std::accumulate(input->get_shape().lens().begin() + 2,
input->get_shape().lens().end(),
1,
std::multiplies<>{});
auto n_dim = weights->get_shape().lens()[0];
auto k_dim = weights->get_shape().lens()[1];
auto a_mat = m.insert_instruction(
ins,
make_op("multibroadcast", {{"out_lens", {batch_dim, n_dim, k_dim}}}),
sq_weights);
auto b_mat = m.insert_instruction(
ins, make_op("reshape", {{"dims", {batch_dim, k_dim, m_dim}}}), input);
auto dot = m.insert_instruction(ins, make_op("dot"), a_mat, b_mat);
m.replace_instruction(
ins, make_op("reshape", {{"dims", ins->get_shape().lens()}}), dot);
}
}
};

} // namespace

void rewrite_dot::apply(module& m) const
{
if(enabled(MIGRAPHX_DISABLE_REWRITE_DOT{}))
return;
match::find_matches(m, find_1x1_convolution{});
}

} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx
11 changes: 8 additions & 3 deletions src/targets/gpu/fuse_mlir.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -275,13 +275,18 @@ auto is_mlir_dot(mlir_mode mode)
return true;
auto a = ins->inputs().front()->get_shape();
auto b = ins->inputs().back()->get_shape();
// auto m = a.lens()[a.lens().size() - 2];
// auto n = b.lens().back();
auto g = std::accumulate(a.lens().begin(), a.lens().end() - 2, 1, std::multiplies<>{});
auto m = a.lens()[a.lens().size() - 2];
auto n = b.lens().back();
auto k = a.lens().back();
// Skipping GEMMs with a K dimension greater than 2048 is a course-grained strategy
// to avoid poor-performing GEMM kernels from MLIR
// To-do: Investigate a more precise strategy
return k <= 1024;
if (k > 1535)
return false;
if (k < 1024)
return true;
return (g*m*n) < (384*384);
});
}

Expand Down
2 changes: 2 additions & 0 deletions src/targets/gpu/target.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
#include <migraphx/promote_literals.hpp>
#include <migraphx/register_target.hpp>
#include <migraphx/replace_allocate.hpp>
#include <migraphx/rewrite_dot.hpp>
#include <migraphx/rewrite_gelu.hpp>
#include <migraphx/rewrite_low_precision.hpp>
#include <migraphx/rewrite_pooling.hpp>
Expand Down Expand Up @@ -191,6 +192,7 @@ std::vector<pass> target::get_passes(migraphx::context& gctx, const compile_opti
dead_code_elimination{},
rewrite_reduce{},
rewrite_low_precision{},
rewrite_dot{},
dead_code_elimination{},
optimize_module{},
fuse_pointwise_reduce{},
Expand Down
77 changes: 77 additions & 0 deletions test/rewrite_dot.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@

#include <migraphx/rewrite_dot.hpp>
#include <migraphx/pass_manager.hpp>
#include <migraphx/module.hpp>
#include <migraphx/make_op.hpp>
#include <migraphx/generate.hpp>
#include <migraphx/dead_code_elimination.hpp>
#include <test.hpp>

void run_pass(migraphx::module& m)
{
migraphx::run_passes(m, {migraphx::rewrite_dot{}, migraphx::dead_code_elimination{}});
}

TEST_CASE(nchw_conv_1x1)
{
migraphx::shape s1{migraphx::shape::float_type, {64, 128, 28, 28}};
migraphx::shape s2{migraphx::shape::float_type, {512, 128, 1, 1}};
migraphx::module m1;
{
auto x = m1.add_parameter("x", s1);
auto w = m1.add_literal(migraphx::generate_literal(s2));
auto conv = m1.add_instruction(migraphx::make_op("convolution"), x, w);
m1.add_return({conv});
}
run_pass(m1);
migraphx::module m2;
{
auto x = m2.add_parameter("x", s1);
auto w = m2.add_literal(migraphx::generate_literal(s2));
auto squeeze = m2.add_instruction(migraphx::make_op("squeeze", {{"axes", {2, 3}}}), w);
auto broadcast = m2.add_instruction(
migraphx::make_op("multibroadcast", {{"out_lens", {64, 512, 128}}}), squeeze);
auto reshape1 =
m2.add_instruction(migraphx::make_op("reshape", {{"dims", {64, 128, 784}}}), x);
auto dot = m2.add_instruction(migraphx::make_op("dot"), broadcast, reshape1);
auto reshape2 =
m2.add_instruction(migraphx::make_op("reshape", {{"dims", {64, 512, 28, 28}}}), dot);
m2.add_return({reshape2});
}
EXPECT(m1.sort() == m2.sort());
}

TEST_CASE(nhwc_conv_1x1)
{
auto s1 = migraphx::shape::from_permutation(
migraphx::shape::float_type, {64, 128, 28, 28}, {0, 2, 3, 1});
auto s2 = migraphx::shape::from_permutation(
migraphx::shape::float_type, {512, 128, 1, 1}, {0, 2, 3, 1});
migraphx::module m1;
{
auto x = m1.add_parameter("x", s1);
auto w = m1.add_literal(migraphx::generate_literal(s2));
auto conv = m1.add_instruction(migraphx::make_op("convolution"), x, w);
m1.add_return({conv});
}
run_pass(m1);
migraphx::module m2;
{
auto x = m2.add_parameter("x", s1);
auto w = m2.add_literal(migraphx::generate_literal(s2));
auto squeeze = m2.add_instruction(migraphx::make_op("squeeze", {{"axes", {2, 3}}}), w);
auto transpose1 =
m2.add_instruction(migraphx::make_op("transpose", {{"permutation", {1, 0}}}), squeeze);
auto broadcast = m2.add_instruction(
migraphx::make_op("multibroadcast", {{"out_lens", {64, 28, 128, 512}}}), transpose1);
auto transpose2 =
m2.add_instruction(migraphx::make_op("transpose", {{"permutation", {0, 2, 3, 1}}}), x);
auto dot = m2.add_instruction(migraphx::make_op("dot"), transpose2, broadcast);
auto transpose3 = m2.add_instruction(
migraphx::make_op("transpose", {{"permutation", {0, 3, 1, 2}}}), dot);
m2.add_return({transpose3});
}
EXPECT(m1.sort() == m2.sort());
}

int main(int argc, const char* argv[]) { test::run(argc, argv); }
Loading