/* 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. */ #pragma once #include #include #include #include #include #include "paddle/fluid/distributed/auto_parallel/auto_parallel.pb.h" #include "paddle/fluid/distributed/auto_parallel/device_mesh.h" #include "paddle/fluid/distributed/auto_parallel/utils.h" #include "paddle/fluid/platform/enforce.h" namespace paddle { namespace distributed { namespace auto_parallel { class ProcessMesh { public: ProcessMesh() = default; ProcessMesh(const std::vector& shape, const std::vector& process_ids, const std::vector& dim_names); const std::vector& shape() const { return shape_; } const std::vector& process_ids() const { return process_ids_; } const std::vector& dim_names() const { return dim_names_; } int64_t size() const; int64_t ndim() const { return shape_.size(); } int64_t dim_size(int64_t dim) const { int64_t cdim = canonical_dim(dim, shape_.size()); return shape_[cdim]; } int64_t dim_size(const std::string& dim_name) const { for (std::size_t i = 0; i < dim_names_.size(); ++i) { if (dim_names_[i] == dim_name) { return shape_[i]; } } PADDLE_THROW(platform::errors::InvalidArgument( "Cannot find the dimension of %s in this process mesh.", dim_name)); } bool empty() const { return (shape_.empty() || process_ids_.empty()); } bool contains(int64_t process_id) const; // ProcessMesh from_string(const std::string& mesh_str); std::string to_string() const; static ProcessMesh from_proto(const ProcessMeshProto& proto); ProcessMeshProto to_proto() const; private: std::vector shape_; std::vector process_ids_; std::vector dim_names_; }; inline std::ostream& operator<<(std::ostream& os, const ProcessMesh& obj) { os << obj.to_string(); return os; } bool operator==(const ProcessMesh& lhs, const ProcessMesh& rhs); inline bool operator!=(const ProcessMesh& lhs, const ProcessMesh& rhs) { return !operator==(lhs, rhs); } } // namespace auto_parallel } // namespace distributed } // namespace paddle