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
mindspore-ci-bot
1248047d19
!12245 [MD][GPU] Fix GPU mode overload memory at GPU:0 problem
From: @xiefangqi
Reviewed-by: @liucunwei,@heleiwang
Signed-off-by: @liucunwei
5 years ago
xiefangqi
93d7642374
fix gpu rank_id problem
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
228a64de0f
!11390 convert part of prim attr from str to int
From: @wangnan39
Reviewed-by: @kingxian
Signed-off-by:
5 years ago
wangnan39@huawei.com
2f79905f60
convert attr from str to enum
5 years ago
gongxiaoqing
7f538b51e7
回退 'Pull Request !11074 : replace tdt with acltdt interface'
5 years ago
mindspore-ci-bot
c2582dcab9
!11074 replace tdt with acltdt interface
From: @ms_yan
Reviewed-by: @lilongfei15
Signed-off-by:
5 years ago
mindspore-ci-bot
592beab332
!12083 supplement master new ops
From: @lyvette
Reviewed-by: @hangangqiang
Signed-off-by: @hangangqiang
5 years ago
liuyu
c777c44e80
supplement new master ops
5 years ago
mindspore-ci-bot
ad5b033cc5
Change L2Norm, r1.1 to master
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
jinyaohui
d9be0c102d
add some ops
5 years ago
yepei6
1b4633f31f
update acltdt api
5 years ago
yanghaitao1
eefb4295ba
remove profiling output path from context
5 years ago
mindspore-ci-bot
b189f177bb
Change tuple_getitem to TupleGetItem and some other ops, merge from r1.1 to master
5 years ago
lixian
7d2fd6e76c
cxx api refactor: tensor/status/model
5 years ago
lizhenyu
f17534af08
ps cache support sparse
5 years ago
mindspore-ci-bot
6e97c0004e
!11689 gpu support serving basic
From: @wilfchen
Reviewed-by: @cristoval,@limingqi107
Signed-off-by: @limingqi107
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
wilfChen
a911b9ef9e
mindspore serving support gpu backend
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
fangzehua
f97e19f23f
add cache pass
5 years ago
yanghaitao1
8d147deb07
profiler memory
5 years ago
buxue
3df40b73a5
clear parse or resolve debug info
5 years ago
buxue
69d9a33ddb
show line of code when parse or resolve phase exception
5 years ago
zjun
45c6f30065
Opitimize pynative grad graph already run
5 years ago
kswang
375dce4529
fix exception segmentfault
5 years ago
kswang
8a035778b6
add parallel split
5 years ago
lizhenyu
1f99cd7d86
ps cache data process thread support exit when exceptions occur
5 years ago
mindspore-ci-bot
9663cc7235
!10048 fix python executable path
From: @liubuyu
Reviewed-by:
Signed-off-by:
5 years ago
liubuyu
ce661c3c83
fix python executable path
5 years ago
kswang
841661b8aa
optimize multi graph controldepend input
5 years ago
mindspore-ci-bot
c7b801a8d5
!9932 throw exception immediately
From: @kisnwang
Reviewed-by: @zhoufeng54,@chujinjin
Signed-off-by: @chujinjin
5 years ago
kswang
13e53484ea
add exception listener
5 years ago
mindspore-ci-bot
2c13468772
!9852 improve functionalility of dumpir
From: @bairongz
Reviewed-by:
Signed-off-by:
5 years ago
Bairong
2368955eeb
improve dumpIR
5 years ago
Xiaoda Zhang
176c028c65
add initcostgraph to rec_algo
5 years ago
Xiaoda Zhang
e78228603b
move parallel-related black-list to core/ir, and fix the cloneCNode bug
5 years ago
lizhenyu
e3f7ae61db
add ps cache manager
5 years ago
mindspore-ci-bot
ce4eef9090
!9504 add some ops
From: @jinyaohui
Reviewed-by:
Signed-off-by:
5 years ago
jinyaohui
68cb43a6d1
add some ops
5 years ago
mindspore-ci-bot
c8dec08070
!9561 modify express log
From: @changzherui
Reviewed-by: @kingxian,@zh_qh
Signed-off-by: @kingxian
5 years ago
mindspore-ci-bot
5d1a8b09db
!9097 Primitive Shape support return range of dynamic shape
From: @M20211031
Reviewed-by: @ginfung
Signed-off-by:
5 years ago
changzherui
53c34b6927
modify express log
5 years ago
yuanwei66
5735bb1289
CPU operation dev:StandardNormal
5 years ago
mxm
82268dc703
support DynamicShape and StridedSlice primitive return range of shape value.
5 years ago
huanghui
bda74495f3
Add trace mangager around front opt
5 years ago
jjfeing
27257b9901
add trace when mindspore error
5 years ago