utils.cc 2.1 KB
Newer Older
J
Jiabin Yang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// 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.

#include "paddle/fluid/prim/utils/utils.h"
#include "paddle/fluid/prim/utils/static/static_global_utils.h"
#include "paddle/phi/core/flags.h"

PADDLE_DEFINE_EXPORTED_bool(prim_enabled, false, "enable_prim or not");
namespace paddle {
namespace prim {
22 23
bool PrimCommonUtils::IsBwdPrimEnabled() {
  return StaticCompositeContext::Instance().IsBwdPrimEnabled();
J
Jiabin Yang 已提交
24 25
}

26
void PrimCommonUtils::SetBwdPrimEnabled(bool enable_prim) {
27
  StaticCompositeContext::Instance().SetBwdPrimEnabled(enable_prim);
28 29 30 31 32 33 34
}

bool PrimCommonUtils::IsFwdPrimEnabled() {
  return StaticCompositeContext::Instance().IsFwdPrimEnabled();
}

void PrimCommonUtils::SetFwdPrimEnabled(bool enable_prim) {
35
  StaticCompositeContext::Instance().SetFwdPrimEnabled(enable_prim);
36 37 38
}

void PrimCommonUtils::SetAllPrimEnabled(bool enable_prim) {
39 40 41 42 43 44 45 46 47 48 49 50 51
  StaticCompositeContext::Instance().SetAllPrimEnabled(enable_prim);
}

size_t PrimCommonUtils::CheckSkipCompOps(const std::string& op_type) {
  return StaticCompositeContext::Instance().CheckSkipCompOps(op_type);
}

void PrimCommonUtils::AddSkipCompOps(const std::string& op_type) {
  StaticCompositeContext::Instance().AddSkipCompOps(op_type);
}

void PrimCommonUtils::RemoveSkipCompOps(const std::string& op_type) {
  StaticCompositeContext::Instance().RemoveSkipCompOps(op_type);
J
Jiabin Yang 已提交
52
}
53 54 55 56 57 58

void PrimCommonUtils::SetTargetGradName(
    const std::map<std::string, std::string>& m) {
  StaticCompositeContext::Instance().SetTargetGradName(m);
}

J
Jiabin Yang 已提交
59 60
}  // namespace prim
}  // namespace paddle