i-robot
69c5021bb5
!20995 pyfunc cpu kernel
Merge pull request !20995 from chenweifeng/cpu-dynamic-input
4 years ago
wilfChen
d6fffdad6e
support dynamic inputs & outputs
4 years ago
limingqi107
09ceb1cf5b
unified runtime pclint fixed
4 years ago
i-robot
5a58327a2e
!21112 unified runtime pclint fixed
Merge pull request !21112 from limingqi107/bug_fix
4 years ago
limingqi107
fe36a158af
unified runtime pclint fixed
4 years ago
limingqi107
8c690e3d18
unified runtime codedex fixed
4 years ago
ZPaC
1ca91aa895
cross silo
4 years ago
buxue
733f765063
add security compilation options
4 years ago
limingqi107
ae46d0beb9
fix bug of CPU not support more then 2G copy
4 years ago
limingqi107
008dbf2da0
fix device bug of the input empty
4 years ago
yuchaojie
bf13a8a01e
support group conv2d in pynative
4 years ago
i-robot
0966595cfd
!18538 support FracZ format conversion when conv2d group > 1
Merge pull request !18538 from yuchaojie/op_select
4 years ago
yuchaojie
689158f79b
FracZ format conversion when conv2d group > 1
4 years ago
kswang
3247c00555
optimize heter memcpy
4 years ago
limingqi107
b25d00731c
fix bug of CPU actor runtime
4 years ago
chengxianbin
a3cbaea861
fix code review problems
4 years ago
mindspore-ci-bot
099a73ef0e
!17523 fix CPU lstm bug in pynative mode
From: @huaweib
Reviewed-by: @zhoufeng54,@kisnwang
Signed-off-by: @kisnwang
4 years ago
baihuawei
e594463960
fix cpu lstm and precision issues
4 years ago
TinaMengtingZhang
f11d5fa8ad
Unify file name for parameter and CPU dump
4 years ago
mindspore-ci-bot
cc2552a589
!17142 Fix pclint plus on master
From: @zuochuanyong
Reviewed-by: @kisnwang,@zhoufeng54
Signed-off-by: @zhoufeng54
4 years ago
mindspore-ci-bot
17099b048f
!16936 Unify dump directory structure
From: @tina_mengting_zhang
Reviewed-by: @john_tzanakakis,@pandoublefeng
Signed-off-by: @john_tzanakakis
4 years ago
zuochuanyong
bc837165c6
fix pclint plus on master
4 years ago
TinaMengtingZhang
4926d74570
unify dir path
dump hccl and config json files to dir
update filename for sync dump except cpu dump
update testcases
4 years ago
chengxianbin
0c559f6d57
upload unify cpu ops info library code
4 years ago
zuochuanyong
5021ec507c
fix code check on branch master
4 years ago
liuxiao93
2a3a787049
add host_format for device_info of MetaTensor.
5 years ago
mindspore-ci-bot
965f46e481
!15718 add partial internal parameters
From: @kisnwang
Reviewed-by: @limingqi107,@zhoufeng54,@jjfeing
Signed-off-by: @jjfeing
5 years ago
kswang
abf295560c
add partial internal parameters
5 years ago
buxue
0eab785cfa
unify dump path and support npy format
5 years ago
mindspore-ci-bot
5c4729744c
!15776 support CPU actor runtime
From: @limingqi107
Reviewed-by: @cristoval,@wilfchen
Signed-off-by: @wilfchen
5 years ago
limingqi107
5b0fef739a
support CPU actor runtime
5 years ago
buxue
563888996f
fix ReviewBoot and CodeDex
5 years ago
luopengting
0cb9a2d218
enhance RDR support on CPU
1. collect backend graph and graph execution order
2. add trigger point when CPUKernelRuntime::Run() raise "Launch kernel failed"
5 years ago
mindspore-ci-bot
d96420553b
!14843 Memory reuse switch
From: @ding_fei_fei
Reviewed-by: @kingxian,@kingxian
Signed-off-by: @kingxian,@kingxian
5 years ago
dingpeifei
8d830f1e5c
Memory reuse switch
5 years ago
mindspore-ci-bot
a5fd682844
!14992 fix dynamic_mem free double in ReduceAll and ReduceAny in CPU
From: @zhangbuxue
Reviewed-by: @guoqi1024,@guoqi1024,@zhaizhiqiang
Signed-off-by: @zhaizhiqiang
5 years ago
buxue
87355c6b1e
fix dynamic_mem free double in ReduceAll and ReduceAny in CPU
5 years ago
mindspore-ci-bot
64148f2fa7
!14599 fix cpu output tensor sync
From: @huaweib
Reviewed-by: @kisnwang,@jjfeing
Signed-off-by: @jjfeing
5 years ago
baihuawei
570ce2b811
fix cpu output tensor sync
5 years ago
kswang
90045603a0
fix cpu mem menager codex
5 years ago
mindspore-ci-bot
33edd67261
!14667 add dump data function for CPU
From: @zhangbuxue
Reviewed-by:
Signed-off-by:
5 years ago
buxue
ab59f62147
add dump data function for CPU
5 years ago
mindspore-ci-bot
2a2cbbfa4c
!14484 extract session load inputs
From: @kisnwang
Reviewed-by: @zhoufeng54,@jjfeing
Signed-off-by: @jjfeing
5 years ago
kswang
97a97e02db
extract load input
5 years ago
hwjiaorui
dac67cbabb
clean code
5 years ago
baihuawei
a1c20e568a
add cpu micprecision
5 years ago
tanghuikang
dac64f30ee
Support ms_function + heterogenous
5 years ago
zuochuanyong
3fa26683ac
nlp perf(Pynative): change memory sync mode from synchronous to asynchronous in SyncHostToDevice
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
gzhcv
2617f6c620
Add cpu profiler
5 years ago