File size: 4,195 Bytes
8207382 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | // Copyright (c) 2025 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 "src/utils/pp_option.h"
#include <algorithm>
#include <sstream>
#include <stdexcept>
#include "absl/status/statusor.h"
const std::string &PaddlePredictorOption::RunMode() const { return run_mode_; }
const std::string &PaddlePredictorOption::DeviceType() const {
return device_type_;
}
int PaddlePredictorOption::DeviceId() const { return device_id_; }
int PaddlePredictorOption::CpuThreads() const { return cpu_threads_; }
const std::vector<std::string> &PaddlePredictorOption::DeletePass() const {
return delete_pass_;
}
bool PaddlePredictorOption::EnableNewIR() const { return enable_new_ir_; }
bool PaddlePredictorOption::EnableCinn() const { return enable_cinn_; }
int PaddlePredictorOption::MkldnnCacheCapacity() const {
return mkldnn_cache_capacity_;
}
const std::vector<std::string> &
PaddlePredictorOption::GetSupportRunMode() const {
return SUPPORT_RUN_MODE;
}
const std::vector<std::string> &
PaddlePredictorOption::GetSupportDevice() const {
return SUPPORT_DEVICE;
}
absl::Status PaddlePredictorOption::SetRunMode(const std::string &run_mode) {
if (std::find(SUPPORT_RUN_MODE.begin(), SUPPORT_RUN_MODE.end(), run_mode) ==
SUPPORT_RUN_MODE.end()) {
return absl::InvalidArgumentError("Unsupported run_mode: " + run_mode);
}
run_mode_ = run_mode;
return absl::OkStatus();
}
absl::Status
PaddlePredictorOption::SetDeviceType(const std::string &device_type) {
if (std::find(SUPPORT_DEVICE.begin(), SUPPORT_DEVICE.end(), device_type) ==
SUPPORT_DEVICE.end()) {
return absl::InvalidArgumentError(
"SetDeviceType failed! Unsupported device_type: " + device_type);
}
device_type_ = device_type;
if (device_type_ == "cpu") {
device_id_ = 0;
}
return absl::OkStatus();
}
absl::Status PaddlePredictorOption::SetDeviceId(int device_id) {
if (device_id < 0) {
return absl::InvalidArgumentError(
"SetDeviceId failed! device_id must be >= 0");
}
device_id_ = device_id;
return absl::OkStatus();
}
absl::Status PaddlePredictorOption::SetCpuThreads(int cpu_threads) {
if (cpu_threads < 1) {
throw std::invalid_argument(
"SetCpuThreads failed! cpu_threads must be >= 1");
}
cpu_threads_ = cpu_threads;
return absl::OkStatus();
}
absl::Status
PaddlePredictorOption::SetMkldnnCacheCapacity(int mkldnn_cache_capacity) {
if (mkldnn_cache_capacity < 1) {
throw std::invalid_argument(
"SetMkldnnCacheCapacity failed! mkldnn_cache_capacity must be >= 1");
}
mkldnn_cache_capacity_ = mkldnn_cache_capacity;
return absl::OkStatus();
}
void PaddlePredictorOption::SetDeletePass(
const std::vector<std::string> &delete_pass) {
delete_pass_ = delete_pass;
}
void PaddlePredictorOption::SetEnableNewIR(bool enable_new_ir) {
enable_new_ir_ = enable_new_ir;
}
void PaddlePredictorOption::SetEnableCinn(bool enable_cinn) {
enable_cinn_ = enable_cinn;
}
std::string PaddlePredictorOption::DebugString() const {
std::ostringstream oss;
oss << "run_mode: " << run_mode_ << ", "
<< "device_type: " << device_type_ << ", "
<< "device_id: " << device_id_ << ", "
<< "cpu_threads: " << cpu_threads_ << ", "
<< "delete_pass: [";
for (size_t i = 0; i < delete_pass_.size(); ++i) {
oss << delete_pass_[i];
if (i != delete_pass_.size() - 1)
oss << ", ";
}
oss << "], "
<< "enable_new_ir: " << (enable_new_ir_ ? "true" : "false") << ", "
<< "enable_cinn: " << (enable_cinn_ ? "true" : "false") << ", "
<< "mkldnn_cache_capacity: " << mkldnn_cache_capacity_;
return oss.str();
}
|