Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
a1d2abc1
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2298
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
a1d2abc1
编写于
12月 14, 2016
作者:
H
hedaoyuan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add Function
上级
e357f271
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
188 addition
and
24 deletion
+188
-24
paddle/math/Function.cpp
paddle/math/Function.cpp
+47
-0
paddle/math/Function.h
paddle/math/Function.h
+84
-0
paddle/math/cross_map_normal_op.cpp
paddle/math/cross_map_normal_op.cpp
+46
-0
paddle/math/cross_map_normal_op.h
paddle/math/cross_map_normal_op.h
+1
-19
paddle/math/tests/test_matrixCompare.cpp
paddle/math/tests/test_matrixCompare.cpp
+10
-5
未找到文件。
paddle/math/Function.cpp
0 → 100644
浏览文件 @
a1d2abc1
/* 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
paddle/math/Function.h
0 → 100644
浏览文件 @
a1d2abc1
/* 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
paddle/math/cross_map_normal_op.cpp
浏览文件 @
a1d2abc1
...
...
@@ -128,4 +128,50 @@ void CrossMapNormalGrad<DEVICE_TYPE_CPU>::operator()(CpuMatrix& inputsGrad,
}
}
template
<
DeviceType
Device
>
class
CrossMapNormalFunc
:
public
FunctionBase
{
public:
void
init
(
const
FuncConfig
&
config
)
override
{
size_
=
config
.
get
<
size_t
>
(
"size"
);
scale_
=
config
.
get
<
real
>
(
"scale"
);
pow_
=
config
.
get
<
real
>
(
"pow"
);
}
void
calc
(
const
Arguments
&
inputs
,
const
Arguments
&
outputs
,
const
Arguments
&
inouts
)
override
{
CHECK_EQ
(
1
,
inputs
.
size
());
CHECK_EQ
(
2
,
outputs
.
size
());
CHECK_EQ
(
0
,
inouts
.
size
());
auto
input
=
dynamic_cast
<
const
typename
MatrixT
<
Device
>::
type
&>
(
inputs
[
0
]);
auto
output
=
dynamic_cast
<
const
typename
MatrixT
<
Device
>::
type
&>
(
outputs
[
0
]);
auto
denom
=
dynamic_cast
<
const
typename
MatrixT
<
Device
>::
type
&>
(
outputs
[
1
]);
CHECK
(
input
.
isContiguous
());
CHECK
(
output
.
isContiguous
());
CHECK
(
denom
.
isContiguous
());
CHECK_EQ
(
output
.
getHeight
(),
input
.
getHeight
());
CHECK_EQ
(
output
.
getWidth
(),
input
.
getWidth
());
CHECK_EQ
(
output
.
getHeight
(),
denom
.
getHeight
());
CHECK_EQ
(
output
.
getWidth
(),
denom
.
getWidth
());
// CrossMapNormal<Device> cross;
// need:
// size_t channels,
// size_t imgSizeH,
// size_t imgSizeW,
// cross(output, denom, input, );
}
private:
size_t
size_
;
real
scale_
;
real
pow_
;
};
REGISTER_TYPED_FUNC
(
CrossMapNormal
,
CPU
,
CrossMapNormalFunc
);
}
// namespace paddle
paddle/math/cross_map_normal_op.h
浏览文件 @
a1d2abc1
...
...
@@ -14,29 +14,11 @@ limitations under the License. */
#pragma once
#include "Function.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
;
};
template
<
DeviceType
Device
>
struct
CrossMapNormal
{
void
operator
()(
typename
MatrixT
<
Device
>::
type
&
outputs
,
...
...
paddle/math/tests/test_matrixCompare.cpp
浏览文件 @
a1d2abc1
...
...
@@ -24,6 +24,7 @@ limitations under the License. */
#include "paddle/utils/Stat.h"
#include "TensorCheck.h"
#include "paddle/math/cross_map_normal_op.h"
#include "paddle/math/Function.h"
using
namespace
paddle
;
// NOLINT
using
namespace
std
;
// NOLINT
...
...
@@ -1280,6 +1281,15 @@ void testCrossMapNormalFwd(
inputsGpu
.
copyFrom
(
inputs
);
outputsGpu
.
copyFrom
(
outputs
);
FuncConfig
config
;
config
.
set
(
"size"
,
(
size_t
)
sizeX
);
config
.
set
(
"scale"
,
scale
);
config
.
set
(
"pow"
,
pow
);
FunctionBase
*
cpu
=
FunctionBase
::
funcRegistrar_
.
createByType
(
FUNC_NAME
(
CrossMapNormal
,
CPU
));
cpu
->
init
(
config
);
// cpu->calc();
CrossMapNormal
<
DEVICE_TYPE_CPU
>
cpuCross
;
cpuCross
(
outputs
,
denoms
,
inputs
,
channels
,
imgSizeH
,
imgSizeW
,
sizeX
,
scale
,
pow
);
...
...
@@ -1295,11 +1305,6 @@ void testCrossMapNormalFwd(
scale
,
pow
);
#if 0
outputsGpu.crossMapNormalFwd(
inputsGpu, imgSizeH, imgSizeW, denomsGpu, channels, sizeX, scale, pow);
#endif
TensorCheckErr
(
outputs
,
outputsGpu
);
TensorCheckErr
(
denoms
,
denomsGpu
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录