John Tzanakakis
ac1847ffac
fix iter 0 and iter 1 being dumped in dir 0, make op_debug_mode optional for sync mode, read input files for offline debugger
4 years ago
buxue
0049109d11
add permission for save files
4 years ago
TinaMengtingZhang
dd6884eb6f
add root graph id to pb file
4 years ago
mindspore-ci-bot
fa1f2c4341
!17003 clean codex
From: @jojobugfree
Reviewed-by: @yuchaojie,@zhoufeng54,@chujinjin
Signed-off-by: @zhoufeng54
4 years ago
TinaMengtingZhang
2fa05b66a1
change device_id to rank_id in dump path
4 years ago
caifubi
1b43bd923b
clean codex
4 years ago
mindspore-ci-bot
e19e14295a
!17773 adapt offline debugger to new dump, sync support for iteration ranges, GPU default dump mode correction
From: @john_tzanakakis
Reviewed-by: @nsyca,@mikef
Signed-off-by: @mikef
4 years ago
John Tzanakakis
7d460de8b4
adapt offline debuger to new dump, sync support for iteration ranges, GPU default dump mode correction
4 years ago
maning202007
c12c0d9a71
fix codecheck for debugger and summary
4 years ago
TinaMengtingZhang
f11d5fa8ad
Unify file name for parameter and CPU dump
4 years ago
mindspore-ci-bot
26e2421d0f
!17547 fixup due to existing dump tests writing to tmp
From: @john_tzanakakis
Reviewed-by: @robingrosman,@robingrosman,@liucunwei
Signed-off-by: @robingrosman
4 years ago
John Tzanakakis
c4739e20eb
fixup due to existing dump tests writing to tmp
4 years ago
mindspore-ci-bot
103869fbc4
!17376 Unified dump entry, async dump multiple steps in different dirs, and async dump multiple specific steps in one training session - finer grain control
From: @john_tzanakakis
Reviewed-by: @mikef,@pandoublefeng
Signed-off-by: @pandoublefeng
4 years ago
John Tzanakakis
1d62e1653e
Unified dump entry, async dump multiple steps in different dirs, and async dump multiple specific steps in one training session - finer grain control
5 years ago
l00591931
319c20824e
fix code checking warning for r1.2
4 years ago
mindspore-ci-bot
17099b048f
!16936 Unify dump directory structure
From: @tina_mengting_zhang
Reviewed-by: @john_tzanakakis,@pandoublefeng
Signed-off-by: @john_tzanakakis
4 years ago
mindspore-ci-bot
bfeb511100
!16967 clean code check
From: @Margaret_wangrui
Reviewed-by: @ginfung
Signed-off-by:
4 years ago
zhangzhaoju
2d667f9ed7
ci format problem fix.
4 years ago
Margaret_wangrui
a7859ecc45
clean code check
4 years ago
TinaMengtingZhang
4926d74570
unify dir path
dump hccl and config json files to dir
update filename for sync dump except cpu dump
update testcases
4 years ago
TinaMengtingZhang
17bc01382a
Revert the change in GenerateDumpPath
5 years ago
buxue
0eab785cfa
unify dump path and support npy format
5 years ago
John Tzanakakis
b5e70f7231
use device type in dump file name when trans_flag=false
5 years ago
buxue
563888996f
fix ReviewBoot and CodeDex
5 years ago
mindspore-ci-bot
90828cc0ac
!15448 Fixing multi graph dump
From: @parastooashtari
Reviewed-by: @john_tzanakakis,@robingrosman
Signed-off-by: @john_tzanakakis
5 years ago
Parastoo Ashtari
f8ed1a7c28
fixed the dump file folder
added log in debugger.cc for pre and post execute
added log in debugger.cc for pre and post execute
fixed the format of the code
removed the repeated lines
fixed format in debugger.cc
add more logs for debugger.cc
fixed the bug in debugger.cc
removed the logs in debugger.cc
5 years ago
buxue
2bda8c21e9
support grad freeze
5 years ago
mindspore-ci-bot
b6f471f636
!15119 change log level from info to warning when use dump in PyNative mode
From: @zhangbuxue
Reviewed-by: @ginfung,@guoqi1024
Signed-off-by: @jjfeing
5 years ago
buxue
71866950cf
change log level from info to warning when use dump in PyNative mode
5 years ago
hwjiaorui
53a1192973
clean code
5 years ago
buxue
ab59f62147
add dump data function for CPU
5 years ago
Islam Amin
722eb2ec5a
ascend graph dump trigger at data dump
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
Adel Shafiei
f4f8ff7d9a
support operation overflow watchpoint for multi-graph
5 years ago
l00591931
1d1cab986d
Codedex change for tensor_loader
5 years ago
caifubi
589dd9e782
fix codex
5 years ago
Harshvardhan Gupta
345b26177f
fix path
5 years ago
jjfeing
56f1bb1b66
add dump data when task error
5 years ago
John Tzanakakis
531c2952b3
fixes input dump files missing on GPU
5 years ago
mindspore-ci-bot
93d394ff9e
!7706 Fixed the misssing input/output tensor dump if there are tensors with the same name
Merge pull request !7706 from AdelShafiei/missingdumpinput
5 years ago
Adel Shafiei
b8fc889368
fixed the problem with missing inputs dumps when using GPU
5 years ago
caifubi
980bfafc64
Check dump absolute path
5 years ago
mindspore-ci-bot
3b0f39623d
!7451 Specify the dump names of constant nodes the same with the names in pb file
Merge pull request !7451 from wangyue/master
5 years ago
mindspore-ci-bot
687e9126aa
!7267 dump kernel inputs/outputs based on the input_output field of the config file.
Merge pull request !7267 from AdelShafiei/kernels_dump
5 years ago
wangyue01
0e6402ada9
Specify the dump name of constant nodes the same with proto file.
5 years ago
mindspore-ci-bot
283ab84884
!7269 dump constant values for each step
Merge pull request !7269 from lichen_101010/dump_constant_values_new
5 years ago
Adel Shafiei
e4ebdc599e
Added input/output kernel dump support based on the config file
5 years ago
lichen_101010
678962d718
implementation for dumping const values for each step
fix no output address error
address clang-format error
address some comments
clang_format check
5 years ago
caifubi
9b76f4ed57
get physical device for gpu
5 years ago
caifubi
e3f47285d7
Fix dump wrong device_id on gpu
5 years ago