hwjiaorui
e97df3a58f
clean code
4 years ago
baihuawei
41de02a58c
ascend support nontask sink
4 years ago
zhaosida
00118a1467
code clean master
4 years ago
kswang
9e8156b020
clean code
4 years ago
ZPaC
a9a0f590e6
Fix master static check
4 years ago
lvchangquan
09c54c7923
use op transdata to improve performance in print process
4 years ago
i-robot
b2111fcdf5
!18909 modify log level for pynative ascend
Merge pull request !18909 from chujinjin/modify_log_level_for_pynative_ascend
4 years ago
chujinjin
ac3670ef91
modify log level for pynative ascend
4 years ago
yuchaojie
bf13a8a01e
support group conv2d in pynative
4 years ago
i-robot
32a54eb4eb
!15330 add updated paramter for graph
Merge pull request !15330 from kisnwang/add-updated-paramter-for-graph
4 years ago
kswang
42155e7e5c
add updated parameter for graph
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
LaiYongqiang
d4d6fb940d
memory reuse code clean
4 years ago
chujinjin
1dd950218b
modify log level for pynative
4 years ago
John Tzanakakis
7d460de8b4
adapt offline debuger to new dump, sync support for iteration ranges, GPU default dump mode correction
4 years ago
jiangshuqiang
6154f957fb
fix static check
4 years ago
zhaosida
d2be1b1bd7
code clean master
4 years ago
mindspore-ci-bot
41eaf3f58d
!16708 Handle GraphKernel node in PSEmbeddingCache
From: @dayschan
Reviewed-by: @limingqi107,@gaoxiong1
Signed-off-by: @gaoxiong1
4 years ago
liuxiao93
2a3a787049
add host_format for device_info of MetaTensor.
4 years ago
dayschan
93937537b2
Bugfix in PSEmbeddingCache, handle GraphKernel nodes
4 years ago
mindspore-ci-bot
84607e3a51
!15890 fix an allreduce calculate bug in pynative mode
From: @lvchangquan
Reviewed-by:
Signed-off-by:
4 years ago
lvchangquan
0b09fdf94c
fix an allreduce bug with two streams sync problem
4 years ago
ZPaC
12f95b51f4
Add server code part2
4 years ago
Margaret_wangrui
b39b3d7dd5
fix bot warnings
4 years ago
mindspore-ci-bot
b7554d574f
!15590 fix addr is null
From: @jjfeing
Reviewed-by: @zhoufeng54,@kisnwang
Signed-off-by: @kisnwang
4 years ago
jjfeing
77e9b0c913
fix addr is null
4 years ago
lvchangquan
bbd4ff9346
fix some pclint warnings in master
4 years ago
mindspore-ci-bot
0fe493e205
!15161 support hbm perfermance test
From: @laiyongqiang
Reviewed-by: @jjfeing,@majorzhang
Signed-off-by: @majorzhang
4 years ago
laiyongqiang
de0f6edf5a
support hbm profile
4 years ago
mindspore-ci-bot
d96420553b
!14843 Memory reuse switch
From: @ding_fei_fei
Reviewed-by: @kingxian,@kingxian
Signed-off-by: @kingxian,@kingxian
4 years ago
dingpeifei
8d830f1e5c
Memory reuse switch
5 years ago
limingqi107
b3a5ccebc3
fix codedex
5 years ago
tanghuikang
c8a14ba016
Clean code
5 years ago
lizhenyu
a87b141cf9
init device address for anf node
5 years ago
mindspore-ci-bot
d4a0df8a94
!14483 Orederd value nodes before allocate memory
From: @laiyongqiang
Reviewed-by: @jjfeing,@zhoufeng54
Signed-off-by: @zhoufeng54
5 years ago
laiyongqiang
4526ce6845
fix reallocate memory bug for communication op
5 years ago
laiyongqiang
4bf386aa9f
orederd value nodes before allocate memory
5 years ago
kswang
bfc51f96ce
support launch kernel for graph mode
5 years ago
tanghuikang
e8382c6187
Ingnore transpose with nop_op attr in pynative infer
5 years ago
zhoufeng
b7e5f956e5
workspace of comm op can be reused
Signed-off-by: zhoufeng <zhoufeng54@huawei.com>
5 years ago
mindspore-ci-bot
fb31e724aa
!13093 Enable tbe dynamic shape op for run op
From: @HulkTang
Reviewed-by: @zhoufeng54,@jjfeing
Signed-off-by: @jjfeing
5 years ago
mindspore-ci-bot
c69142fdc1
!12968 update reshape type for 3d nodes
From: @liubuyu
Reviewed-by:
Signed-off-by:
5 years ago
tanghuikang
7138bf66f6
Enable tbe dynamic shape op for run op
5 years ago
liubuyu
518818fbef
reshape type for 3d nodes
5 years ago
tanghuikang
dac64f30ee
Support ms_function + heterogenous
5 years ago
caifubi
171b468bb3
PyNative AllReduce Bucket
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
mindspore-ci-bot
025fec757c
!12087 optimize the memory alloc error info
From: @limingqi107
Reviewed-by: @kisnwang,@cristoval
Signed-off-by: @cristoval
5 years ago