maning202007
815a04cf75
fix the segmentation fault when open debugger.
5 years ago
Islam Amin
722eb2ec5a
ascend graph dump trigger at data dump
5 years ago
maning202007
b437c0d418
Change debugger version from 1.1.0 to 1.2.0
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
59d2affa97
!10021 Fixed double stutter issue at the end of step for debugger
From: @adelshafiei
Reviewed-by: @john_tzanakakis,@wangyue01
Signed-off-by: @wangyue01
5 years ago
mindspore-ci-bot
cfc9c740b1
!10360 fixed the output address does not exist checking
From: @adelshafiei
Reviewed-by: @john_tzanakakis,@nsyca
Signed-off-by: @john_tzanakakis
5 years ago
Adel Shafiei
b4cd786079
fixed the check on output address
5 years ago
John Tzanakakis
b291861e85
LoadTensors was using a 4-byte size field instead of an 8-byte size field
don't load tensors if the type is none
5 years ago
mindspore-ci-bot
512cd38406
!10199 fix env param by adding accepted value
From: @jiang-shuqiang
Reviewed-by:
Signed-off-by:
5 years ago
jiangshuqiang
0411ffa922
fix env param
add true/false/0 for ENABLE_MS_DEBUGGER
5 years ago
yelihua
7217955f4d
change the log level for parial memory reuse
5 years ago
Adel Shafiei
1d795a4f9d
Fixed the double stutter problem at the end of step for debugger
5 years ago
Harshvardhan Gupta
c13f3b50b7
fix codedex issues
5 years ago
mindspore-ci-bot
daee4c2c49
!9856 Fixed the recheck issue for operator overflow watchpoint
From: @adelshafiei
Reviewed-by: @john_tzanakakis,@wangyue01
Signed-off-by: @wangyue01
5 years ago
mindspore-ci-bot
4cbdece50d
!9854 [Debugger] Loading initial parameter values for multi graph
From: @harsh1995
Reviewed-by: @john_tzanakakis,@wangyue01
Signed-off-by: @wangyue01
5 years ago
Adel Shafiei
809c060ae1
fixed recheck issue for operator overflow
5 years ago
Harshvardhan Gupta
0e47952d6d
load initial weights for multi graph
5 years ago
mindspore-ci-bot
f6a5d05707
!9805 [Debugger] Enable watchpoint checks on boolean tensor
From: @harsh1995
Reviewed-by: @wangyue01,@wenkai_dist
Signed-off-by: @wenkai_dist
5 years ago
Harshvardhan Gupta
4b2e1ea9f7
check bool tensors for watchpoints
5 years ago
John Tzanakakis
9dde1470c8
unify debugger terminate across platforms
5 years ago
Adel Shafiei
f4f8ff7d9a
support operation overflow watchpoint for multi-graph
5 years ago
Harshvardhan Gupta
dd0084c52b
improve perf, keep consistent tensor state, fix recheck, check weights at step end
5 years ago
John Tzanakakis
0da014e11d
fix dump breakage due to issue 9511
5 years ago
mindspore-ci-bot
95573571f0
!9511 Codedex change for tensor_loader
From: @liangzhibo
Reviewed-by:
Signed-off-by:
5 years ago
l00591931
1d1cab986d
Codedex change for tensor_loader
5 years ago
Adel Shafiei
870062770b
raise an exception if debugger PORT and/or IP are not set correctly.
5 years ago
Harshvardhan Gupta
7687a55c0a
return error code if prev tensor not found and add validation checks
5 years ago
mindspore-ci-bot
4d19a00c87
!9033 Revamp watchpoint checks, add new conditions, support multiple parameters
From: @harsh1995
Reviewed-by:
Signed-off-by:
5 years ago
Harshvardhan Gupta
561f9082e9
init
5 years ago
Adel Shafiei
a322184057
debugger backend compability support
5 years ago
yelihua
5026ef1d46
load tensors for all graphs
5 years ago
lichen_101010
1b6265fa43
Debugger multi-graph support implementation
Other Contributor: Adel Shafiei, John Tzanakakis
5 years ago
Harshvardhan Gupta
d71b67cebb
fix stray log msg
5 years ago
Yi Huaijie
d7faa77b5e
support int64 shape
5 years ago
Harshvardhan Gupta
727d424553
support watchpoints on weights and bias, add support advanced watchpoints
5 years ago
John Tzanakakis
531c2952b3
fixes input dump files missing on GPU
5 years ago
Harshvardhan Gupta
e6451adc50
generate appropriate error when debugger is used with dataset_sink_mode=True
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
mindspore-ci-bot
6d89f2df8f
!7701 Fix non-termination of training when MI is disconnected
Merge pull request !7701 from Harshvardhan Gupta/fix-non-termination
5 years ago
Harshvardhan Gupta
2c546db2ce
fix terminate issue
5 years ago
Harshvardhan Gupta
81e90c5ece
add recheck
5 years ago
Harshvardhan Gupta
744355a005
remove dbg args from runtime and remove needless argument from IsWatchpoint
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
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
mindspore-ci-bot
d30dece8a9
!6515 Resolve deadlock issue when terminate debugger from UI
Merge pull request !6515 from lichen_101010/terminate_deadlock_issue
5 years ago
Harshvardhan Gupta
e77e816f1d
fix overflow dump path
5 years ago
Harshvardhan Gupta
7c5e0541ba
load inputs before suspending execution in dbg
5 years ago
mindspore-ci-bot
c8ac3d0334
!6591 Fix some safe warnings in debugger
Merge pull request !6591 from maning202007/checknull
5 years ago
lichen_101010
5713ea38b8
resolve terminate issue
terminate issue part 2
clean up code
first draft of deadlock issue
test
resolve terminate deadlock issue
add node level condition
resolve terminate issue
terminate issue part 2
clean up code
first draft of deadlock issue
test
resolve terminate deadlock issue
add node level condition
cleanup code and CI checks
rebase to master and address conflicts
refactor code
fix a bug
5 years ago