/* Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #include #include #include "glog/logging.h" #include "gtest/gtest.h" #include "paddle/fluid/distributed/auto_parallel/dist_attr.h" #include "paddle/fluid/framework/block_desc.h" #include "paddle/fluid/framework/op_desc.h" #include "paddle/fluid/framework/program_desc.h" #include "paddle/fluid/framework/var_desc.h" namespace paddle { namespace distributed { namespace auto_parallel { TEST(DistAttr, ctor) { ProgramDesc program; auto* global_block = program.MutableBlock(0); auto* x = global_block->Var("X"); x->SetType(framework::proto::VarType::LOD_TENSOR); x->SetLoDLevel(0); x->SetDataType(framework::proto::VarType::FP32); x->SetShape({1000, 784}); auto* y = global_block->Var("Y"); y->SetType(framework::proto::VarType::LOD_TENSOR); y->SetLoDLevel(0); y->SetDataType(framework::proto::VarType::FP32); y->SetShape({784, 100}); auto* op = global_block->AppendOp(); op->SetType("mul"); op->SetInput("X", {x->Name()}); op->SetInput("Y", {y->Name()}); auto* out = global_block->Var("Out"); out->SetType(framework::proto::VarType::LOD_TENSOR); out->SetShape({1000, 100}); op->SetOutput("Out", {out->Name()}); std::vector shape = {2, 4}; std::vector process_ids = {0, 1, 2, 3, 4, 5, 6, 7}; std::vector dim_names = {"x", "y"}; ProcessMesh process_mesh(shape, process_ids, dim_names); std::vector shape2 = {2, 2}; std::vector process_ids2 = {0, 1, 2, 3}; std::vector dim_names2 = {"a", "b"}; ProcessMesh process_mesh2(shape2, process_ids2, dim_names2); TensorDistAttr x_dist_attr(*x), y_dist_attr(*y), out_dist_attr(*out); x_dist_attr.set_process_mesh(process_mesh); x_dist_attr.set_dims_mapping(std::vector({0, -1})); x_dist_attr.set_batch_dim(0); x_dist_attr.set_dynamic_dims(std::vector({true, false})); x_dist_attr.annotate("process_mesh"); x_dist_attr.annotate("dims_mapping"); EXPECT_EQ(x_dist_attr.process_mesh(), process_mesh); EXPECT_EQ(x_dist_attr.dims_mapping(), std::vector({0, -1})); EXPECT_EQ(x_dist_attr.batch_dim(), 0); EXPECT_EQ(x_dist_attr.dynamic_dims(), std::vector({true, false})); EXPECT_EQ(x_dist_attr.is_annotated("process_mesh"), true); EXPECT_EQ(x_dist_attr.is_annotated("dims_mapping"), true); EXPECT_EQ(x_dist_attr.verify(), true); std::stringstream x_sstream; x_sstream << x_dist_attr; EXPECT_EQ(x_sstream.str(), x_dist_attr.to_string()); auto x_proto = x_dist_attr.to_proto(); TensorDistAttr new_x_dist_attr = TensorDistAttr::from_proto(x_proto); EXPECT_EQ(x_dist_attr, new_x_dist_attr); // new_x_dist_attr is not valid since it does not bind to an var_desc EXPECT_EQ(new_x_dist_attr.verify(), false); y_dist_attr.set_process_mesh(process_mesh); y_dist_attr.set_dims_mapping(std::vector({-1, 0})); y_dist_attr.set_batch_dim(-1); y_dist_attr.set_dynamic_dims(std::vector({false, true})); x_dist_attr.annotate("batch_dim"); x_dist_attr.annotate("dynamic_dims"); EXPECT_EQ(y_dist_attr.process_mesh(), process_mesh); EXPECT_EQ(y_dist_attr.dims_mapping(), std::vector({-1, 0})); EXPECT_EQ(y_dist_attr.batch_dim(), 1); EXPECT_EQ(y_dist_attr.dynamic_dims(), std::vector({false, true})); EXPECT_EQ(x_dist_attr.is_annotated("batch_dim"), true); EXPECT_EQ(x_dist_attr.is_annotated("dynamic_dims"), true); EXPECT_EQ(x_dist_attr.verify(), true); out_dist_attr.set_process_mesh(process_mesh); out_dist_attr.set_dims_mapping(std::vector({0, 1})); out_dist_attr.set_batch_dim(1); out_dist_attr.set_dynamic_dims(std::vector({false, false})); EXPECT_EQ(out_dist_attr.process_mesh(), process_mesh); EXPECT_EQ(out_dist_attr.dims_mapping(), std::vector({0, 1})); EXPECT_EQ(out_dist_attr.batch_dim(), 1); EXPECT_EQ(out_dist_attr.dynamic_dims(), std::vector({false, false})); EXPECT_EQ(out_dist_attr.verify(), true); OperatorDistAttr mul_dist_attr(*op); mul_dist_attr.set_input_dist_attr(x->Name(), x_dist_attr); mul_dist_attr.set_input_dist_attr(y->Name(), y_dist_attr); mul_dist_attr.set_output_dist_attr(out->Name(), out_dist_attr); mul_dist_attr.set_process_mesh(process_mesh2); mul_dist_attr.set_impl_type("dist_mul"); mul_dist_attr.set_impl_idx(0); mul_dist_attr.annotate("process_mesh"); mul_dist_attr.annotate("impl_type"); mul_dist_attr.annotate("impl_idx"); EXPECT_NE(mul_dist_attr.input_dist_attr(x->Name()), x_dist_attr); EXPECT_NE(mul_dist_attr.input_dist_attr(y->Name()), y_dist_attr); EXPECT_NE(mul_dist_attr.output_dist_attr(out->Name()), out_dist_attr); EXPECT_EQ(mul_dist_attr.process_mesh(), process_mesh2); EXPECT_EQ(mul_dist_attr.input_dist_attr(x->Name()).process_mesh(), process_mesh2); EXPECT_EQ(mul_dist_attr.input_dist_attr(y->Name()).process_mesh(), process_mesh2); EXPECT_EQ(mul_dist_attr.impl_type(), "dist_mul"); EXPECT_EQ(mul_dist_attr.impl_idx(), 0); EXPECT_EQ(mul_dist_attr.is_annotated("process_mesh"), true); EXPECT_EQ(mul_dist_attr.is_annotated("impl_type"), true); EXPECT_EQ(mul_dist_attr.is_annotated("impl_idx"), true); EXPECT_EQ(mul_dist_attr.verify(), true); std::stringstream mul_sstream; mul_sstream << mul_dist_attr; EXPECT_EQ(mul_sstream.str(), mul_dist_attr.to_string()); auto mul_proto = mul_dist_attr.to_proto(); OperatorDistAttr new_mul_dist_attr = OperatorDistAttr::from_proto(mul_proto); EXPECT_EQ(mul_dist_attr, new_mul_dist_attr); // new_mul_dist_attr is not valid since it does not bind to an op_desc EXPECT_EQ(new_mul_dist_attr.verify(), false); } } // namespace auto_parallel } // namespace distributed } // namespace paddle