buxue
0eab785cfa
unify dump path and support npy format
4 years ago
John Tzanakakis
b5e70f7231
use device type in dump file name when trans_flag=false
4 years ago
buxue
563888996f
fix ReviewBoot and CodeDex
4 years ago
mindspore-ci-bot
90828cc0ac
!15448 Fixing multi graph dump
From: @parastooashtari
Reviewed-by: @john_tzanakakis,@robingrosman
Signed-off-by: @john_tzanakakis
4 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
4 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
4 years ago
buxue
71866950cf
change log level from info to warning when use dump in PyNative mode
4 years ago
hwjiaorui
53a1192973
clean code
4 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
mindspore-ci-bot
9e48d6527a
!7131 Change directory to read the overflow dumps from
Merge pull request !7131 from Harshvardhan Gupta/fix-overflow
5 years ago
Harshvardhan Gupta
e77e816f1d
fix overflow dump path
5 years ago
caifubi
b17b4abf7d
Fix async data dump failed
5 years ago
laiyongqiang
bd8aeefd95
disable memory reuse for selected op in e2e dump
5 years ago
caifubi
32cd8d8135
fix codex
5 years ago
caifubi
5d8e493834
Fix GPU dump bug
5 years ago
jjfeing
37ec5c0a1f
fix code warning
5 years ago
caifubi
0bf82e34c2
Fix MindInsight Debugger OverFlow Error
5 years ago
caifubi
1480c93d04
Data Dump Bug Fix
1. Remove old e2e dump json
2. Remove warning log
3. Add device id to e2e dump path
4. Fix bug of dump json parse failed after hccl_init
5 years ago
caifubi
372c2e7951
Combine Async Dump and E2E Dump
5 years ago