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
mwang
0b312c2385
thor generalization code submit
5 years ago
wangshuide2020
dd95497c5e
update the example of ops.BoundingBoxDecode and add nn.TimeDistributed to the import list
5 years ago
wangshuide2020
4cca77cb88
add validation of ApplyMomentum and update annotation of Broadcast, DistributedGradReducer, GlobalBatchNorm, etc. operators.
5 years ago
wangshuide2020
0f75370377
update the documentation of MaxPoolWithArgmax, BroadcastTo, GlobalBatchNorm and DistributedGradReducer operators.
5 years ago
zhangyi
49045e168b
fix api error format showing on website.
5 years ago
lilei
8ba7b6c693
Modify Note
5 years ago
bai-yangfan
80b8124d60
nn_notes
5 years ago
wangshuide2020
478dd7bc10
update example of getnext and getnextsingleop
5 years ago
lilei
7ed181ec7c
modify Note
5 years ago
buxue
0647b8b7db
optimize scalar to tensor function
5 years ago
buxue
1bd2f100be
modify example of ParameterUpdate
5 years ago
caifubi
23898c735f
Optimize performance of PyNative grad reduce
5 years ago
lihongkang
79333916ed
fix bugs
5 years ago
mindspore-ci-bot
bfc6cca4f8
!9441 modify example
From: @lijiaqi0612
Reviewed-by: @c_34,@zh_qh
Signed-off-by: @c_34
5 years ago
Jiaqi
006879fbb8
modify example
5 years ago
mindspore-ci-bot
a146f982bc
!8983 support variabel length virtual_dataset in auto parallel
From: @yao_yf
Reviewed-by:
Signed-off-by:
5 years ago
yao_yf
9cda064716
auto parallel predict
5 years ago
zhangz0911gm
7b1d1ca831
Updating remaining notes
5 years ago
JunYuLiu
1eaa4a30dd
Add labels to python files
5 years ago
wangshuide2020
f64a201804
update example of some operations.
5 years ago
jinyaohui
e6f9806cfb
add broadcast
5 years ago
mindspore-ci-bot
701f07401b
!8271 modify_normal_seed
From: @Somnus2020
Reviewed-by: @kingxian
Signed-off-by: @kingxian
5 years ago
Ziyan
17f2e6e756
fix api error and get next info
5 years ago
lilei
4d48049b27
modify_normal_seed
5 years ago
Jiaqi
3c52235129
modify example
5 years ago
Jiaqi
933aef5b0a
modify example
5 years ago
panfengfeng
2d7b93e958
fix nn & operations api comments
5 years ago
Jiaqi
2ba3e962e1
add shape check
5 years ago
Jiaqi
c5c1470bf1
remove comment
5 years ago
riemann_penn
9d8b14d942
fix sparse loss scale
5 years ago
mindspore-ci-bot
3bc3f8ed8e
!6259 add ut-test_example
Merge pull request !6259 from lijiaqi/add_uttest
5 years ago
Jiaqi
aa4ddc1b28
add ut-test_example
5 years ago
wangnan39@huawei.com
7578f23632
optim TrainOneStepCell
5 years ago
mindspore-ci-bot
2fb2228af3
!6144 add validation
Merge pull request !6144 from lijiaqi/add_validation
5 years ago
Jiaqi
8cc5767d0c
add validation
5 years ago
mindspore-ci-bot
b4581b2c54
!6101 delete DataWrapper
Merge pull request !6101 from wangnan39/delete_datawrapper
5 years ago
Jiaqi
94d63b90f4
remove sens parameter
5 years ago
wangnan39@huawei.com
ef94ac12e9
delete DataWrapper
5 years ago
yao_yf
d4cfe55c04
rename mirror_mean to gradients_mean
5 years ago
yao_yf
07117e4dd4
mv ParallelMode to context
5 years ago
panyifeng
1a54785fe2
remove name arg from gradoperation
5 years ago
mindspore-ci-bot
15ae3702f9
!5063 modify sgd and momentum and WithGradCell comments
Merge pull request !5063 from lijiaqi/momentum_and_sgd
5 years ago
李嘉琪
d957309957
modify comments
5 years ago
李嘉琪
850c637794
add comments
5 years ago
simson
7cc48a9af8
Third round of enhancement of API comment & README_CN
5 years ago
李嘉琪
881f3f735f
modify cell inputs
5 years ago
mindspore-ci-bot
2c2fe9bed9
!4121 Third round of the enhancement of API comments
Merge pull request !4121 from Simson/enhancement-API
5 years ago
simson
dec2e4a819
Third round of the enhancement of API comments
5 years ago
panyifeng
34e50e5d6e
fix cell bprop
5 years ago