parent
7ab3f5c348
commit
691b0648e3
@ -0,0 +1,54 @@
|
||||
/**
|
||||
* Copyright 2020 Huawei Technologies Co., Ltd
|
||||
*
|
||||
* 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 "pre_activate/ascend/format_type/convert_unsupported_transnode_to_aicpu.h"
|
||||
#include <memory>
|
||||
#include "session/anf_runtime_algorithm.h"
|
||||
#include "kernel/kernel_build_info.h"
|
||||
#include "kernel/kernel_query.h"
|
||||
namespace mindspore {
|
||||
namespace opt {
|
||||
const BaseRef ConvertUnSupportNodeToAICPU::DefinePattern() const {
|
||||
VarPtr X = std::make_shared<Var>();
|
||||
VarPtr Xs = std::make_shared<SeqVar>();
|
||||
return VectorRef({X, Xs});
|
||||
}
|
||||
|
||||
const AnfNodePtr ConvertUnSupportNodeToAICPU::Process(const mindspore::FuncGraphPtr &,
|
||||
const mindspore::AnfNodePtr &node,
|
||||
const mindspore::EquivPtr &) const {
|
||||
if (node == nullptr || !node->isa<CNode>()) {
|
||||
return nullptr;
|
||||
}
|
||||
auto node_name = AnfAlgo::GetCNodeName(node);
|
||||
if (node_name != prim::KPrimTransData->name() || node_name != prim::kPrimCast->name()) {
|
||||
return nullptr;
|
||||
}
|
||||
auto kernel_builder_info = AnfAlgo::GetSelectKernelBuildInfo(node);
|
||||
if (supported_checker_->CheckAiCoreSupported(node, kernel_builder_info)) {
|
||||
return node;
|
||||
} else if (supported_checker_->CheckAiCpuSupported(node, kernel_builder_info)) {
|
||||
auto builder = std::make_shared<kernel::KernelBuildInfo::KernelBuildInfoBuilder>(kernel_builder_info);
|
||||
builder->SetKernelType(AICPU_KERNEL);
|
||||
AnfAlgo::SetSelectKernelBuildInfo(builder->Build(), node.get());
|
||||
} else {
|
||||
MS_LOG(EXCEPTION) << " kernel " << kernel_builder_info->ToString() << "is not supported in AiCPU & AiCore : node ["
|
||||
<< node->DebugString() << "]";
|
||||
}
|
||||
return node;
|
||||
}
|
||||
} // namespace opt
|
||||
} // namespace mindspore
|
@ -0,0 +1,37 @@
|
||||
/**
|
||||
* Copyright 2020 Huawei Technologies Co., Ltd
|
||||
*
|
||||
* 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 <memory>
|
||||
#include "pre_activate/common/optimizer.h"
|
||||
#include "pre_activate/ascend/ascend_helper.h"
|
||||
#ifndef MINDSPORE_CONVERT_UNSUPPORTED_NODE_TO_AICPU_H
|
||||
#define MINDSPORE_CONVERT_UNSUPPORTED_NODE_TO_AICPU_H
|
||||
namespace mindspore {
|
||||
namespace opt {
|
||||
class ConvertUnSupportNodeToAICPU : public PatternProcessPass {
|
||||
public:
|
||||
explicit ConvertUnSupportNodeToAICPU(bool multigraph = true)
|
||||
: PatternProcessPass("convert_unsupported_node_to_aicpu", multigraph),
|
||||
supported_checker_(std::make_shared<SupportedChecker>()) {}
|
||||
~ConvertUnSupportNodeToAICPU() override = default;
|
||||
const BaseRef DefinePattern() const override;
|
||||
const AnfNodePtr Process(const FuncGraphPtr &, const AnfNodePtr &, const EquivPtr &) const override;
|
||||
|
||||
private:
|
||||
SupportedCheckerPtr supported_checker_;
|
||||
};
|
||||
} // namespace opt
|
||||
} // namespace mindspore
|
||||
#endif // MINDSPORE_CONVERT_UNSUPPORTED_NODE_TO_AICPU_H
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue