parent
e357f27158
commit
a1d2abc16d
@ -0,0 +1,47 @@
|
|||||||
|
/* 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <>
|
||||||
|
void FuncConfig::set<size_t>(const std::string& key, size_t v) {
|
||||||
|
CHECK(valueMap_.count(key) == 0) << "Duplicated value: " << key;
|
||||||
|
valueMap_[key].s = v;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <>
|
||||||
|
void FuncConfig::set<real>(const std::string& key, real v) {
|
||||||
|
CHECK(valueMap_.count(key) == 0) << "Duplicated value: " << key;
|
||||||
|
valueMap_[key].r = v;
|
||||||
|
}
|
||||||
|
|
||||||
|
ClassRegistrar<FunctionBase> FunctionBase::funcRegistrar_;
|
||||||
|
|
||||||
|
} // namespace paddle
|
||||||
@ -0,0 +1,84 @@
|
|||||||
|
/* 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. */
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <map>
|
||||||
|
#include <vector>
|
||||||
|
#include "paddle/utils/ClassRegistrar.h"
|
||||||
|
#include "paddle/math/Matrix.h"
|
||||||
|
|
||||||
|
namespace paddle {
|
||||||
|
|
||||||
|
enum DeviceType {
|
||||||
|
DEVICE_TYPE_UNSPECIFIED = 0,
|
||||||
|
DEVICE_TYPE_CPU = 1,
|
||||||
|
DEVICE_TYPE_GPU = 2,
|
||||||
|
};
|
||||||
|
|
||||||
|
template <DeviceType Device>
|
||||||
|
struct MatrixT;
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct MatrixT<DEVICE_TYPE_CPU> {
|
||||||
|
using type = CpuMatrix;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct MatrixT<DEVICE_TYPE_GPU> {
|
||||||
|
using type = GpuMatrix;
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef std::vector<Matrix> Arguments;
|
||||||
|
|
||||||
|
class FuncConfig {
|
||||||
|
public:
|
||||||
|
union value {
|
||||||
|
size_t s;
|
||||||
|
real r;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
T get(const std::string& key) const;
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
void set(const std::string& key, T v);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
std::map<std::string, value> valueMap_;
|
||||||
|
};
|
||||||
|
|
||||||
|
class FunctionBase {
|
||||||
|
public:
|
||||||
|
virtual ~FunctionBase() {}
|
||||||
|
|
||||||
|
virtual void init(const FuncConfig& config) {}
|
||||||
|
|
||||||
|
virtual void calc(const Arguments& inputs,
|
||||||
|
const Arguments& outputs,
|
||||||
|
const Arguments& inouts) {}
|
||||||
|
|
||||||
|
static ClassRegistrar<FunctionBase> funcRegistrar_;
|
||||||
|
};
|
||||||
|
|
||||||
|
#define FUNC_NAME(typeName, deviceName) #typeName "-" #deviceName
|
||||||
|
|
||||||
|
#define REGISTER_TYPED_FUNC(typeName, deviceName, className) \
|
||||||
|
static InitFunction __reg_type_##typeName([]() { \
|
||||||
|
FunctionBase::funcRegistrar_ \
|
||||||
|
.registerClass<className<DEVICE_TYPE_##deviceName>>( \
|
||||||
|
FUNC_NAME(typeName, deviceName)); \
|
||||||
|
})
|
||||||
|
|
||||||
|
} // namespace paddle
|
||||||
Loading…
Reference in new issue