Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
e2173b68
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,发现更多精彩内容 >>
未验证
提交
e2173b68
编写于
10月 24, 2021
作者:
Z
Zhen Wang
提交者:
GitHub
10月 24, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add the macro `-DPADDLE_WITH_CINN`. (#36660)
上级
bbd4bd73
变更
6
显示空白变更内容
内联
并排
Showing
6 changed file
with
36 addition
and
7 deletion
+36
-7
cmake/third_party.cmake
cmake/third_party.cmake
+1
-0
paddle/fluid/framework/CMakeLists.txt
paddle/fluid/framework/CMakeLists.txt
+4
-2
paddle/fluid/framework/details/CMakeLists.txt
paddle/fluid/framework/details/CMakeLists.txt
+6
-1
paddle/fluid/framework/details/build_strategy.cc
paddle/fluid/framework/details/build_strategy.cc
+9
-2
paddle/fluid/platform/flags.cc
paddle/fluid/platform/flags.cc
+2
-0
python/paddle/fluid/tests/unittests/test_parallel_executor_run_cinn.py
.../fluid/tests/unittests/test_parallel_executor_run_cinn.py
+14
-2
未找到文件。
cmake/third_party.cmake
浏览文件 @
e2173b68
...
...
@@ -363,6 +363,7 @@ endif (WITH_LITE)
if
(
WITH_CINN
)
message
(
STATUS
"Compile Paddle with CINN."
)
include
(
external/cinn
)
add_definitions
(
-DPADDLE_WITH_CINN
)
endif
(
WITH_CINN
)
if
(
WITH_CRYPTO
)
...
...
paddle/fluid/framework/CMakeLists.txt
浏览文件 @
e2173b68
...
...
@@ -26,7 +26,9 @@ add_subdirectory(details)
add_subdirectory
(
fleet
)
add_subdirectory
(
io
)
add_subdirectory
(
new_executor
)
add_subdirectory
(
paddle2cinn
)
if
(
WITH_CINN
)
add_subdirectory
(
paddle2cinn
)
endif
()
#ddim lib
proto_library
(
framework_proto SRCS framework.proto
)
proto_library
(
pass_desc_proto SRCS pass_desc.proto DEPS framework_proto
)
...
...
@@ -353,7 +355,7 @@ target_link_libraries(executor while_op_helper executor_gc_helper recurrent_op_h
cc_library
(
parallel_executor SRCS parallel_executor.cc DEPS
threaded_ssa_graph_executor scope_buffered_ssa_graph_executor parallel_ssa_graph_executor async_ssa_graph_executor
graph build_strategy bind_threaded_ssa_graph_executor collective_helper
fast_threaded_ssa_graph_executor variable_helper
cinn_runner
)
fast_threaded_ssa_graph_executor variable_helper
)
cc_library
(
executor_cache SRCS executor_cache.cc DEPS parallel_executor
)
if
(
WITH_PSCORE
)
...
...
paddle/fluid/framework/details/CMakeLists.txt
浏览文件 @
e2173b68
...
...
@@ -139,7 +139,12 @@ set(IR_PASS_DEPS graph_viz_pass multi_devices_graph_pass
coalesce_grad_tensor_pass fuse_all_reduce_op_pass backward_optimizer_op_deps_pass
fuse_adam_op_pass fuse_sgd_op_pass fuse_momentum_op_pass
sync_batch_norm_pass runtime_context_cache_pass graph_to_program_pass
fix_op_run_order_pass build_cinn_pass
)
fix_op_run_order_pass
)
if
(
WITH_CINN
)
set
(
IR_PASS_DEPS
${
IR_PASS_DEPS
}
build_cinn_pass
)
endif
()
if
(
NOT APPLE AND NOT WIN32
AND
(
WITH_GPU OR WITH_ROCM
))
set
(
IR_PASS_DEPS
${
IR_PASS_DEPS
}
fusion_group_pass
)
endif
()
...
...
paddle/fluid/framework/details/build_strategy.cc
浏览文件 @
e2173b68
...
...
@@ -20,8 +20,10 @@ limitations under the License. */
#include "paddle/fluid/framework/ir/multi_devices_graph_pass/multi_devices_graph_pass.h"
DECLARE_bool
(
convert_all_blocks
);
DECLARE_bool
(
use_cinn
);
DECLARE_bool
(
use_mkldnn
);
#ifdef PADDLE_WITH_CINN
DECLARE_bool
(
use_cinn
);
#endif
namespace
paddle
{
namespace
framework
{
...
...
@@ -72,10 +74,13 @@ class ParallelExecutorPassBuilder : public ir::PassBuilder {
// Note: This pass is used to check whether the multi_device_graph is right.
AppendPass
(
"multi_devices_check_pass"
);
// Note: This pass is used to enable cinn.
#ifdef PADDLE_WITH_CINN
if
(
FLAGS_use_cinn
)
{
// Note: This pass is used to enable cinn.
AppendPass
(
"build_cinn_pass"
);
}
#endif
SetCollectiveContext
();
}
...
...
@@ -486,7 +491,9 @@ USE_PASS(fuse_momentum_op_pass);
USE_PASS
(
fuse_all_reduce_op_pass
);
USE_PASS
(
runtime_context_cache_pass
);
USE_PASS
(
add_reader_dependency_pass
);
#ifdef PADDLE_WITH_CINN
USE_PASS
(
build_cinn_pass
);
#endif
#ifdef PADDLE_WITH_MKLDNN
USE_PASS
(
mkldnn_placement_pass
);
#endif
...
...
paddle/fluid/platform/flags.cc
浏览文件 @
e2173b68
...
...
@@ -705,8 +705,10 @@ PADDLE_DEFINE_EXPORTED_bool(allreduce_record_one_event, false,
* Value Range: bool, default=false
* Example: FLAGS_use_cinn=true would run PaddlePaddle using CINN
*/
#ifdef PADDLE_WITH_CINN
PADDLE_DEFINE_EXPORTED_bool
(
use_cinn
,
false
,
"It controls whether to run PaddlePaddle using CINN"
);
#endif
DEFINE_int32
(
record_pool_max_size
,
2000000
,
"SlotRecordDataset slot record pool max size"
);
...
...
python/paddle/fluid/tests/unittests/test_parallel_executor_run_cinn.py
浏览文件 @
e2173b68
...
...
@@ -14,16 +14,28 @@
from
__future__
import
print_function
import
logging
import
numpy
as
np
import
paddle
import
unittest
paddle
.
enable_static
()
logging
.
basicConfig
(
format
=
'%(asctime)s - %(levelname)s - %(message)s'
,
level
=
logging
.
INFO
)
logger
=
logging
.
getLogger
(
__name__
)
def
set_cinn_flag
(
val
):
try
:
paddle
.
set_flags
({
'FLAGS_use_cinn'
:
val
})
except
ValueError
:
logger
.
warning
(
"The used paddle is not compiled with CINN."
)
class
TestParallelExecutorRunCinn
(
unittest
.
TestCase
):
def
test_run_from_cinn
(
self
):
paddle
.
set_flags
({
'FLAGS_use_cinn'
:
False
}
)
set_cinn_flag
(
False
)
main_program
=
paddle
.
static
.
Program
()
startup_program
=
paddle
.
static
.
Program
()
...
...
@@ -49,7 +61,7 @@ class TestParallelExecutorRunCinn(unittest.TestCase):
fetch_list
=
[
prediction
.
name
],
return_merged
=
False
)
paddle
.
set_flags
({
'FLAGS_use_cinn'
:
False
}
)
set_cinn_flag
(
False
)
if
__name__
==
'__main__'
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录