zhoufeng
f49b195c39
extract common as an independent shared library
Signed-off-by: zhoufeng <zhoufeng54@huawei.com>
4 years ago
marui
d47e79b04c
Refactor ccsrc directories and CMakeLists files
4 years ago
i-robot
812dba7e21
!24771 add compile option H to visible hidden interface
Merge pull request !24771 from Healing/hidden_visible
4 years ago
yuximiao
e99c0a48e6
support start profiler in the minddle of training.
4 years ago
liuchuting
bb5bf3f289
repair warning of memcpy,memset
4 years ago
healing
56ae399228
open gpu profiling interface
4 years ago
i-robot
9f92ac51b1
!24250 fix some review issues in profiler
Merge pull request !24250 from yanghaitao/yht_fix_review_issue_0927
4 years ago
yanghaitao1
09e2d4bb88
fix some review issues in profiler
4 years ago
yanghaitao1
6a92b2c538
fix reviews issues in profiler
4 years ago
臧庆香
2bc81c48e0
profiling GPU permission
4 years ago
ms_yan
36a8886ca2
Revert "[feat] [assistant] [I3T96T] add new Dataset operator CMUARCTICDataset"
This reverts commit b077aa1cab .
Revert "[feat] [assistant] [I3T96X] add new Dataset operator LibriSpeechDataset"
This reverts commit 4e6f7dc97d .
delete pass_registry_test.cc
comment hiai_nlu_model_multi.pb related line
4 years ago
djc
b077aa1cab
[feat] [assistant] [I3T96T] add new Dataset operator CMUARCTICDataset
4 years ago
djc
4e6f7dc97d
[feat] [assistant] [I3T96X] add new Dataset operator LibriSpeechDataset
4 years ago
lvchangquan
e8d9803258
add profiling codes based on ascend and gpu in pynative mode
4 years ago
gaojing
310841bd51
profiler cleancode
4 years ago
gzhcv
96dfea1e6f
Add scope-level flops in ascend profiler
4 years ago
gzhcv
4c78a47184
Fit Gpu LoopCount for profiler module v2
4 years ago
limingqi107
406c252834
enable mindRT
4 years ago
gzhcv
001985ca25
Fit Gpu LoopCount for profiler module
4 years ago
yanghaitao1
71990c836a
fix review issue
4 years ago
yanghaitao1
127e4d4068
fix profiler pclint&codex
4 years ago
limingqi107
21d168e980
optimize the performance of actor runtimie dynamic shape
4 years ago
gzhcv
9c537a8573
Fix the bug of gpu profiler get device_id incorrectly
5 years ago
gzhcv
96cf55b990
Fix the bug of incorrect op time info
5 years ago
mindspore-ci-bot
ec439fdb97
!12503 refactor the c++ code of gpu profiler
From: @gzhcv
Reviewed-by:
Signed-off-by:
5 years ago
gzhcv
c3a9fe6d06
refactor the c++ code of gpu profiler
Some function from ccsrc/profiler/device/cpu/cpu_data_saver* and ccsrc/profiler/device/gpu/data_saver* could be reused. Some function from ccsrc/profiler/device/cpu/cpu_profiling* and ccsrc/profiler/device/gpu/gpu_profiling* could be reused. This pr is to simplify these code.
5 years ago
He Wei
7d9a783993
[auto-monad] Support side-effects by auto-monad
The basic idea is: exploits data dependency to control the execution order
of side-effect operations, and keep the semantics of ANF unchanged.
The ControlDepend primitive is removed and there are two primitives added:
1. UpdateState:
```
a = Assign(para, value)
```
became:
```
a = Assign(para, value, u)
u = UpdateState(u, a)
```
2. Load:
```
x = Add(para, value)
```
became:
```
p = Load(para, u)
x = Add(p, value)
u = UpdateState(u, p)
```
5 years ago
mindspore-ci-bot
2cfd913e2b
!11830 Add cpu operator profiling and heterogeneous timeline
From: @gzhcv
Reviewed-by:
Signed-off-by:
5 years ago
gzhcv
2617f6c620
Add cpu profiler
5 years ago
gzhcv
ccc9ea0317
Fix the bug of step_trace cannot recognize correct fp/bp node in train_eval mode
5 years ago
mindspore-ci-bot
03f88c6f44
!11271 Fix the bug of step_trace cannot get the step_trace_point name in callback scene
From: @gzhcv
Reviewed-by: @ouwenchang,@lilongfei15
Signed-off-by: @lilongfei15
5 years ago
gzhcv
ce66e8cf4e
Fix the bug of step_trace cannot get the step_trace_point name in callback scene
5 years ago
gzhcv
3a40bfc01d
fix the bug of Profiler module do not print meaningful error when training process unexpectedly stopped
5 years ago
gzhcv
de3a653c57
fix the bug of step_trace incorrect content in inference scene
5 years ago
gzhcv
35996eafcf
modified the permisson of gpu profiler file and directory
5 years ago
gzhcv
3d6c1fc5f6
fix the bug of step_trace
5 years ago
gzhcv
6f6b56bfe1
add gpu step_trace
5 years ago
yanghaitao
9770be4bab
gpu profiling
5 years ago
gzhcv
f0f4ee985b
gpu_timeline(python code)
update mindspore/profiler/parser/integrator.py.
update mindspore/profiler/profiling.py.
5 years ago
yelihua
f2f35d2176
fix the bug for sending suspend
5 years ago
wangyue01
2d9499b13f
modify GPU profiler to satisfy code standard
5 years ago
yuximiao
e9add03ca8
add gpu timeline
5 years ago
askmiao
5c25cb6f0c
fix the issuse, repeated initialization can't exit.
5 years ago
askmiao
42111a8033
fix multiple epoch data issue
5 years ago
askmiao
5a817d7444
add log and modify log level for gpu profiler
5 years ago
yelihua
31e61f71eb
add data saver module
5 years ago
askmiao
25cae1a2e7
add profiler featrue
5 years ago