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
gzhcv
2617f6c620
Add cpu profiler
5 years ago
mindspore-ci-bot
d8323b5d51
!11342 Support device memeory profiling
From: @yanghaitao1
Reviewed-by: @wangyue01,@lilongfei15
Signed-off-by: @lilongfei15
5 years ago
fangzehua
f97e19f23f
add cache pass
5 years ago
yanghaitao1
8d147deb07
profiler memory
5 years ago
chujinjin
ade9a82c2b
fix device memory leak
5 years ago
mindspore-ci-bot
05ec9352f3
!10294 Add support for CPU memory reuse
From: @ythuang
Reviewed-by:
Signed-off-by:
5 years ago
yitongh
2078b7156f
Add support for CPU memory reuse
5 years ago
chujinjin
b0a2a74bf8
fix coredump on cpu
5 years ago
baihuawei
8f908ae0cf
fix cpu select op type
5 years ago
mindspore-ci-bot
97a10bfa7c
!9455 print trace info when cpu init/run failed
From: @kisnwang
Reviewed-by: @chujinjin,@jjfeing
Signed-off-by: @jjfeing
5 years ago
mindspore-ci-bot
421bf40287
!9448 fix cpu issues
From: @huaweib
Reviewed-by: @kisnwang,@jjfeing
Signed-off-by: @jjfeing
5 years ago
kswang
25f97679fd
print trace info when init/run kernel failed
5 years ago
baihuawei
620e847884
fix cpu issues
5 years ago
chujinjin
701ab0d05f
add cpu pynative mode
5 years ago
mindspore-ci-bot
dabb82ec7a
!8846 host cpu support dynamic shape
From: @liubuyu
Reviewed-by: @jjfeing
Signed-off-by:
5 years ago
liubuyu
9f5ab8f76f
host cpu support dynamic shape
5 years ago
kswang
3aa875a19f
add trace info for cpu
5 years ago
baihuawei
e6fb4b9f69
fix unnecessary sync
5 years ago
baihuawei
1ca333a3e5
fix cpu kernel select
5 years ago
baihuawei
cff87d6f65
fix cpu kernel select
5 years ago
mindspore-ci-bot
169bf59fd4
!7525 fix cpu type exception
Merge pull request !7525 from baihuawei/cpu_type_exception
5 years ago
baihuawei
9f6a6058f5
fix cpu type excption
5 years ago
mindspore-ci-bot
56bcaa5039
!7410 enable async run graph
Merge pull request !7410 from kisnwang/enable-async-run-graph
5 years ago
kswang
ece27f313e
enable async run
5 years ago
Harshvardhan Gupta
744355a005
remove dbg args from runtime and remove needless argument from IsWatchpoint
5 years ago
kswang
db985ab909
add ms exception
5 years ago
caifubi
d3b978147f
Ascend Dynamic Shape
5 years ago
kswang
11989b5e30
enable async run
5 years ago
mindspore-ci-bot
f8b962a175
!6880 Check the selected kernel attr not null before updating device info for cpu kernel
Merge pull request !6880 from YuJianfeng/master
5 years ago
yujianfeng
d1b7472eea
Check the selected kernel attr not null before updating device info
5 years ago
kswang
ecfd2a2fc5
check kernel exist when select kernel
5 years ago
yujianfeng
d96044fbd9
Add max match rule for cpu kernel selection
5 years ago
jjfeing
37ec5c0a1f
fix code warning
5 years ago
kswang
80f6c084d8
fix build -p on gettime error
5 years ago
kswang
b5e579567c
fix unnecessary tensor sync
5 years ago
Zhang Qinghua
c0070d3d49
Use the unified Execute function to run Graph or Single Op Graph.
5 years ago
kswang
5614b2ba6c
add tensor sync status
5 years ago
kswang
756bb6d53f
async run graph
5 years ago
yujianfeng
e949540062
Support int64 for cpu sparse optimizers
5 years ago
lirongzhen1
531ad4df70
prepare to support int64
5 years ago
zhoufeng
663278112f
optimize code compile performance
Signed-off-by: zhoufeng <zhoufeng54@huawei.com>
5 years ago
chenzomi
bb125cb309
change unsupport to unsupported
5 years ago
baihuawei
517fcc16ee
fix gpu heterogeneous
5 years ago
kswang
69c096c2a6
dlopen cpu mpi adapter
5 years ago
liubuyu
d81862a916
decoupling core and context
5 years ago
kswang
3ce0f33b27
add internal output tensor
5 years ago
kswang
76733ce816
fix cpu multi graph mem error
5 years ago
kswang
1b1351fa17
fix cpu nonop fp16 error
5 years ago
mindspore-ci-bot
e4c8365dfe
!3358 fix cpu nonop net
Merge pull request !3358 from kisnwang/fix-cpu-nonop-error
5 years ago