Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
6bab3343
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,发现更多精彩内容 >>
未验证
提交
6bab3343
编写于
11月 08, 2022
作者:
C
Chen Weihang
提交者:
GitHub
11月 08, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
normalize autotune tests dir (#47726)
上级
a4a9ce0e
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
27 addition
and
27 deletion
+27
-27
paddle/phi/kernels/autotune/CMakeLists.txt
paddle/phi/kernels/autotune/CMakeLists.txt
+0
-25
paddle/phi/tests/kernels/CMakeLists.txt
paddle/phi/tests/kernels/CMakeLists.txt
+25
-0
paddle/phi/tests/kernels/test_auto_tune.cu
paddle/phi/tests/kernels/test_auto_tune.cu
+0
-0
paddle/phi/tests/kernels/test_cache.cc
paddle/phi/tests/kernels/test_cache.cc
+2
-2
paddle/phi/tests/kernels/test_gpu_timer.cu
paddle/phi/tests/kernels/test_gpu_timer.cu
+0
-0
未找到文件。
paddle/phi/kernels/autotune/CMakeLists.txt
浏览文件 @
6bab3343
if
(
WITH_GPU
)
nv_test
(
gpu_timer_test
SRCS gpu_timer_test.cu
DEPS gtest
)
nv_test
(
auto_tune_test
SRCS auto_tune_test.cu
DEPS gtest
)
elseif
(
WITH_ROCM
)
hip_test
(
gpu_timer_test
SRCS gpu_timer_test.cu
DEPS gtest
)
hip_test
(
auto_tune_test
SRCS auto_tune_test.cu
DEPS gtest
)
endif
()
cc_library
(
cache SRCS cache.cc
)
cc_library
(
switch_autotune
SRCS switch_autotune.cc
DEPS cache flags
)
cc_test
(
cache_test
SRCS cache_test.cc
DEPS gtest cache
)
paddle/phi/tests/kernels/CMakeLists.txt
浏览文件 @
6bab3343
...
...
@@ -66,3 +66,28 @@ cc_test(
test_transfer_layout_dev_api
SRCS test_transfer_layout_dev_api.cc
DEPS phi phi_api_utils
)
if
(
WITH_GPU
)
nv_test
(
test_gpu_timer
SRCS test_gpu_timer.cu
DEPS gtest
)
nv_test
(
test_auto_tune
SRCS test_auto_tune.cu
DEPS gtest
)
elseif
(
WITH_ROCM
)
hip_test
(
test_gpu_timer
SRCS test_gpu_timer.cu
DEPS gtest
)
hip_test
(
test_auto_tune
SRCS test_auto_tune.cu
DEPS gtest
)
endif
()
cc_test
(
test_cache
SRCS test_cache.cc
DEPS gtest cache
)
paddle/phi/
kernels/autotune/auto_tune_test
.cu
→
paddle/phi/
tests/kernels/test_auto_tune
.cu
浏览文件 @
6bab3343
文件已移动
paddle/phi/
kernels/autotune/cache_test
.cc
→
paddle/phi/
tests/kernels/test_cache
.cc
浏览文件 @
6bab3343
...
...
@@ -12,13 +12,13 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#include "paddle/phi/kernels/autotune/cache.h"
#include <gtest/gtest.h>
#include <cmath>
#include <functional>
#include "paddle/phi/kernels/autotune/cache.h"
#include "glog/logging.h"
enum
ConvAlgos
{
GEMMKernel
=
0
,
CuDNNKernel_1
=
1
,
CuDNNKernel_2
=
2
};
...
...
paddle/phi/
kernels/autotune/gpu_timer_test
.cu
→
paddle/phi/
tests/kernels/test_gpu_timer
.cu
浏览文件 @
6bab3343
文件已移动
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录