forked from mindspore-Ecosystem/mindspore
remove redundant root()
This commit is contained in:
parent
9505f2adc5
commit
9649efb98a
|
@ -80,20 +80,26 @@ Status ToDevice::Init(std::shared_ptr<api::Dataset> d) {
|
||||||
Status ToDevice::Send() {
|
Status ToDevice::Send() {
|
||||||
std::unique_ptr<DataBuffer> db;
|
std::unique_ptr<DataBuffer> db;
|
||||||
RETURN_IF_NOT_OK(tree_adapter_->Launch());
|
RETURN_IF_NOT_OK(tree_adapter_->Launch());
|
||||||
RETURN_IF_NOT_OK(tree_adapter_->root()->GetNextBuffer(&db));
|
std::shared_ptr<DatasetOp> root = std::shared_ptr<DatasetOp>(tree_adapter_->GetRoot());
|
||||||
|
CHECK_FAIL_RETURN_UNEXPECTED(root != nullptr, "Root is a nullptr.");
|
||||||
|
RETURN_IF_NOT_OK(root->GetNextBuffer(&db));
|
||||||
return Status::OK();
|
return Status::OK();
|
||||||
}
|
}
|
||||||
|
|
||||||
Status ToDevice::Continue() {
|
Status ToDevice::Continue() {
|
||||||
// tree_.root() must be DeviceQueueOp
|
// tree_.root() must be DeviceQueueOp
|
||||||
DeviceQueueOp *op = dynamic_cast<DeviceQueueOp *>(tree_adapter_->root().get());
|
std::shared_ptr<DatasetOp> root = std::shared_ptr<DatasetOp>(tree_adapter_->GetRoot());
|
||||||
|
CHECK_FAIL_RETURN_UNEXPECTED(root != nullptr, "Root is a nullptr.");
|
||||||
|
DeviceQueueOp *op = dynamic_cast<DeviceQueueOp *>(root.get());
|
||||||
CHECK_FAIL_RETURN_UNEXPECTED(op != nullptr, "ContinueSend only supported by DeviceQueueOp");
|
CHECK_FAIL_RETURN_UNEXPECTED(op != nullptr, "ContinueSend only supported by DeviceQueueOp");
|
||||||
op->ContinueSend();
|
op->ContinueSend();
|
||||||
return Status::OK();
|
return Status::OK();
|
||||||
}
|
}
|
||||||
|
|
||||||
Status ToDevice::Stop() {
|
Status ToDevice::Stop() {
|
||||||
DeviceQueueOp *op = dynamic_cast<DeviceQueueOp *>(tree_adapter_->root().get());
|
std::shared_ptr<DatasetOp> root = std::shared_ptr<DatasetOp>(tree_adapter_->GetRoot());
|
||||||
|
CHECK_FAIL_RETURN_UNEXPECTED(root != nullptr, "Root is a nullptr.");
|
||||||
|
DeviceQueueOp *op = dynamic_cast<DeviceQueueOp *>(root.get());
|
||||||
CHECK_FAIL_RETURN_UNEXPECTED(op != nullptr, "StopSend only supported by DeviceQueueOp");
|
CHECK_FAIL_RETURN_UNEXPECTED(op != nullptr, "StopSend only supported by DeviceQueueOp");
|
||||||
op->StopSend();
|
op->StopSend();
|
||||||
return Status::OK();
|
return Status::OK();
|
||||||
|
|
|
@ -87,5 +87,10 @@ Status TreeAdapter::DFSBuildTree(std::shared_ptr<api::Dataset> ir, std::shared_p
|
||||||
return Status::OK();
|
return Status::OK();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Status TreeAdapter::Launch() const {
|
||||||
|
CHECK_FAIL_RETURN_UNEXPECTED(tree_ != nullptr, "Tree is a nullptr.");
|
||||||
|
return tree_->Launch();
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace dataset
|
} // namespace dataset
|
||||||
} // namespace mindspore
|
} // namespace mindspore
|
||||||
|
|
|
@ -57,9 +57,7 @@ class TreeAdapter {
|
||||||
// to be able to launch a thread. BuildAndPrepare needs to be called before this function
|
// to be able to launch a thread. BuildAndPrepare needs to be called before this function
|
||||||
TaskGroup *AllTasks() const { return tree_ != nullptr ? tree_->AllTasks() : nullptr; }
|
TaskGroup *AllTasks() const { return tree_ != nullptr ? tree_->AllTasks() : nullptr; }
|
||||||
|
|
||||||
std::shared_ptr<DatasetOp> root() { return tree_->root(); }
|
Status Launch() const;
|
||||||
|
|
||||||
Status Launch() const { return tree_->Launch(); }
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// This RECURSIVE function converts IR nodes into DatasetOp in ExecutionTree. IR could build a vector of ops. In
|
// This RECURSIVE function converts IR nodes into DatasetOp in ExecutionTree. IR could build a vector of ops. In
|
||||||
|
|
Loading…
Reference in New Issue