/* Copyright (c) 2021 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 "gtest/gtest.h" #include "paddle/fluid/distributed/fleet_executor/carrier.h" #include "paddle/fluid/distributed/fleet_executor/global_map.h" #include "paddle/fluid/distributed/fleet_executor/interceptor.h" #include "paddle/fluid/distributed/fleet_executor/message_bus.h" #include "paddle/fluid/distributed/fleet_executor/task_node.h" namespace paddle { namespace distributed { class StartInterceptor : public Interceptor { public: StartInterceptor(int64_t interceptor_id, TaskNode* node) : Interceptor(interceptor_id, node) { RegisterMsgHandle([this](const InterceptorMessage& msg) { NOP(msg); }); } void NOP(const InterceptorMessage& msg) { if (msg.message_type() == STOP) { stop_ = true; InterceptorMessage stop; stop.set_message_type(STOP); Send(1, stop); // stop 1, compute return; } std::cout << GetInterceptorId() << " recv msg from " << msg.src_id() << std::endl; } }; TEST(ComputeInterceptor, Compute) { std::string carrier_id = "0"; Carrier* carrier = GlobalMap::Create(carrier_id, carrier_id); carrier->Init(0, {{0, 0}, {1, 0}, {2, 0}}); auto msg_bus = std::make_shared(); msg_bus->Init(0, {{0, "127.0.0.0:0"}}, ""); carrier->SetMsgBus(msg_bus); // NOTE: don't delete, otherwise interceptor will use undefined node TaskNode* node_a = new TaskNode(0, 0, 0, 3, 0); // role, rank, task_id TaskNode* node_b = new TaskNode(0, 0, 1, 3, 0); TaskNode* node_c = new TaskNode(0, 0, 2, 3, 0); // a->b->c node_a->AddDownstreamTask(1, 3); node_b->AddUpstreamTask(0, 3); node_b->AddDownstreamTask(2); node_c->AddUpstreamTask(1); Interceptor* a = carrier->SetInterceptor(0, std::make_unique(0, node_a)); carrier->SetInterceptor(1, InterceptorFactory::Create("Compute", 1, node_b)); carrier->SetInterceptor(2, InterceptorFactory::Create("Compute", 2, node_c)); InterceptorMessage msg; msg.set_message_type(DATA_IS_READY); // test run three times a->Send(1, msg); a->Send(1, msg); a->Send(1, msg); carrier->Wait(); carrier->Release(); } } // namespace distributed } // namespace paddle