Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
decc4c38
P
Paddle
项目概览
PaddlePaddle
/
Paddle
接近 2 年 前同步成功
通知
2322
Star
20933
Fork
5424
代码
文件
提交
分支
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看板
未验证
提交
decc4c38
编写于
5月 05, 2023
作者:
G
gouzil
提交者:
GitHub
5月 05, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[test]mv fluid op math to test/cpp/fluid/math (#53446)
上级
841efcd4
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
37 addition
and
38 deletion
+37
-38
paddle/fluid/operators/math/CMakeLists.txt
paddle/fluid/operators/math/CMakeLists.txt
+0
-37
test/cpp/fluid/CMakeLists.txt
test/cpp/fluid/CMakeLists.txt
+1
-1
test/cpp/fluid/math/CMakeLists.txt
test/cpp/fluid/math/CMakeLists.txt
+36
-0
test/cpp/fluid/math/beam_search_test.cc
test/cpp/fluid/math/beam_search_test.cc
+0
-0
test/cpp/fluid/math/concat_test.cc
test/cpp/fluid/math/concat_test.cc
+0
-0
test/cpp/fluid/math/im2col_test.cc
test/cpp/fluid/math/im2col_test.cc
+0
-0
test/cpp/fluid/math/selected_rows_functor_test.cc
test/cpp/fluid/math/selected_rows_functor_test.cc
+0
-0
test/cpp/fluid/math/selected_rows_functor_test.cu.cc
test/cpp/fluid/math/selected_rows_functor_test.cu.cc
+0
-0
test/cpp/fluid/math/vol2col_test.cc
test/cpp/fluid/math/vol2col_test.cc
+0
-0
未找到文件。
paddle/fluid/operators/math/CMakeLists.txt
浏览文件 @
decc4c38
...
@@ -24,40 +24,3 @@ math_library(unpooling)
...
@@ -24,40 +24,3 @@ math_library(unpooling)
math_library
(
prelu
)
math_library
(
prelu
)
math_library
(
bert_encoder_functor
)
math_library
(
bert_encoder_functor
)
math_library
(
tree2col DEPS math_function
)
math_library
(
tree2col DEPS math_function
)
cc_test
(
selected_rows_functor_test
SRCS selected_rows_functor_test.cc
DEPS allocator selected_rows_functor
)
cc_test
(
im2col_test
SRCS im2col_test.cc
DEPS im2col
)
cc_test
(
vol2col_test
SRCS vol2col_test.cc
DEPS vol2col
)
cc_test
(
beam_search_test
SRCS beam_search_test.cc
DEPS beam_search
)
if
(
WITH_GPU
)
nv_test
(
selected_rows_functor_gpu_test
SRCS selected_rows_functor_test.cu.cc
DEPS selected_rows_functor math_function
)
endif
()
if
(
WITH_ROCM
)
hip_test
(
selected_rows_functor_gpu_test
SRCS selected_rows_functor_test.cu.cc
DEPS selected_rows_functor math_function
)
endif
()
cc_test
(
concat_test
SRCS concat_test.cc
DEPS concat_and_split
)
if
(
WITH_TESTING AND TEST im2col_test
)
set_tests_properties
(
im2col_test PROPERTIES TIMEOUT 120
)
endif
()
test/cpp/fluid/CMakeLists.txt
浏览文件 @
decc4c38
...
@@ -10,7 +10,7 @@ add_subdirectory(elementwise)
...
@@ -10,7 +10,7 @@ add_subdirectory(elementwise)
if
(
WITH_LITE
)
if
(
WITH_LITE
)
add_subdirectory
(
lite
)
add_subdirectory
(
lite
)
endif
()
endif
()
#
add_subdirectory(math)
add_subdirectory
(
math
)
# if(WITH_MKLDNN)
# if(WITH_MKLDNN)
# add_subdirectory(mkldnn)
# add_subdirectory(mkldnn)
# endif()
# endif()
...
...
test/cpp/fluid/math/CMakeLists.txt
0 → 100644
浏览文件 @
decc4c38
cc_test
(
selected_rows_functor_test
SRCS selected_rows_functor_test.cc
DEPS allocator selected_rows_functor
)
cc_test
(
im2col_test
SRCS im2col_test.cc
DEPS im2col
)
cc_test
(
vol2col_test
SRCS vol2col_test.cc
DEPS vol2col
)
cc_test
(
beam_search_test
SRCS beam_search_test.cc
DEPS beam_search
)
if
(
WITH_GPU
)
nv_test
(
selected_rows_functor_gpu_test
SRCS selected_rows_functor_test.cu.cc
DEPS selected_rows_functor math_function
)
endif
()
if
(
WITH_ROCM
)
hip_test
(
selected_rows_functor_gpu_test
SRCS selected_rows_functor_test.cu.cc
DEPS selected_rows_functor math_function
)
endif
()
cc_test
(
concat_test
SRCS concat_test.cc
DEPS concat_and_split
)
if
(
WITH_TESTING AND TEST im2col_test
)
set_tests_properties
(
im2col_test PROPERTIES TIMEOUT 120
)
endif
()
paddle/fluid/operators
/math/beam_search_test.cc
→
test/cpp/fluid
/math/beam_search_test.cc
浏览文件 @
decc4c38
文件已移动
paddle/fluid/operators
/math/concat_test.cc
→
test/cpp/fluid
/math/concat_test.cc
浏览文件 @
decc4c38
文件已移动
paddle/fluid/operators
/math/im2col_test.cc
→
test/cpp/fluid
/math/im2col_test.cc
浏览文件 @
decc4c38
文件已移动
paddle/fluid/operators
/math/selected_rows_functor_test.cc
→
test/cpp/fluid
/math/selected_rows_functor_test.cc
浏览文件 @
decc4c38
文件已移动
paddle/fluid/operators
/math/selected_rows_functor_test.cu.cc
→
test/cpp/fluid
/math/selected_rows_functor_test.cu.cc
浏览文件 @
decc4c38
文件已移动
paddle/fluid/operators
/math/vol2col_test.cc
→
test/cpp/fluid
/math/vol2col_test.cc
浏览文件 @
decc4c38
文件已移动
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录