Function.cpp 3.3 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) {
L
liaogang 已提交
49 50
  CHECK_EQ(static_cast<int>(valueMap_.count(key)), 0) << "Duplicated value: "
                                                      << key;
H
hedaoyuan 已提交
51
  valueMap_[key].s = v;
H
hedaoyuan 已提交
52
  return *this;
H
hedaoyuan 已提交
53 54 55
}

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

63 64
template <>
FuncConfig& FuncConfig::set<int>(const std::string& key, int v) {
L
liaogang 已提交
65 66
  CHECK_EQ(static_cast<int>(valueMap_.count(key)), 0) << "Duplicated value: "
                                                      << key;
67 68 69 70 71 72
  valueMap_[key].i = v;
  return *this;
}

template <>
FuncConfig& FuncConfig::set<bool>(const std::string& key, bool v) {
L
liaogang 已提交
73 74
  CHECK_EQ(static_cast<int>(valueMap_.count(key)), 0) << "Duplicated value: "
                                                      << key;
75 76 77 78
  valueMap_[key].b = v;
  return *this;
}

79 80 81
void BufferArgs::addArg(const Matrix& arg,
                        const TensorShape& shape,
                        ArgType argType) {
H
hedaoyuan 已提交
82 83
  _args_.push_back(new BufferArg(arg, shape, argType));
  addArg(*_args_.back());
H
hedaoyuan 已提交
84 85
}

86
void BufferArgs::addArg(const CpuSparseMatrix& arg, ArgType argType) {
H
hedaoyuan 已提交
87 88
  _args_.push_back(new SparseMatrixArg(arg, argType));
  addArg(*_args_.back());
H
hedaoyuan 已提交
89 90
}

91
void BufferArgs::addArg(const GpuSparseMatrix& arg, ArgType argType) {
H
hedaoyuan 已提交
92 93
  _args_.push_back(new SparseMatrixArg(arg, argType));
  addArg(*_args_.back());
H
hedaoyuan 已提交
94 95
}

X
xutianbing 已提交
96 97 98 99 100 101
void BufferArgs::addArg(const Matrix& matrix,
                        const IVector& vector,
                        ArgType argType) {
  args_.push_back(std::make_shared<SequenceArg>(matrix, vector, argType));
}

H
hedaoyuan 已提交
102 103 104
ClassRegistrar<FunctionBase> FunctionBase::funcRegistrar_;

}  // namespace paddle