wangshuide2020
72e938eb06
change dimension of input for FusedBatchNormEx from 2D to 4D in test_two_matmul_batchnorm_ex.
2021-02-25 09:37:59 +08:00
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)
```
2021-02-08 09:01:15 +08:00
jinyaohui
30a27b2adb
modify Gelu、FastGelu to GeLU and FastGeLU
2021-02-05 17:19:52 +08:00
mindspore-ci-bot
74652eb942
!12044 modify pack to stack
...
From: @jinyaohui
Reviewed-by:
Signed-off-by:
2021-02-04 21:02:09 +08:00
jinyaohui
8022f9a6ed
modify pack to stack
2021-02-04 18:54:31 +08:00
yangzhenzhang
726ea32778
merge parameter slice compile graph only once
2021-02-03 19:39:32 +08:00
l00591931
9ec100d069
Change TensorAdd to Add, from r1.1 to master
2021-02-01 17:53:52 +08:00
mindspore-ci-bot
9fa0499fa0
Change GatherV2 to Gather r1.1 to master
2021-01-30 14:13:47 +08:00
yangzhenzhang
cbca482e59
delete useless parameter in pipeline parallel
2021-01-21 19:05:40 +08:00
yangzhenzhang
7303c3d3b8
add group ckpt
2021-01-21 14:41:05 +08:00
lilei
9a45c4419c
modify batch_normal
2021-01-13 20:59:46 +08:00
yangzhenzhang
9da3f9bec9
mini step grad accumulation
2021-01-06 09:25:06 +08:00
mindspore-ci-bot
2e684df5b1
!10686 fix infer rank list typo and add testcase
...
From: @gong_zi_yan
Reviewed-by: @stsuteng,@zhunaipan
Signed-off-by: @stsuteng
2020-12-28 21:20:19 +08:00
Ziyan
2c3b99ce91
fix infer rank list typo
2020-12-28 18:46:01 +08:00
mindspore-ci-bot
b67aaf6773
!9832 expose_allgather_fusion_to_users
...
From: @gong_zi_yan
Reviewed-by:
Signed-off-by:
2020-12-28 09:54:57 +08:00
Ziyan
bbf8ec82b9
expose allgather fusion interface to users
2020-12-27 17:44:45 +08:00
ms_yan
deb1e6e965
use from_numpy and add do_copy option
2020-12-23 21:38:05 +08:00
Ziyan
c5c905fdf5
add restriction for opt shard
2020-12-19 17:43:55 +08:00
huangxinjing
a8446af1ab
Fix condition check
2020-12-18 16:43:43 +08:00
jjfeing
1984cf8e20
unify mindir
2020-12-12 17:55:16 +08:00
mindspore-ci-bot
d5db8872fd
!9834 Fix wrong input argument of Reshape for multi field embedding
...
From: @huangxinjing
Reviewed-by: @zhunaipan,@stsuteng
Signed-off-by: @stsuteng
2020-12-11 21:31:48 +08:00
huangxinjing
996ee72c50
Fix embedding layer
...
Fix input check
2020-12-11 19:13:09 +08:00
yao_yf
19fe28cb9b
hange strategys of last nodes in eval/predict at auto parallel mode
2020-12-11 11:11:28 +08:00
Xiaoda Zhang
e78228603b
move parallel-related black-list to core/ir, and fix the cloneCNode bug
2020-12-10 15:57:01 +08:00
mindspore-ci-bot
ec3983b77d
!9577 support distributed predict
...
From: @gong_zi_yan
Reviewed-by: @caozhou_huawei,@yao_yf,@stsuteng,@zh_qh
Signed-off-by: @stsuteng
2020-12-08 10:28:30 +08:00
Ziyan
e7e9dae54d
support distributed predict
2020-12-07 16:12:45 +08:00
Xiaoda Zhang
9a9e3a751e
set cnode's fullname when cloning
2020-12-04 15:59:44 +08:00
lichenever
818e920f02
fix_pipeline_split_param_shared_bug
2020-12-03 19:30:29 +08:00
lichenever
78e131cf15
pipeline_split adapt parallel
2020-12-02 18:52:40 +08:00
yangzhenzhang
7b33f3e2ac
gatherv2 axis split repeated calculation
2020-11-30 17:03:29 +08:00
yangzhenzhang
7278f5c109
update_gatherv2_op
2020-11-28 16:56:39 +08:00
Xiaoda Zhang
c79e988b0d
set fullname for reshape after reshape-elimination
2020-11-28 12:16:51 +08:00
yao_yf
9cda064716
auto parallel predict
2020-11-26 20:13:15 +08:00
mindspore-ci-bot
3d6d820612
!8154 Add nn.MultiFieldEmbedding for the embedding lookup opearations
...
From: @huangxinjing
Reviewed-by:
Signed-off-by:
2020-11-24 09:49:39 +08:00
mindspore-ci-bot
d915fd9b96
!8592 change repeat_elements to a composite op
...
From: @tom__chen
Reviewed-by:
Signed-off-by:
2020-11-23 23:15:23 +08:00
huangxinjing
b0deb7a289
Add dense embedding
2020-11-23 20:21:58 +08:00
tom__chen
a52cd685fc
change repeat_element op to a composite op
2020-11-19 15:42:22 -05:00
huangxinjing
89e7778497
Add UnsortedSegmentMax Operation
2020-11-19 17:41:54 +08:00
huangxinjing
8129806475
Add slice parallel op
2020-11-18 20:20:33 +08:00
mindspore-ci-bot
ee72de1db2
!8441 Add Parallel Implements of UniformCandidateSampler
...
From: @huangxinjing
Reviewed-by:
Signed-off-by:
2020-11-18 18:59:31 +08:00
mindspore-ci-bot
cd6236c0a0
!8712 update pipeline parallel interface
...
From: @yangzhenzhang
Reviewed-by: @kisnwang
Signed-off-by:
2020-11-18 18:59:04 +08:00
mindspore-ci-bot
fb0e866ad1
!8269 forward unique dynamic shape
...
From: @yao_yf
Reviewed-by:
Signed-off-by:
2020-11-18 18:53:46 +08:00
yao_yf
31819bb4a7
support forward unique
2020-11-18 15:22:14 +08:00
yangzhenzhang
278e82a849
update pipeline parallel
2020-11-18 13:55:34 +08:00
huangxinjing
2730cef047
Uniform Sampler Base Update
2020-11-18 09:39:32 +08:00
Ziyan
0ddb754edb
run cast before parallel optimizer
2020-11-13 14:04:04 +08:00
huangxinjing
12e9107162
Fix VirtualDiv Int32 error
2020-11-11 09:32:57 +08:00
mindspore-ci-bot
4e07f43dff
!8323 [Auto parallel] Supporting for-loop in strategy-searching
...
From: @xiaoda_zh
Reviewed-by:
Signed-off-by:
2020-11-10 10:33:25 +08:00
Xiaoda Zhang
aa13d6b1cd
support for-loop in auto-parallel
2020-11-09 17:18:30 +08:00
yangzhenzhang
9747bde861
add range op
2020-11-09 15:14:07 +08:00