maning202007
ffeb929a0d
Fix the decode error in debugger when send multigraphs
4 years ago
louie5
ef98f259ce
create directory of log files using 'GLOG_log_dir' in c++ frontend while it does not exist
check the real path of directory whether valid
4 years ago
i-robot
fa0d79478d
!19169 actor runtime support CPU dump
Merge pull request !19169 from limingqi107/actor_runtime2
4 years ago
i-robot
66c03ebc06
!19314 Fix receive WaitCMD instead of terminate for multigraph on GPU issue
Merge pull request !19314 from parastooashtari/master
4 years ago
limingqi107
e761655a42
actor runtime support CPU dump
4 years ago
Parastoo Ashtari
a153f6b35f
Fix receive WaitCMD instead of terminate for multigraph GPU
4 years ago
zhousiyi
a5b4e7bbf8
lift fv before grad except weight, then convert
switch(cond, partial(g1, xs), partial(g2, ys))(Zs)
to
switch(cond, g1, g2)(Xs, Ys, Zs)
switch_layer(index, make_tuple(partial(g1, xs), partial(g2, ys)))(Zs)
to
switch_layer(index, make_tuple(g1, g2))(Xs, Ys, Zs)
put Zs at last when unifyparameter as it may have u-monad or io-monad
use joined args other than broadened one as some extra parameter which is not a parameter of while_header can be add to while_body
inline fprop_switch forcely
reorder the parameter if one of the parameter is Monad when incorporate call
incorporate switch tuple_getitem if item 0 of tuple is EnvInstance or
item 1 of tuple is bprop function
addn with shape() and shape(1)
remove context_ from FuncGraphEvaluator to make it re-entry able to resolve evaluator stuck issue because of re-entry of the same FuncGraphEvaluator
5 years ago
i-robot
35e35d5af4
!19077 Trace CNode Enter&Leave during StackFrame jump.
Merge pull request !19077 from 张清华/opt
4 years ago
i-robot
a230e0e62c
!19185 Fix missing parameter name issue in dump and incorrect read tensor output size in offline debugger
Merge pull request !19185 from TinaMengtingZhang/bugfix_miss_param_name
4 years ago
i-robot
bb76628b70
!18983 infer optimize to support determined fun first goes
Merge pull request !18983 from lanzhineng/infer_optv3
4 years ago
TinaMengtingZhang
9a68c26fc6
Fix issues: 1.missing parameter name in dump; 2.too much read tensor output in offline debugger
4 years ago
Parastoo Ashtari
4e4be17648
SetDebugger for MindRTBackend and clean debug_actor code
4 years ago
limingqi107
406c252834
enable mindRT
4 years ago
Zhang Qinghua
3b85a38c9d
Trace CNode Enter&Leave during StackFrame jump.
4 years ago
lanzhineng
e2adafed3b
infer opt: determined fun graph first runs & opt exception handle
4 years ago
Parastoo Ashtari
e2a4172560
make gpu dump truly async
4 years ago
i-robot
3629df552c
!18937 upgrade_ascend_0626_mindspore
Merge pull request !18937 from mindspore_ding/upgrade_ascend_0626
4 years ago
dingpeifei
63784e49f5
upgrade_ascend_0626_mindspore
4 years ago
i-robot
97fa0e6398
!18613 fix issues for code check
Merge pull request !18613 from jiangshuqiang/fix_code_check
4 years ago
i-robot
007707904e
!18897 use -1 iteration for init state and fix missing tensor read outputs
Merge pull request !18897 from john_tzanakakis/jt_bug_fixes
4 years ago
i-robot
9886aa613e
!18845 Fix dump failure when const node is string type
Merge pull request !18845 from TinaMengtingZhang/bugfix_dump_fail_with_summaryop
4 years ago
John Tzanakakis
c85d65c0ef
use -1 iteration for init state and fix missing tensor read outputs
4 years ago
i-robot
29e42efd98
!18867 Delete unnecessary logs in dump
Merge pull request !18867 from maning202007/delete_unnecessary_log
4 years ago
i-robot
c986916d48
!18675 [Debugger] Update two arguments "is_output" and "rank_id" in offline debugger python API
Merge pull request !18675 from TinaMengtingZhang/new_arg_is_output
4 years ago
maning202007
cb6e21a16a
Delete unnecessary logs in dump
4 years ago
jiangshuqiang
0c9d2629b1
fix code check issues
4 years ago
TinaMengtingZhang
3ec5c760d7
Fix dump failed with StringImm node (i.e. summary op)
4 years ago
i-robot
708e56f659
!17899 Fix compile cache bug for resent50
Merge pull request !17899 from LiangZhibo/cache
4 years ago
i-robot
d621cdbc97
!18790 validate dump iteration and net_name, use device shape for trans_flag false
Merge pull request !18790 from john_tzanakakis/jt_bug_fixes
4 years ago
l00591931
8ae5d7cc84
Fix compile cache for resnet50
4 years ago
i-robot
6d254ac409
!18679 call nnacl implement for matmul and batchmatmul on ARM
Merge pull request !18679 from zhangbuxue/call_nnacl_implement_for_matmul_and_batchmatmul_on_ARM
4 years ago
buxue
f3dea76b25
call nnacl implement for matmul and batchmatmul on ARM
4 years ago
Parastoo Ashtari
8d248cd925
Add debug info for online debugger
4 years ago
John Tzanakakis
baad7b48d3
validate dump iteration and net_name, use device shape for trans_flag false
4 years ago
TinaMengtingZhang
4e8db5e115
change arg 'is_parameter' to 'is_output' and rename device_id to rank_id in python api
4 years ago
i-robot
d4aca69981
!18448 Add debugger to new GPU runtime
Merge pull request !18448 from parastooashtari/new_unified_gpu
4 years ago
i-robot
c2e03304ef
!18695 [Bug][MI]Optimize the prompt information when not enabling RDR
Merge pull request !18695 from wangjunbao/master
4 years ago
Parastoo Ashtari
6ed17d52b1
Add debugger to new unified GPU runtime
4 years ago
TinaMengtingZhang
6b090679ab
fix two issues: dump with input_output=1 and log type name
4 years ago
wangjunbao
2367337c2e
Modify the warning message when not enabling RDR
4 years ago
wangjunbao
62e5e5bdb5
Modify the warning message when not enabling RDR
4 years ago
lanzhineng
fc8ec7fc49
infer_optv3:infer optimize to find exit of branches and resolve the
endless issue.
4 years ago
ms_yan
030030deb2
delete GetEnvConfigFile func as it no longer used
4 years ago
i-robot
ec999d3fa5
!18477 Modify the error message of abstract join
Merge pull request !18477 from huangbingjian/abstract_join
4 years ago
i-robot
eb0bad4ad7
!16378 Export bprop func_graph to mindir
Merge pull request !16378 from YuJianfeng/bprop_mindir
4 years ago
i-robot
4dd14e7b8f
!18496 overflow dump may not gen data
Merge pull request !18496 from john_tzanakakis/jt_bug_fixes
4 years ago
huangbingjian
d695554ae5
modify the error message of abstract join
4 years ago
yujianfeng
e88d058787
Add bprop cache
5 years ago
John Tzanakakis
690cf18cba
overflow dump may not gen data
4 years ago
TinaMengtingZhang
dc6a661a2e
change validator to accept -1 as valid input and fix scope filename issue in async
4 years ago