buxue
2551f5ea7e
support name or attribute ast.Expr
5 years ago
chuck
89eed7aa27
add compile option H to visible hidden interface
5 years ago
mindspore-ci-bot
c529cfa427
!12754 auto tune step one construct json
From: @liubuyu
Reviewed-by:
Signed-off-by:
5 years ago
mindspore-ci-bot
7ff2b3b499
!12781 fix bug of amp bn cast
From: @jojobugfree
Reviewed-by:
Signed-off-by:
5 years ago
liubuyu
2d97244741
auto tune stage one: construct json
5 years ago
caifubi
a6959c2a13
fix bn cast bug
5 years ago
yangzhenzhang
a70d616841
mini step grad accumulation
5 years ago
yujianfeng
f0b7c3dd4d
Add a switch to control grad for scalar
5 years ago
luopengting
bd7e5e9d37
check ENABLE_DUMP_IR if user set env_config_path
If the ENABLE_DUMP_IR is off, the program will raise ValueError to
remind user to turn on ENABLE_DUMP_IR.
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
wangnan39@huawei.com
2f79905f60
convert attr from str to enum
5 years ago
mindspore-ci-bot
d638a92946
!11892 remove unnecessary profiling_output_path parameter for set_context
From: @yanghaitao1
Reviewed-by: @yelihua
Signed-off-by:
5 years ago
lilei
63eb3ed2d9
modify Tensor shape
5 years ago
yanghaitao1
eefb4295ba
remove profiling output path from context
5 years ago
luopengting
4683ecc06b
support env_config_path to set the config file for DFX
1. add env_config_path for ms_context
2. add EnvConfigParser to parse config
3. add in CMakeLists
4. clang-format, cpplint
5. fix spelling in ms_context
Use EnvConfigParser in the constructed function of base_recorder,
when a recorder is initialized, its direcctory will be set as the
value from config file. In addition, recorder_manager will get the
'enable' from config file. If 'enable' is true and the path is not a
valid value, it will be the default value: './rdr'.
5 years ago
buxue
2ea8b9e738
add dict for isinstance
5 years ago
mindspore-ci-bot
55594db01c
!11348 add check for outermost net inputs type and support isinstance first arg is an empty list
From: @zhangbuxue
Reviewed-by:
Signed-off-by:
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
mindspore-ci-bot
2ea8527de3
!11314 add cache embedding for wide&deep model
From: @fangzehua
Reviewed-by:
Signed-off-by:
5 years ago
buxue
e8cd572bc2
add check for outermost net inputs type and support isinstance first arg an empty list
5 years ago
mindspore-ci-bot
a58413479e
!11430 add del_attr function
From: @changzherui
Reviewed-by: @kingxian,@zh_qh
Signed-off-by: @kingxian
5 years ago
fangzehua
f97e19f23f
add cache pass
5 years ago
yuchaojie
1932d87a26
update some op's attr name
5 years ago
changzherui
2795273753
add del_attr funciton
5 years ago
yanghaitao1
8d147deb07
profiler memory
5 years ago
mindspore-ci-bot
eacc8bac89
!10755 [Numpy-Native] Add new numpy-native interfaces to mindspore.numpy
From: @yanglf1121
Reviewed-by:
Signed-off-by:
5 years ago
yanglf1121
72903c11c8
add array_ops, math_ops and tensor ops
5 years ago
tanghuikang
b1ce9fed1e
Release GIL lock when SyncAsNumpy and run bprop graph in PyNative mod.
5 years ago
ling
83df854f59
pybind fix
5 years ago
ling
8a78b1f362
[MSLITE] arithmetic optimize
5 years ago
mindspore-ci-bot
3cc0360d55
!9199 add paralle split
From: @kisnwang
Reviewed-by:
Signed-off-by:
5 years ago
kswang
8a035778b6
add parallel split
5 years ago
mindspore-ci-bot
b67aaf6773
!9832 expose_allgather_fusion_to_users
From: @gong_zi_yan
Reviewed-by:
Signed-off-by:
5 years ago
Ziyan
bbf8ec82b9
expose allgather fusion interface to users
5 years ago
chenfei
2e77736443
pynative consistent run fail
5 years ago
mindspore-ci-bot
44abd94b42
!9408 [ME][Pynative]Fix mem leak problem in pynative mode
From: @chenfei52
Reviewed-by:
Signed-off-by:
5 years ago
chenfei
1f20e552ed
handle mem leak in pynative mode
use enter and leave construct
5 years ago
mindspore-ci-bot
00611b1c41
!10175 Add tensor.ndim and rename tensor.size() to tensor.size
From: @yanglf1121
Reviewed-by: @kingxian,@zhunaipan
Signed-off-by: @kingxian
5 years ago
zjun
c0f02dfaf8
Opitimize pynative bprop
Signed-off-by: zjun <zhangjun0@huawei.com>
5 years ago
yanglf1121
918679daa3
add tensor.ndim and rename tensor.size() to tensor.size
5 years ago
zjun
3e1358fe94
Fix bprop second derivative
Signed-off-by: zjun <zhangjun0@huawei.com>
5 years ago
lizhenyu
e3f7ae61db
add ps cache manager
5 years ago
huanghui
1c5cba7b81
add data_sync in Tensor.__repr__
5 years ago
chenfei
368e33bd67
resolve mem leak in primitive py
5 years ago
lvliang
ea0d53c27c
fix-bug-of-zero-in-tensor-shape-and-non-py-tensor-in-cell-hook-in-pynative
5 years ago
mindspore-ci-bot
701f07401b
!8271 modify_normal_seed
From: @Somnus2020
Reviewed-by: @kingxian
Signed-off-by: @kingxian
5 years ago
lilei
4d48049b27
modify_normal_seed
5 years ago
Yi Huaijie
d7faa77b5e
support int64 shape
5 years ago
lizhenyu
fd1d61eaf7
enbale ps mode init in server
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