pytorch/test/cpp/tensorexpr/test_te_fuser_pass.cpp
Mikhail Zolotukhin bd8e38cd88 [TensorExpr] Fuser: check node inputs' device before merging the node into a fusion group. (#44241)
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/44241

Test Plan: Imported from OSS

Reviewed By: gmagogsfm

Differential Revision: D23554192

Pulled By: ZolotukhinM

fbshipit-source-id: fb03262520303152b83671603e08e7aecc24f5f2
2020-09-08 19:32:23 -07:00

291 lines
8.9 KiB
C++

#include <test/cpp/tensorexpr/test_base.h>
#include <torch/csrc/jit/codegen/fuser/interface.h>
#include <torch/csrc/jit/ir/ir.h>
#include <torch/csrc/jit/ir/irparser.h>
#include <torch/csrc/jit/passes/tensorexpr_fuser.h>
#include <torch/csrc/jit/tensorexpr/mem_arena.h>
#include <torch/csrc/jit/testing/file_check.h>
#include <sstream>
namespace torch {
namespace jit {
using namespace torch::jit::tensorexpr;
struct WithCPUFuser {
WithCPUFuser(bool val = true) : cpuFuserEnabled(canFuseOnCPU()) {
overrideCanFuseOnCPU(val);
}
~WithCPUFuser() {
overrideCanFuseOnCPU(cpuFuserEnabled);
}
bool cpuFuserEnabled;
};
void testFuserPass_1() {
WithCPUFuser cf;
KernelScope kernel_scope;
const auto graph_string = R"IR(
graph(%0 : Float(128:1, device=cpu),
%1 : Float(128:1, device=cpu)):
%12 : int = prim::Constant[value=1]()
%2.1 : Float(128:1, device=cpu) = aten::mul(%0, %1)
%2 : Float(128:1, device=cpu) = aten::mul(%2.1, %1)
%3 : Float(128:1, device=cpu) = aten::add_(%2, %1, %12)
%4 : Float(128:1, device=cpu) = aten::mul(%2, %1)
%5 : Float(128:1, device=cpu) = aten::add(%2, %4, %12)
return (%5))IR";
auto g = std::make_shared<Graph>();
torch::jit::parseIR(graph_string, g.get());
g->lint();
FuseTensorExprs(g);
// We should not be able to fuse across the in-place operation here.
testing::FileCheck()
.check("prim::TensorExprGroup_")
->check("aten::add_")
->check("prim::TensorExprGroup_")
->run(*g);
}
void testFuserPass_2() {
WithCPUFuser cf;
KernelScope kernel_scope;
const auto graph_string = R"IR(
graph(%0 : Float(128:1, device=cpu),
%1 : Float(128:1, device=cpu)):
%12 : int = prim::Constant[value=1]()
%a : Float(128:1, device=cpu) = aten::mul(%0, %1)
%b : Float(128:1, device=cpu) = aten::add(%0, %1, %12)
%c : Float(128:1, device=cpu) = aten::add_(%b, %1, %12)
%d : Float(128:1, device=cpu) = aten::mul(%c, %a)
return (%d))IR";
auto g = std::make_shared<Graph>();
torch::jit::parseIR(graph_string, g.get());
g->lint();
FuseTensorExprs(g);
// We should not be able to fuse across the in-place operation here.
testing::FileCheck()
.check("aten::add_")
->check("prim::TensorExprGroup_0")
->run(*g);
}
void testFuserPass_3() {
WithCPUFuser cf;
KernelScope kernel_scope;
const auto graph_string = R"IR(
graph(%x : Float(128:1, device=cpu),
%y : Float(128:1, device=cpu)):
%r : Float(128:1, device=cpu) = aten::mul(%x, %y)
return (%r))IR";
{
auto g = std::make_shared<Graph>();
torch::jit::parseIR(graph_string, g.get());
g->lint();
FuseTensorExprs(g, /* min_group_size= */ 2);
// We should not create a fusion group since its size would be too small
testing::FileCheck().check_not("prim::TensorExprGroup")->run(*g);
}
{
auto g = std::make_shared<Graph>();
torch::jit::parseIR(graph_string, g.get());
g->lint();
FuseTensorExprs(g, /* min_group_size= */ 1);
// We should create a fusion group since its size is above the threshold
testing::FileCheck().check("prim::TensorExprGroup")->run(*g);
}
}
void testFuserPass_0DimInput() {
KernelScope kernel_scope;
const auto graph_string = R"IR(
graph(%x : Float(device=cuda),
%y : Float(device=cuda)):
%one : int = prim::Constant[value=1]()
%a : Float(device=cuda) = aten::mul(%x, %y)
%b : Float(device=cuda) = aten::add(%x, %a, %one)
return (%b))IR";
auto g = std::make_shared<Graph>();
torch::jit::parseIR(graph_string, g.get());
g->lint();
FuseTensorExprs(g);
// We should not fuse 0-dim tensors
testing::FileCheck().check_not("prim::TensorExprGroup")->run(*g);
}
void testFuserPass_UnfusibleDevice() {
WithCPUFuser cf(false);
KernelScope kernel_scope;
const auto graph_string = R"IR(
graph(%x : Float(10:1, device=cpu),
%y : Float(10:1, device=cpu)):
%a : Float(10:1, device=cpu) = aten::mul(%x, %y)
return (%a))IR";
auto g = std::make_shared<Graph>();
torch::jit::parseIR(graph_string, g.get());
g->lint();
FuseTensorExprs(g, /* min_group_size= */ 1);
// Test that we're not starting fusion groups from nodes with unfusible device
testing::FileCheck().check_not("prim::TensorExprGroup")->run(*g);
}
void testFuserPass_UnknownShapes() {
WithCPUFuser cf;
KernelScope kernel_scope;
const auto graph_string = R"IR(
graph(%x : Tensor,
%y : Tensor):
%a : Tensor = aten::mul(%x, %y)
%b : Tensor = aten::mul(%x, %a)
return (%a))IR";
auto g = std::make_shared<Graph>();
torch::jit::parseIR(graph_string, g.get());
g->lint();
FuseTensorExprs(g);
// Test that we're not generating fusion groups when shapes are not known
testing::FileCheck().check_not("prim::TensorExprGroup")->run(*g);
}
void testFuserPass_Multidevice() {
{
WithCPUFuser cf;
KernelScope kernel_scope;
const auto graph_string = R"IR(
graph(%x : Float(10:1, device=cpu),
%y : Float(20:1, device=cpu),
%z : Float(30:1, device=cpu)):
%dim : int = prim::Constant[value=0]()
%xyz_list : Tensor[] = prim::ListConstruct(%x, %y, %z)
%cat : Tensor = aten::cat(%xyz_list, %dim)
return (%cat))IR";
auto g = std::make_shared<Graph>();
torch::jit::parseIR(graph_string, g.get());
g->lint();
FuseTensorExprs(g, /* min_group_size= */ 1);
// We should be able to fuse this
testing::FileCheck().check("prim::TensorExprGroup")->run(*g);
}
{
WithCPUFuser cf;
KernelScope kernel_scope;
const auto graph_string = R"IR(
graph(%x : Float(10:1, device=cpu),
%y : Float(20:1, device=cuda:0),
%z : Float(30:1, device=cpu)):
%dim : int = prim::Constant[value=0]()
%xyz_list : Tensor[] = prim::ListConstruct(%x, %y, %z)
%cat : Tensor = aten::cat(%xyz_list, %dim)
return (%cat))IR";
auto g = std::make_shared<Graph>();
torch::jit::parseIR(graph_string, g.get());
g->lint();
FuseTensorExprs(g, /* min_group_size= */ 1);
// We should not fuse this aten::cat since its inputs are from different
// devices
testing::FileCheck().check_not("prim::TensorExprGroup")->run(*g);
}
{
WithCPUFuser cf;
KernelScope kernel_scope;
const auto graph_string = R"IR(
graph(%x : Float(10:1, device=cpu),
%y : Float(20:1, device=cpu),
%z : Float(10:1, device=cuda:0)):
%dim : int = prim::Constant[value=0]()
%xy_list : Tensor[] = prim::ListConstruct(%x, %y)
%xy_cat : Tensor = aten::cat(%xy_list, %dim)
%r : Tensor = aten::mul(%xy_cat, %z)
return (%r))IR";
auto g = std::make_shared<Graph>();
torch::jit::parseIR(graph_string, g.get());
g->lint();
FuseTensorExprs(g, /* min_group_size= */ 2);
// Test that we check device before merging one node (cat) into another
// (mul)
testing::FileCheck().check_not("prim::TensorExprGroup")->run(*g);
}
{
WithCPUFuser cf;
KernelScope kernel_scope;
const auto graph_string = R"IR(
graph(%x : Float(10:1, device=cpu),
%y : Float(20:1, device=cpu),
%z : Float(10:1, device=cuda:0)):
%z2 : Tensor = aten::mul(%z, %z)
%dim : int = prim::Constant[value=0]()
%xy_list : Tensor[] = prim::ListConstruct(%x, %y, %z2)
%cat : Tensor = aten::cat(%xy_list, %dim)
return (%cat))IR";
auto g = std::make_shared<Graph>();
torch::jit::parseIR(graph_string, g.get());
g->lint();
FuseTensorExprs(g, /* min_group_size= */ 2);
// Test that we check device before merging one node (mul) into another
// (cat)
testing::FileCheck().check_not("prim::TensorExprGroup")->run(*g);
}
{
WithCPUFuser cf;
KernelScope kernel_scope;
const auto graph_string = R"IR(
graph(%x : Float(10:1, device=cpu),
%y : Float(20:1, device=cuda:0)):
%r : Tensor = aten::mul(%x, %y)
return (%r))IR";
auto g = std::make_shared<Graph>();
torch::jit::parseIR(graph_string, g.get());
g->lint();
FuseTensorExprs(g, /* min_group_size= */ 1);
// We should not fuse this graph since its inputs are from different devices
testing::FileCheck().check_not("prim::TensorExprGroup")->run(*g);
}
{
WithCPUFuser cf;
KernelScope kernel_scope;
const auto graph_string = R"IR(
graph(%x : Float(10:1, device=cuda:0),
%y : Float(20:1, device=cuda:1),
%z : Float(20:1, device=cpu)):
%x2 : Tensor = aten::mul(%x, %x)
%y2 : Tensor = aten::mul(%y, %y)
%z2 : Tensor = aten::mul(%z, %z)
return (%x2, %y2, %z2))IR";
auto g = std::make_shared<Graph>();
torch::jit::parseIR(graph_string, g.get());
g->lint();
FuseTensorExprs(g, /* min_group_size= */ 2);
// We should not fuse these two computations since they use different
// devices
testing::FileCheck().check_not("prim::TensorExprGroup")->run(*g);
}
}
} // namespace jit
} // namespace torch