forked from PaddlePaddle/Paddle
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ipu device manage Co-authored-by: Han <hanzhao@graphcore.ai> Co-authored-by: jianghaicheng <haichengj@graphcore.ai>
- Loading branch information
1 parent
ce3844e
commit 689feb4
Showing
20 changed files
with
273 additions
and
135 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
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,48 @@ | ||
/* 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 "paddle/fluid/framework/ipu/device.h" | ||
|
||
namespace paddle { | ||
namespace framework { | ||
namespace ipu { | ||
|
||
Device::Device(const popart::DeviceInfo& device_info) | ||
: id_(device_info.getId()), is_attached_(device_info.isAttached()) { | ||
popart::DeviceType popart_device_type = device_info.getType(); | ||
switch (popart_device_type) { | ||
case popart::DeviceType::IpuModel: | ||
device_type_ = DeviceType::IpuModel; | ||
break; | ||
case popart::DeviceType::Cpu: | ||
device_type_ = DeviceType::Cpu; | ||
break; | ||
case popart::DeviceType::Ipu: | ||
device_type_ = DeviceType::Ipu; | ||
break; | ||
case popart::DeviceType::OfflineIpu: | ||
device_type_ = DeviceType::OfflineIpu; | ||
break; | ||
case popart::DeviceType::Sim: | ||
device_type_ = DeviceType::Sim; | ||
break; | ||
default: | ||
PADDLE_THROW(platform::errors::InvalidArgument( | ||
"popart::DeviceType:Unsupported type %d", popart_device_type)); | ||
} | ||
} | ||
|
||
} // namespace ipu | ||
} // namespace framework | ||
} // namespace paddle |
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,44 @@ | ||
/* 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. */ | ||
|
||
#pragma once | ||
|
||
#include <popart/devicemanager.hpp> | ||
#include "paddle/fluid/platform/enforce.h" | ||
|
||
namespace paddle { | ||
namespace framework { | ||
namespace ipu { | ||
|
||
enum class DeviceType { IpuModel = 0, Cpu, Ipu, OfflineIpu, Sim }; | ||
|
||
class Device { | ||
public: | ||
Device() {} | ||
explicit Device(const popart::DeviceInfo& device_info); | ||
|
||
int getId() const { return id_; } | ||
bool isAttached() const { return is_attached_; } | ||
DeviceType getType() const { return device_type_; } | ||
|
||
private: | ||
int id_; | ||
bool is_attached_; | ||
DeviceType device_type_; | ||
/* TODO:: Add more elements in the future */ | ||
}; | ||
|
||
} // namespace ipu | ||
} // namespace framework | ||
} // namespace paddle |
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
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.