Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
6299a90a
P
Paddle-Lite
项目概览
PaddlePaddle
/
Paddle-Lite
通知
332
Star
4
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
271
列表
看板
标记
里程碑
合并请求
78
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle-Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
271
Issue
271
列表
看板
标记
里程碑
合并请求
78
合并请求
78
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
6299a90a
编写于
6月 11, 2020
作者:
W
Wilber
提交者:
GitHub
6月 11, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[CUDA] [NVTX] Lite add nvtx to support performance debug. (#3764)
上级
142ee7f2
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
181 addition
and
1 deletion
+181
-1
CMakeLists.txt
CMakeLists.txt
+1
-0
cmake/cuda.cmake
cmake/cuda.cmake
+9
-0
lite/backends/cuda/CMakeLists.txt
lite/backends/cuda/CMakeLists.txt
+2
-0
lite/backends/cuda/nvtx_wrapper.cc
lite/backends/cuda/nvtx_wrapper.cc
+72
-0
lite/backends/cuda/nvtx_wrapper.h
lite/backends/cuda/nvtx_wrapper.h
+63
-0
lite/core/CMakeLists.txt
lite/core/CMakeLists.txt
+2
-1
lite/core/program.cc
lite/core/program.cc
+17
-0
lite/core/program.h
lite/core/program.h
+15
-0
未找到文件。
CMakeLists.txt
浏览文件 @
6299a90a
...
...
@@ -98,6 +98,7 @@ lite_option(LITE_WITH_LIGHT_WEIGHT_FRAMEWORK "Enable light-weight framework" OF
lite_option
(
LITE_WITH_PROFILE
"Enable profile mode in lite framework"
OFF
)
lite_option
(
LITE_WITH_PRECISION_PROFILE
"Enable precision profile in profile mode ON in lite"
OFF
)
lite_option
(
LITE_WITH_LOG
"Enable log printing or not."
ON
)
lite_option
(
LITE_WITH_NVTX
"Enable nvtx or not, please enable LITE_WITH_CUDA first."
OFF
)
lite_option
(
LITE_ON_TINY_PUBLISH
"Publish tiny predictor lib."
OFF
)
lite_option
(
LITE_ON_MODEL_OPTIMIZE_TOOL
"Build the model optimize tool"
OFF
)
# publish options
...
...
cmake/cuda.cmake
浏览文件 @
6299a90a
...
...
@@ -265,3 +265,12 @@ endif(NOT WIN32)
mark_as_advanced
(
CUDA_BUILD_CUBIN CUDA_BUILD_EMULATION CUDA_VERBOSE_BUILD
)
mark_as_advanced
(
CUDA_SDK_ROOT_DIR CUDA_SEPARABLE_COMPILATION
)
if
(
LITE_WITH_NVTX
)
if
(
${
CUDA_VERSION
}
GREATER 10.0
)
add_definitions
(
"-DLITE_WITH_NVTX"
)
else
()
message
(
WARNING
"CUDA_VERSION should be larger than 10.0 to enable NVTX, force set LITE_WITH_NVTX OFF"
)
set
(
LITE_WITH_NVTX OFF
)
endif
()
endif
()
lite/backends/cuda/CMakeLists.txt
浏览文件 @
6299a90a
...
...
@@ -6,6 +6,8 @@ get_property(cuda_deps GLOBAL PROPERTY CUDA_MODULES)
nv_library
(
target_wrapper_cuda SRCS target_wrapper.cc DEPS
${
cuda_deps
}
)
nv_library
(
cuda_blas SRCS blas.cc DEPS
${
cuda_deps
}
)
nv_library
(
nvtx_wrapper SRCS nvtx_wrapper DEPS
${
cuda_deps
}
)
lite_cc_library
(
cuda_context SRCS context.cc DEPS device_info
)
add_subdirectory
(
math
)
lite/backends/cuda/nvtx_wrapper.cc
0 → 100644
浏览文件 @
6299a90a
// Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
//
// 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.
#ifdef LITE_WITH_NVTX
#include "lite/backends/cuda/nvtx_wrapper.h"
#include <cuda.h>
#include <cuda_runtime.h>
namespace
paddle
{
namespace
lite
{
NVTXRangeAnnotation
::
NVTXRangeAnnotation
(
nvtxDomainHandle_t
domain
)
:
domain_
(
domain
),
isGenerating_
(
false
)
{}
NVTXRangeAnnotation
::
NVTXRangeAnnotation
(
NVTXRangeAnnotation
&&
other
)
:
domain_
(
other
.
domain_
),
isGenerating_
(
other
.
isGenerating_
)
{
other
.
isGenerating_
=
false
;
}
NVTXRangeAnnotation
::~
NVTXRangeAnnotation
()
{
if
(
isGenerating_
)
{
nvtxDomainRangePop
(
domain_
);
}
}
void
NVTXRangeAnnotation
::
generate
(
nvtxStringHandle_t
stringHandle
,
Color
color
)
{
nvtxEventAttributes_t
attributes
=
nvtxEventAttributes_t
();
attributes
.
version
=
NVTX_VERSION
;
attributes
.
size
=
NVTX_EVENT_ATTRIB_STRUCT_SIZE
;
attributes
.
colorType
=
NVTX_COLOR_ARGB
;
attributes
.
color
=
static_cast
<
decltype
(
attributes
.
color
)
>
(
color
);
attributes
.
messageType
=
NVTX_MESSAGE_TYPE_REGISTERED
;
attributes
.
message
.
registered
=
stringHandle
;
nvtxDomainRangePushEx
(
domain_
,
&
attributes
);
isGenerating_
=
true
;
}
const
NVTXAnnotator
&
NVTXAnnotator
::
Global
()
{
static
const
NVTXAnnotator
annotator
(
"Paddle-Lite"
);
return
annotator
;
}
bool
NVTXAnnotator
::
IsEnabled
()
const
{
return
domain_
!=
nullptr
;
}
NVTXRangeAnnotation
NVTXAnnotator
::
AnnotateBlock
()
const
{
return
NVTXRangeAnnotation
(
domain_
);
}
nvtxStringHandle_t
NVTXAnnotator
::
RegisterString
(
const
char
*
str
)
const
{
return
nvtxDomainRegisterStringA
(
domain_
,
str
);
}
NVTXAnnotator
::
NVTXAnnotator
(
const
char
*
domainName
)
:
domain_
(
nvtxDomainCreateA
(
domainName
))
{}
}
// namespace lite
}
// namespace paddle
#endif
lite/backends/cuda/nvtx_wrapper.h
0 → 100644
浏览文件 @
6299a90a
// Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
//
// 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 <cuda.h>
#include <cuda_runtime.h>
#include "nvtx3/nvToolsExt.h"
namespace
paddle
{
namespace
lite
{
enum
class
Color
:
uint32_t
{
Engine
=
0xFFD2691E
,
Runner
=
0xFFFFD700
,
};
// Generate an NVTX range that is started when `generate` is called
// and closed when the object is destroyed.
class
NVTXRangeAnnotation
{
public:
explicit
NVTXRangeAnnotation
(
nvtxDomainHandle_t
domain
);
NVTXRangeAnnotation
(
NVTXRangeAnnotation
&&
other
);
NVTXRangeAnnotation
(
const
NVTXRangeAnnotation
&
)
=
delete
;
NVTXRangeAnnotation
&
operator
=
(
const
NVTXRangeAnnotation
&
)
=
delete
;
~
NVTXRangeAnnotation
();
void
generate
(
nvtxStringHandle_t
stringHandle
,
Color
color
);
private:
nvtxDomainHandle_t
domain_
;
bool
isGenerating_
;
};
class
NVTXAnnotator
{
public:
static
const
NVTXAnnotator
&
Global
();
public:
bool
IsEnabled
()
const
;
NVTXRangeAnnotation
AnnotateBlock
()
const
;
nvtxStringHandle_t
RegisterString
(
const
char
*
)
const
;
private:
// Only a global instance of that object is allowed.
// It can be accessed by call `NVTXAnnotator::Global()` function.
explicit
NVTXAnnotator
(
const
char
*
domainName
);
private:
nvtxDomainHandle_t
domain_
;
};
}
// namespace lite
}
// namespace paddle
lite/core/CMakeLists.txt
浏览文件 @
6299a90a
...
...
@@ -132,7 +132,8 @@ lite_cc_library(type_system SRCS type_system.cc DEPS tensor target_wrapper)
lite_cc_library
(
program SRCS program.cc
DEPS op kernel model_parser
${
ops
}
${
cpp_wrapper
}
PROFILE_DEPS lite_profiler
)
PROFILE_DEPS lite_profiler
CUDA_DEPS nvtx_wrapper
)
if
(
NOT LITE_ON_TINY_PUBLISH
)
lite_cc_library
(
optimizer SRCS optimizer.cc DEPS mir_pass_manager model_parser program
)
...
...
lite/core/program.cc
浏览文件 @
6299a90a
...
...
@@ -151,10 +151,27 @@ void RuntimeProgram::Run() {
inst_precision_profiler
.
GetSummaryHeader
();
#endif
#ifdef LITE_WITH_NVTX
const
NVTXAnnotator
&
annotator
=
NVTXAnnotator
::
Global
();
NVTXRangeAnnotation
annotation_one_loop
=
annotator
.
AnnotateBlock
();
if
(
annotator
.
IsEnabled
())
{
annotation_one_loop
.
generate
(
register_layer_names_
.
back
(),
lite
::
Color
::
Engine
);
}
#endif
int
idx
=
-
1
;
for
(
auto
&
inst
:
instructions_
)
{
++
idx
;
#ifndef LITE_WITH_FPGA
if
(
inst
.
is_feed_fetch_op
())
continue
;
#endif
#ifdef LITE_WITH_NVTX
NVTXRangeAnnotation
annotation
=
annotator
.
AnnotateBlock
();
nvtxStringHandle_t
registered_name
=
register_layer_names_
[
idx
];
if
(
annotator
.
IsEnabled
())
{
annotation
.
generate
(
registered_name
,
lite
::
Color
::
Runner
);
}
#endif
#ifdef LITE_WITH_CUDA
if
(
inst
.
need_sync
())
{
inst
.
Sync
();
...
...
lite/core/program.h
浏览文件 @
6299a90a
...
...
@@ -26,6 +26,9 @@
#ifdef LITE_WITH_PROFILE
#include "lite/core/profile/profiler.h"
#endif
#ifdef LITE_WITH_NVTX
#include "lite/backends/cuda/nvtx_wrapper.h"
#endif
namespace
paddle
{
namespace
lite
{
...
...
@@ -174,6 +177,15 @@ class LITE_API RuntimeProgram {
}
#ifdef LITE_WITH_PROFILE
set_profiler
();
#endif
#ifdef LITE_WITH_NVTX
const
NVTXAnnotator
&
annotator
=
NVTXAnnotator
::
Global
();
for
(
auto
&
inst
:
instructions_
)
{
NVTXRangeAnnotation
annotation
=
annotator
.
AnnotateBlock
();
register_layer_names_
.
push_back
(
annotator
.
RegisterString
(
const_cast
<
paddle
::
lite
::
OpLite
*>
(
inst
.
op
())
->
Type
().
c_str
()));
}
register_layer_names_
.
push_back
(
annotator
.
RegisterString
(
"one_loop"
));
#endif
}
~
RuntimeProgram
()
{
...
...
@@ -214,6 +226,9 @@ class LITE_API RuntimeProgram {
}
}
#endif
#ifdef LITE_WITH_NVTX
std
::
vector
<
nvtxStringHandle_t
>
register_layer_names_
;
#endif
};
}
// namespace lite
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录