Function.cpp 2.2 KB
Newer Older
H
hedaoyuan 已提交
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
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

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 "Function.h"

namespace paddle {

template <>
size_t FuncConfig::get<size_t>(const std::string& key) const {
  auto it = valueMap_.find(key);
  CHECK(it != valueMap_.end()) << "Cannot find value: '" << key << "'";
  return it->second.s;
}

template <>
real FuncConfig::get<real>(const std::string& key) const {
  auto it = valueMap_.find(key);
  CHECK(it != valueMap_.end()) << "Cannot find value: '" << key << "'";
  return it->second.r;
}

33 34 35 36 37 38 39 40 41 42 43 44 45 46
template <>
int FuncConfig::get<int>(const std::string& key) const {
  auto it = valueMap_.find(key);
  CHECK(it != valueMap_.end()) << "Cannot find value: '" << key << "'";
  return it->second.i;
}

template <>
bool FuncConfig::get<bool>(const std::string& key) const {
  auto it = valueMap_.find(key);
  CHECK(it != valueMap_.end()) << "Cannot find value: '" << key << "'";
  return it->second.b;
}

H
hedaoyuan 已提交
47
template <>
H
hedaoyuan 已提交
48
FuncConfig& FuncConfig::set<size_t>(const std::string& key, size_t v) {
49
  CHECK_EQ(valueMap_.count(key), 0) << "Duplicated value: " << key;
H
hedaoyuan 已提交
50
  valueMap_[key].s = v;
H
hedaoyuan 已提交
51
  return *this;
H
hedaoyuan 已提交
52 53 54
}

template <>
H
hedaoyuan 已提交
55
FuncConfig& FuncConfig::set<real>(const std::string& key, real v) {
56
  CHECK_EQ(valueMap_.count(key), 0) << "Duplicated value: " << key;
H
hedaoyuan 已提交
57
  valueMap_[key].r = v;
H
hedaoyuan 已提交
58
  return *this;
H
hedaoyuan 已提交
59 60
}

61 62
template <>
FuncConfig& FuncConfig::set<int>(const std::string& key, int v) {
63
  CHECK_EQ(valueMap_.count(key), 0) << "Duplicated value: " << key;
64 65 66 67 68 69
  valueMap_[key].i = v;
  return *this;
}

template <>
FuncConfig& FuncConfig::set<bool>(const std::string& key, bool v) {
70
  CHECK_EQ(valueMap_.count(key), 0) << "Duplicated value: " << key;
71 72 73 74
  valueMap_[key].b = v;
  return *this;
}

H
hedaoyuan 已提交
75 76 77
ClassRegistrar<FunctionBase> FunctionBase::funcRegistrar_;

}  // namespace paddle