yelihua
7c3994e48e
use Common::CreatePrefixPath instead of Common::GetRealPath
4 years ago
Zhang Qinghua
d75da759d6
Return Depend CNode's first node if the dependant has a value.
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
huanghui
1630dcb0c8
add subdirectory for log and ir_dump
4 years ago
zhangzhaoju
610ee46ebe
Add file open failure info while file open failed
4 years ago
lianliguang
dd57fcf8d7
add funcgraph py dump and dump more info for dynamic shape
4 years ago
buxue
0049109d11
add permission for save files
4 years ago
lianliguang
8a9b388ac3
clean CXX warning
4 years ago
chenfei
41c8f2ffb6
codex clean 2
4 years ago
mindspore-ci-bot
74b562d536
!16663 Add PrimalDebugInfo and change AD ways to add primal attrs and debug info to bprop_fg cnode.
From: @liangzhibo
Reviewed-by: @ginfung,@ginfung
Signed-off-by:
4 years ago
l00591931
8d272eed7e
Change Bprop find all nodes
5 years ago
Margaret_wangrui
a7859ecc45
clean code check
4 years ago
simson
c0b6f4f564
fix static check
4 years ago
l00591931
d1651800bf
Fix codecheck for master
5 years ago
mindspore-ci-bot
1c07ab866b
!15817 Add primal_attr to transfer attribute between forward and backward operator.
From: @liangzhibo
Reviewed-by:
Signed-off-by:
5 years ago
l00591931
befc7a9dea
Add primal_attr to link between forward and backward node attr
5 years ago
Zhang Qinghua
5ad27e7639
Evaluate the func graph in simulative stack, not to call recursively.
5 years ago
huanghui
a2ba47e18a
1. Add unique id for .dat and .dot file to avoid covering
2. Dump the end graph in gpu session and cu session
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
louei5
f00032145f
Add timestamp into filename of saving recorder file and change DumpIR method
5 years ago
chenfei
874f350eb9
add dump level
5 years ago
yujianfeng
ba311cf57f
Add cnode attr for recomputation
5 years ago
l00591931
d20faa9c71
change dumpIR print
5 years ago
mindspore-ci-bot
2c13468772
!9852 improve functionalility of dumpir
From: @bairongz
Reviewed-by:
Signed-off-by:
5 years ago
Bairong
2368955eeb
improve dumpIR
5 years ago
Zhang Qinghua
9874ffa3ea
Dump FV nodes in *.ir file.
ex.) $(fg_xxx.xx:[CNode]xx)
5 years ago
Bairong
b19df1177d
print more info in DumpIR
5 years ago
huanghui
fa6c23358a
Move some ir files which backend optpass dumped to the fold: verbose_ir_files
5 years ago
huanghui
b7519b7418
unify save_graphs_path
5 years ago
jjfeing
d050422c4f
ir id move to end
5 years ago
mindspore-ci-bot
014ea619a8
!6240 Fix review_bot and codedex problems
Merge pull request !6240 from DeshiChen/0910_review_bot
5 years ago
dayschan
3c2da3197f
Fix review_bot and codedex problems
5 years ago
Margaret_wangrui
96daa72f20
fix DumpIR arg
5 years ago
dayschan
37a48f6aac
GraphKernel supports GPU
1. Update akg submodule
2. Refactor akg_kernel_build, akg_ascend_kernel_build, akg_gpu_kernel_build
3. Add akg_kernel_json_decoder to support converting kernel_json to AnfNode.
4. Add GraphKernel Cost Model. (mindspore/_extends/graph_kernel)
5. Add some GraphKernel passes to GpuSession, move these passes to backend/optimizer/graph_kernel.
6. Add global id for ir files.
7. Fix bug in ConstInputToAttr.
5 years ago
zhoufeng
663278112f
optimize code compile performance
Signed-off-by: zhoufeng <zhoufeng54@huawei.com>
5 years ago
He Wei
4eb81d7934
Rename AnfNode::user_data related functions to follow naming rule
5 years ago
liubuyu
f4bc0bc9fe
move the dependency of utils to core
5 years ago
He Wei
32379f3e7a
Decouple ir from frontend
5 years ago
He Wei
ee1510da41
Eliminate circular dependency between 'ir' and 'device/kernel'
5 years ago
liubuyu
43c79eb853
mindspore path adjust
5 years ago
gong chen
a6dfa281ea
Init GraphKernel.
- It provides a unified style to express graph and kernel for user.
- It provides a unified IR to represent graph and kernel for developer.
- It breaks the boundary between graph and kernel.
- It provides more opportunities to do compile optimization.
5 years ago
lianliguang
c4aeb5a0b8
add format chooice when kernel selecting reduce or raise precision
6 years ago
chenjianping
1286767d0e
support building on windows
6 years ago
Zhang Qinghua
b9728f4e9e
Fix the issue in debug info.
6 years ago
leonwanghui
322ffef3e4
Fix some typo errors in mindspore ir module
Signed-off-by: leonwanghui <leon.wanghui@huawei.com>
6 years ago
zhunaipan
930a1fb0a8
initial version
Signed-off-by: leonwanghui <leon.wanghui@huawei.com>
6 years ago