Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
bb2f5d24
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看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
bb2f5d24
编写于
7月 18, 2019
作者:
H
hutuxian
提交者:
GitHub
7月 18, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
hash_op support int64 hash_size (#18674)
* hash_op support int64 hash_size * add corresponding UT
上级
a5d4c2fa
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
47 addition
and
3 deletion
+47
-3
paddle/fluid/operators/hash_op.cc
paddle/fluid/operators/hash_op.cc
+1
-1
paddle/fluid/operators/hash_op.h
paddle/fluid/operators/hash_op.h
+2
-2
python/paddle/fluid/tests/unittests/test_hash_op.py
python/paddle/fluid/tests/unittests/test_hash_op.py
+44
-0
未找到文件。
paddle/fluid/operators/hash_op.cc
浏览文件 @
bb2f5d24
...
...
@@ -52,7 +52,7 @@ class HashOpMaker : public framework::OpProtoAndCheckerMaker {
Execute `num_hash` times xxHash algorithm on all elements on second dimension of input.
)DOC"
);
AddAttr
<
int
>
(
"num_hash"
,
""
).
SetDefault
(
1
);
AddAttr
<
int
>
(
"mod_by"
,
""
).
SetDefault
(
100000
);
AddAttr
<
int
64_t
>
(
"mod_by"
,
""
).
SetDefault
(
100000
);
AddAttr
<
bool
>
(
framework
::
kAllKernelsMustComputeRuntimeShape
,
"Skip calling InferShape() function in the runtime."
)
.
SetDefault
(
true
);
...
...
paddle/fluid/operators/hash_op.h
浏览文件 @
bb2f5d24
...
...
@@ -43,7 +43,7 @@ class HashKernel : public framework::OpKernel<T> {
virtual
void
Compute
(
const
framework
::
ExecutionContext
&
context
)
const
{
auto
*
out_t
=
context
.
Output
<
framework
::
LoDTensor
>
(
"Out"
);
auto
*
in_t
=
context
.
Input
<
framework
::
LoDTensor
>
(
"X"
);
int
mod_by
=
context
.
Attr
<
in
t
>
(
"mod_by"
);
int
64_t
mod_by
=
context
.
Attr
<
int64_
t
>
(
"mod_by"
);
int
num_hash
=
context
.
Attr
<
int
>
(
"num_hash"
);
auto
in_dims
=
in_t
->
dims
();
...
...
@@ -59,7 +59,7 @@ class HashKernel : public framework::OpKernel<T> {
for
(
int
idx
=
0
;
idx
<
seq_length
;
++
idx
)
{
for
(
int
ihash
=
0
;
ihash
!=
num_hash
;
++
ihash
)
{
output
[
idx
*
num_hash
+
ihash
]
=
XXH64
(
input
,
sizeof
(
int
)
*
last_dim
,
ihash
)
%
mod_by
;
XXH64
(
input
,
sizeof
(
T
)
*
last_dim
,
ihash
)
%
mod_by
;
}
input
+=
last_dim
;
}
...
...
python/paddle/fluid/tests/unittests/test_hash_op.py
浏览文件 @
bb2f5d24
...
...
@@ -58,5 +58,49 @@ class TestHashNotLoDOp(TestHashOp):
self
.
check_output
()
class
TestHashOp2
(
TestHashOp
):
"""
Case:
int64 type input
"""
def
setUp
(
self
):
self
.
op_type
=
"hash"
self
.
init_test_case
()
self
.
inputs
=
{
'X'
:
self
.
in_seq
}
self
.
attrs
=
{
'num_hash'
:
2
,
'mod_by'
:
10000
}
self
.
outputs
=
{
'Out'
:
self
.
out_seq
}
def
init_test_case
(
self
):
self
.
in_seq
=
np
.
array
([
1
,
2
**
32
+
1
]).
reshape
((
2
,
1
)).
astype
(
"int64"
)
self
.
out_seq
=
np
.
array
([
1269
,
9609
,
3868
,
7268
]).
reshape
((
2
,
2
,
1
))
def
test_check_output
(
self
):
self
.
check_output
()
class
TestHashOp3
(
TestHashOp
):
"""
Case:
int64 type input
int64 type mod_by attr
"""
def
setUp
(
self
):
self
.
op_type
=
"hash"
self
.
init_test_case
()
self
.
inputs
=
{
'X'
:
self
.
in_seq
}
self
.
attrs
=
{
'num_hash'
:
2
,
'mod_by'
:
2
**
32
}
self
.
outputs
=
{
'Out'
:
self
.
out_seq
}
def
init_test_case
(
self
):
self
.
in_seq
=
np
.
array
([
10
,
5
]).
reshape
((
2
,
1
)).
astype
(
"int64"
)
self
.
out_seq
=
np
.
array
(
[
1204014882
,
393011615
,
3586283837
,
2814821595
]).
reshape
((
2
,
2
,
1
))
def
test_check_output
(
self
):
self
.
check_output
()
if
__name__
==
"__main__"
:
unittest
.
main
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录