zhoufeng
b7bb53ff73
build libmindspore_backend.so
Signed-off-by: zhoufeng <zhoufeng54@huawei.com>
4 years ago
zhoufeng
f49b195c39
extract common as an independent shared library
Signed-off-by: zhoufeng <zhoufeng54@huawei.com>
4 years ago
shenwei41
ff75314719
upgrade ascend 20220211
4 years ago
marui
d47e79b04c
Refactor ccsrc directories and CMakeLists files
4 years ago
huangbingjian
63a89925ff
remove ControlDepend and its use
5 years ago
liubuyu
518818fbef
reshape type for 3d nodes
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
Yi Huaijie
d7faa77b5e
support int64 shape
5 years ago
fary86
fcbb3e0edc
Refactor ms_context implementation
5 years ago
liubuyu
d81862a916
decoupling core and context
5 years ago
WilliamLian
0179724dcd
spilit unspported transdata to two transdata from special format -> defualt -> default -> special
5 years ago
chenfei
1f1a07e645
don't insert assign from condition to true branch of while
5 years ago
root
1b6f85dec8
split tuple parameter to parameters
add function trans tuple to maketuple
5 years ago
liubuyu
43c79eb853
mindspore path adjust
5 years ago
He Wei
43e0967024
Decouple ir::Tensor class from python
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
yujianfeng
f15cb6b7c9
Add sort by index for each group of AllReduce
5 years ago
WilliamLian
b86016a26f
remove the useless transdata and cast of control depend node
5 years ago
chujinjin
7465abc798
optimize transdata for pynative
5 years ago
mindspore-ci-bot
04398cf88e
!1433 add tensor_minnie and separate py from ir
Merge pull request !1433 from leopz/tensor_base
5 years ago
leopz
4508134ceb
add tensor_minnie and separate py from ir
5 years ago
huanghui
1d65ae598a
extract const_to_attr_strided_slice_grad pass
5 years ago
yujianfeng
31d8db9fc6
Add broadcast fusion pass
5 years ago
lianliguang
00e4306518
convert all tuple output to maketuple
5 years ago
mindspore-ci-bot
9be1a01db6
!85 Optimize depend edge with make tuple input
Merge pull request !85 from YuJianfeng/master
6 years ago
Wei Luning
73ba399364
remove ge depend in cpu
6 years ago
YuJianfeng
7f53bb062d
Optimize depend edge with make tuple input
6 years ago
zhunaipan
930a1fb0a8
initial version
Signed-off-by: leonwanghui <leon.wanghui@huawei.com>
6 years ago