kswang
296fb69b54
update owners
2022-04-01 15:25:54 +08:00
xulei
b80e55e22e
install te topi packages in ascend install scripts
2022-04-01 11:14:19 +08:00
xulei
cefb1b9ac7
[scripts] check mindspore version
2022-03-31 11:10:02 +08:00
i-robot
5532fab42c
!32153 realize scale out rollback
...
Merge pull request !32153 from tan-wei-cheng-3260/develop-twc-master
2022-03-30 19:17:36 +00:00
xulei
5cd0495eb0
fix pip auto install scripts
2022-03-30 09:27:27 +08:00
i-robot
893a34a3b3
!32149 fix mindspore install version in conda and pip scripts
...
Merge pull request !32149 from xulei/scripts
2022-03-29 03:34:32 +00:00
twc
2f068a4218
realize scale out rollback
2022-03-29 10:53:52 +08:00
xulei
83ccc1026d
fix mindspore install version in conda and pip scripts
2022-03-29 10:16:56 +08:00
zhengyuanhua
d89d8fd3f7
add 310 arm package
2022-03-28 19:38:28 +08:00
yanghaoran
8295364de0
modify dockerfile
2022-03-25 14:40:37 +08:00
xulei
1a7370dfb1
update auto install scripts
2022-03-24 10:45:34 +08:00
xulei
38a1ed4f73
add auto install scripts
2022-02-24 11:23:31 +08:00
Liu_Xuu
f3bdedb432
[MSLITE] add release package for tensorrt 0209_01
2022-02-09 17:05:20 +08:00
yanghaoran
7e24a2bf51
remove deprecated script
2022-01-25 10:12:44 +08:00
zhengjun10
c15307dab2
support rm minddata
2022-01-22 14:45:19 +08:00
i-robot
6eae53eb34
!29057 fix ISSUE I4QCJM
...
Merge pull request !29057 from tan-wei-cheng-3260/develop-fix
2022-01-18 01:12:26 +00:00
twc
5d40613d52
fix ISSUE I4QCJM
2022-01-17 14:21:03 +08:00
i-robot
3a4744ff27
!28995 unify infer and train compile binary
...
Merge pull request !28995 from xiaoyao/master
2022-01-17 04:43:56 +00:00
i-robot
4c81d815e7
!29135 add ascend release pkg
...
Merge pull request !29135 from zhengyuanhua/br1
2022-01-15 09:17:23 +00:00
yanghaoran
a5e8fa59a8
update dockerfile for 1.6.0
2022-01-15 15:48:30 +08:00
zhengyuanhua
a2ae2a4598
add ascend release pkg
2022-01-15 15:38:20 +08:00
xiao_yao1994
54fc038f0a
unify infer and train compile binary
2022-01-13 17:04:34 +08:00
i-robot
85a0216154
!28787 fix fl pclint
...
Merge pull request !28787 from tan-wei-cheng-3260/develop-fix
2022-01-12 02:01:21 +00:00
twc
a48722c078
fix pclint
2022-01-11 14:08:22 +08:00
xiao_yao1994
0843910260
unify ge and vm backend
2022-01-11 11:53:58 +08:00
yanghaoran
762dc0b08a
a conda script for euleros environments to prepare MindSpore runtime environment
2022-01-07 15:56:32 +08:00
i-robot
f097e72be5
!28539 [MS][LITE]fix release pack
...
Merge pull request !28539 from gongdaguo/fix_release_pack
2022-01-06 01:22:28 +00:00
Bowen Ma
9b9d688c4c
update auto install scripts
2022-01-05 15:19:28 +08:00
yanghaoran
0161b10f64
a script for euleros environments to prepare MindSpore runtime environment
2022-01-05 10:17:16 +08:00
gongdaguo
294718042f
fix release package
2022-01-04 17:11:11 +08:00
Bowen Ma
7b1b133d1f
update ubuntu + gpu with pip/conda install script.
2021-12-29 18:22:14 +08:00
Bowen Ma
b94bdc8fdd
update cuda with pip install script on ubuntu 18.04
2021-12-28 15:37:13 +08:00
Bowen Ma
3d1f4e6c70
update auto install scripts for pip/conda under ubuntu
2021-12-27 10:09:49 +08:00
gongdaguo
0e2d1d9749
fix package
2021-12-21 09:26:17 +08:00
zengzitao
6f4aebbe11
adapt ms_cpu ci for graphkernel
2021-12-09 19:44:09 +08:00
twc
649376a243
add fl restful tool to script
2021-12-06 17:38:38 +08:00
He Wei
41dcac9c49
Replace std::unordered_map/set with robin-hood-hashing
...
Robin-hood-hashing (https://github.com/martinus/robin-hood-hashing )
is considered faster then std::unordered_map/set,
so we use it to improve mindspore performance.
1. robin_hood head file in `third_party/robin_hood/include`;
2. In `utils/hash_map.h` and `utils/hash_set.h`, we define:
- mindspore::HashMap as an alias of robin_hood::unordered_map;
- mindspore::HashSet as an alias of robin_hood::unordered_set;
3. Replace:
- `#include <unordered_map>` --> `#include "utils/hash_map.h"`;
- `#include <unordered_set>` --> `#include "utils/hash_set.h"`;
- `std::unordered_map` --> `mindspore::HashMap`;
- `std::unordered_set` --> `mindspore::HashSet`;
- `map.insert(std::pair(key, value))` --> `map.emplace(key, value)`;
- `[] (const std::pair<K, V> &p) {..} ` --> `[] (const auto &p) {..} `;
4. Fix issues found by switch to robin_hood:
- AnfNodeConfig hash and equal;
- Fix a bug in `Slice::operator==()`;
- Fix a bug in `CNode::HasPrimalAttr()`;
- Fix map.erase() usage bugs: `map.erase(iter++)` --> `iter = map.erase(iter)`;
- Fix some iterator invalidated problem;
5. Some std::unordered_map/set can not replace by robin_hood:
- As parameter of functions that exposed to python by pybind11;
- Use bad hash that cause robin_hood::map over_flow, such as AbstractBasePtrListHasher;
6. Update cpp unit tests;
7. Add build option '-F' to enable robin_hood, default on.
2021-11-24 10:47:40 +08:00
sunsuodong
1615edc359
add c api
2021-11-23 05:11:45 -08:00
tanghuikang
f0995e7899
Add Exception log when AscendMemoryPool::AllocTensorMem fail
2021-11-16 09:28:28 +08:00
hwjiaorui
d6b2a34a69
MindRT Ascend Devcie Context
2021-11-09 17:23:57 +08:00
He Wei
fd8bbb4d96
Optimize isa() and type id related code.
...
1. Let 'isa<T>()' calls 'IsSameTypeId()' when T is final,
and we add 'final' mark to some final classes derived from Base;
2. Generate type id at compile time using constexpr hash function,
remove TypeIdManager and related code;
3. Add a tool script 'scripts/check_tid.sh' to check tid uniqueness;
4. Improve type search in 'proto_exporter.cc' and 'convert_utils_py.cc';
5. Add some missed MS_DECLARE_PARENT;
6. Ensure calls of 'parent_t::IsFromTypeId()' are all inlined.
2021-11-03 14:14:44 +08:00
yanghaoran
d00fc2971b
fix docker script due to pillow update
2021-10-20 11:22:35 +08:00
yanghaoran
e9605ffefb
add docker & conda scripts for 1.5.0
2021-10-13 10:43:43 +08:00
yanghaoran
6b07b95e81
fix ascend conda errors
2021-10-12 12:04:45 +08:00
i-robot
06b0beced7
!22731 GraphKernel supports CPU
...
Merge pull request !22731 from DeshiChen/0901_graphkernel_cpu
2021-09-30 09:36:35 +00:00
yanghaoran
dde579e3eb
fix conda problems
2021-09-30 14:26:00 +08:00
dayschan
32ecd8ee79
GraphKernel supports CPU
...
only Linux system is supported now.
change the default value of `ENABLE_AKG` to off, and controlled by option `-K`.
the `ENABLE_AKG` is auto enabled when `ENABLE_GPU` or `ENABLE_D` is on.
since now, we can use `ENABLE_AKG` to control the compilation of graphkernel
and akg codes.
fix usage description for option "-K", it should be "[-K on|off]".
LLVM is required by akg for cpu kernels, so AKG for cpu is default disabled now.
2021-09-29 23:34:16 +08:00
yanghaoran
e7c1f17264
add 1.5.0rc1 dockerfile
2021-09-27 15:29:07 +08:00
zhanyuan
4372be4205
copy lite ohos package to release path
2021-09-26 17:14:01 +08:00
yanghaoran
91c2d05752
bump up docker & conda version to 1.5.0-rc1
2021-09-23 11:25:42 +08:00
shenghong96
9173c5794d
add mindinsight for CPU version
2021-09-16 19:34:55 +08:00
yanghaoran
afe7899de4
add conda, move docker and conda scripts
2021-09-13 20:14:03 +08:00
zuochuanyong
3cf372dc09
split huge build.sh
2021-09-08 21:14:22 +08:00
sunsuodong
cd7daed631
nnie package
2021-07-10 15:47:07 +08:00
sunsuodong
c32d2a3e96
npu_default_off
2021-07-08 12:55:02 +08:00
sunsuodong
8f75cb4ded
fix_lite_release_package
2021-06-16 14:46:12 +08:00
zhengjun10
23790f0435
lite build tod and iod package name unify
2021-06-15 10:19:38 +08:00
sunsuodong
4f474b54af
fix_lite_release_scrpit
2021-06-01 14:42:46 +08:00
caifubi
87334c287f
mac clang-format
2021-05-18 20:06:03 +08:00
zhangzhaoju
fdd58d8f2b
delete code not used
2021-04-20 10:44:16 +08:00
sunsuodong
aae32eb5bb
modify package name
2021-04-14 09:55:09 +08:00
zhujingxuan
3233f76c04
debug mnist shell script
2021-03-19 10:26:01 +08:00
sunsuodong
4c94f98905
lite package script
2021-03-17 12:49:45 +08:00
sunsuodong
6fea49b2db
package
2021-03-16 14:51:44 +08:00
xsmq
923b53d2e6
replace tab with spaces
2021-02-23 09:41:47 +08:00
jiangzhenguang
af2a798905
update_dump_map
2021-01-25 11:26:35 +08:00
sunsuodong
2d65cd5901
fix lite_release_package
2021-01-23 16:02:27 +08:00
sunsuodong
d5841b84f4
fix lite_release_package
2021-01-23 12:03:27 +08:00
sunsuodong
833ae8b620
lite release package
2020-12-26 10:47:16 +08:00
sunsuodong
4f6da7031a
fix pkg script
2020-12-25 10:13:08 +08:00
xutianchun
fa0129435f
rename net_train to benchmark_train
2020-12-23 11:33:11 +08:00
sunsuodong
774989a7b0
add package script
2020-12-21 14:29:57 +08:00
jiangzhenguang
0dfa15a6b3
map_dump_file_to_code
2020-12-17 14:49:40 +08:00
jzg
fa3c1d8980
add find error operator in source code tool.
2020-10-15 20:34:31 +08:00
mindspore-ci-bot
edd8214459
!6646 [MSLITE][Develop] check format support lite
...
Merge pull request !6646 from sunsuodong/fix_code
2020-09-23 10:42:10 +08:00
root
4e85071055
redundant codes clean
2020-09-22 17:08:09 +08:00
sunsuodong
fe3999f916
check format support lite
2020-09-21 19:39:16 +08:00
qianlong
4c49d557d2
fix icu4c compile
2020-09-16 11:03:18 +08:00
xiefangqi
c722c5ac17
add security compile options
2020-09-15 23:03:07 +08:00
fary86
a7fc02cb60
Adjust source code format and check scripts, format source codes in
...
directory 'mindspore/core'
2020-07-28 10:30:27 +08:00
qianlong
0c35247b58
change icu4c compile way
2020-07-07 14:54:49 +08:00
chenzomi
2a695cfe24
fix some bug in quant debug
2020-05-12 14:05:54 +08:00
zhoufeng
efc6c7be63
delete abandoned script files
...
autogen.sh: delete
py_filter: delete
dbg_dump_parser.sh: move to script
2020-04-10 18:44:49 +08:00
zhunaipan
930a1fb0a8
initial version
...
Signed-off-by: leonwanghui <leon.wanghui@huawei.com>
2020-03-27 22:54:54 +08:00