-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
172 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
paddle/phi/core/distributed/auto_parallel/dist_meta_tensor.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* Copyright (c) 2023 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 "paddle/phi/core/distributed/auto_parallel/dist_meta_tensor.h" | ||
|
||
#include "paddle/phi/core/distributed/auto_parallel/dist_tensor.h" | ||
|
||
namespace phi { | ||
namespace distributed { | ||
|
||
phi::DDim DistMetaTensor::dims() const { | ||
// member values in tensor_ have higher priority than those in DistMetaTensor | ||
if (tensor_ != nullptr) { | ||
PADDLE_ENFORCE_EQ(this->is_dist(), | ||
true, | ||
phi::errors::InvalidArgument( | ||
"The current MetaTensor doesn't contains " | ||
"DistTensor when call `dist_attr` method.")); | ||
return MetaTensor::dims(); | ||
} else { | ||
return dims_; | ||
} | ||
} | ||
|
||
const distributed::TensorDistAttr& DistMetaTensor::dist_attr() const { | ||
// member values in tensor_ have higher priority than those in DistMetaTensor | ||
if (tensor_ != nullptr) { | ||
PADDLE_ENFORCE_EQ(this->is_dist(), | ||
true, | ||
phi::errors::InvalidArgument( | ||
"The current MetaTensor doesn't contains " | ||
"DistTensor when call `dist_attr` method.")); | ||
return static_cast<phi::distributed::DistTensor*>(tensor_)->dist_attr(); | ||
} else { | ||
return dist_attr_; | ||
} | ||
} | ||
|
||
} // namespace distributed | ||
} // namespace phi |
68 changes: 68 additions & 0 deletions
68
paddle/phi/core/distributed/auto_parallel/dist_meta_tensor.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* Copyright (c) 2023 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 "paddle/phi/core/distributed/auto_parallel/dist_attr.h" | ||
#include "paddle/phi/core/meta_tensor.h" | ||
|
||
namespace phi { | ||
namespace distributed { | ||
|
||
class DistMetaTensor : public MetaTensor { | ||
public: | ||
// supporting implicit construction is easier to use | ||
DistMetaTensor(TensorBase* tensor) // NOLINT | ||
: MetaTensor(tensor) {} | ||
DistMetaTensor(const TensorBase& tensor) // NOLINT | ||
: MetaTensor(tensor) {} | ||
DistMetaTensor(const TensorBase* tensor) // NOLINT | ||
: MetaTensor(tensor) {} | ||
DistMetaTensor(TensorBase& tensor) // NOLINT | ||
: MetaTensor(tensor) {} | ||
// For static mode only | ||
DistMetaTensor(const phi::DDim& dims, const TensorDistAttr& dist_attr) | ||
: dims_(dims), dist_attr_(dist_attr) {} | ||
|
||
DistMetaTensor(DistMetaTensor&&) = default; | ||
DistMetaTensor& operator=(DistMetaTensor&&) = default; | ||
DistMetaTensor(const DistMetaTensor&) = default; | ||
DistMetaTensor& operator=(const DistMetaTensor&) = default; | ||
|
||
virtual ~DistMetaTensor() = default; | ||
|
||
DDim dims() const override; | ||
|
||
const distributed::TensorDistAttr& dist_attr() const; | ||
|
||
private: | ||
/** | ||
* Note: When using the semi-automatic parallel segmentation derivation rules | ||
* of the static graph, in order to facilitate the packaging of the input | ||
* parameters of the construction, the DistMetaTensor is inherited and | ||
* encapsulated, and the class members dims_ and dist_attr_ are added to it. | ||
* | ||
* The information contained in these two members is also in the tensor of the | ||
* meta_tensor of the base class, and there is redundancy. | ||
* | ||
* We need to pay attention when using it to ensure the consistency. | ||
* These two members are read-only, and their values cannot be changed | ||
* after construction. To change their values, they need to be set | ||
* directly in tensor_*/ | ||
phi::DDim dims_; | ||
TensorDistAttr dist_attr_; | ||
}; | ||
|
||
} // namespace distributed | ||
} // namespace phi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.