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)
```
4 years ago
xsmq
73b7154e55
fix cmakelint error
4 years ago
mindspore-ci-bot
db741b2fb7
!10826 cpp st framework and script
...
From: @zhoufeng54
Reviewed-by: @kisnwang,@xsmq
Signed-off-by:
4 years ago
zhoufeng
a5b2b08035
cpp st fwk and script
...
Signed-off-by: zhoufeng <zhoufeng54@huawei.com>
4 years ago
yanghaoran
4e9c606d7d
remove deprecated cmake functions
4 years ago
xuyongfei
c9b072b94d
remove serving in mindspore repo
4 years ago
yanghaoran
306bbe0e65
Synchronize latest Ascend software suite 09 Dec 2020, with refactored GraphEngine
4 years ago
xiaoyisd
424999267a
mac build
4 years ago
jonyguo
663f121a11
update run 20201128
4 years ago
zhoufeng
183742009f
mindspore cxx api for 310 inference
...
Signed-off-by: zhoufeng <zhoufeng54@huawei.com>
4 years ago
liubuyu
d914f617ed
fix compile warning
4 years ago
yanghaoran
0bd4c218d4
cmake check if required packages exist
4 years ago
gukecai
264a556654
ascend profling
4 years ago
zhoufeng
22ec976ef7
fix compilation warnings
...
Signed-off-by: zhoufeng <zhoufeng54@huawei.com>
5 years ago
xuyongfei
3554cad325
update serving cpp_client compiler; update serving acl build option
5 years ago
liubuyu
195f04e50e
compile the core directory into a separate static library
5 years ago
mindspore-ci-bot
c68b92e081
!4026 fix cmakelist while compiling with debug mode
...
Merge pull request !4026 from 34bunny/CMake-debug-mode-fix
5 years ago
TFbunny
ca8de06d18
fix build with debug mode
5 years ago
lingyunli63
b38d8ee837
use akg.ms instead of _akg
5 years ago
xsmq
5087945479
回退 'Pull Request !3236 : use akg to compile gpu ops rather than _akg'
5 years ago
mindspore-ci-bot
d469a347f8
!3236 use akg to compile gpu ops rather than _akg
...
Merge pull request !3236 from lingyunli63/use_full_akg_to_support_gpu
5 years ago
lingyunli63
42017a19e6
enable compile gpu in akg
5 years ago
hexia
ba5fa502cc
restructure
5 years ago
xuyongfei
314208633b
serving add acl support, extract common inference interface
5 years ago
ervinzhang
bd5a777f81
introducing new C++ API
5 years ago
ZPaC
a057639abc
Add pslite dependency
5 years ago
Shida He
4c056855e0
Implementation for mindspore debugger
5 years ago
dinghao
8d76c708df
init serving
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
yanghaoran
8da4c1a763
synchronize latest ascend software 04 Jun 2020
5 years ago
zhoufeng
e0c3ec6c79
check gcc version, check patch is found or not
5 years ago
dengwentao
08968c2744
modify tvm build
5 years ago
zhoufeng
638b119099
windows sqlite patch
5 years ago
chenjianping
1286767d0e
support building on windows
5 years ago
zhoufeng
2dd60b4ce3
pack via cpack
5 years ago
chenzomi
65a49a21e5
fix complite error while using .so with clang on macos
5 years ago
kingfo
01822c54d9
fix ME+GE compile error
5 years ago
Wei Luning
73ba399364
remove ge depend in cpu
5 years ago
zhunaipan
930a1fb0a8
initial version
...
Signed-off-by: leonwanghui <leon.wanghui@huawei.com>
5 years ago