Commit Graph

4982 Commits

Author SHA1 Message Date
mindspore-ci-bot 30bcd0a1fe !3072 fix InvertPermutation error msg
Merge pull request !3072 from jiangjinsheng/issue_fix4
2020-07-15 14:12:35 +08:00
jiangjinsheng 2c70842ed9 fix InvertPermutation error msg 2020-07-15 10:52:29 +08:00
mindspore-ci-bot 45ad430af2 !3048 support use valuelist or valuetuple of primitives
Merge pull request !3048 from amongo/SupportPrimitiveList
2020-07-15 10:45:36 +08:00
mindspore-ci-bot 3bb04abc12 !3061 Remove useless op registers of akg
Merge pull request !3061 from DeshiChen/0711_akg_op_register_master
2020-07-15 09:50:51 +08:00
mindspore-ci-bot 683920d1c8 !2987 Add random normal op at MindSpore front-end
Merge pull request !2987 from peixu_ren/custom_gpu2
2020-07-15 09:39:58 +08:00
huangdongrun ee2039fbba add support for value sequence of primitve 2020-07-15 09:24:39 +08:00
mindspore-ci-bot bc0a53cfb1 !3030 minddata support ps-lite feature
Merge pull request !3030 from xiefangqi/md_support-pslite
2020-07-15 09:11:37 +08:00
mindspore-ci-bot ba0143402c !3067 Cleanup dataset UT: Remove unneeded tf data files and tests
Merge pull request !3067 from cathwong/ckw_dataset_ut_cleanup6
2020-07-15 04:44:52 +08:00
mindspore-ci-bot 219a716eae !3066 fix some batch's get_dataset_size and some text validator inconsistency
Merge pull request !3066 from ZiruiWu/fix_validator
2020-07-15 03:11:31 +08:00
mindspore-ci-bot bed93a9ead !3039 [Dataset Python UT] adding coverage to Cifar Op and update test dataset
Merge pull request !3039 from TinaMengtingZhang/dataset-op-ut-cifar
2020-07-15 02:10:52 +08:00
Zirui Wu 63185cb20f fix some validators errors
address review cmts

addr review cmts
2020-07-14 14:04:40 -04:00
mindspore-ci-bot 851707ae5e !3008 [MD] Fix errors introduced by validation rework
Merge pull request !3008 from nhussain/validation_errors
2020-07-15 01:32:25 +08:00
Cathy Wong ae1ed327ba Cleanup dataset UT: Remove unneeded data files and tests 2020-07-14 12:24:54 -04:00
nhussain 05b2a57d2a fix validation errors, and fix try catch error tests 2020-07-14 11:50:00 -04:00
tinazhang 340d98a4d1 added test case to cifar_op
update cifar10 dataset
fixing missing error handling code in validator
2020-07-14 11:22:38 -04:00
peixu_ren 20ca96c62b Add random normal MindSpore interface 2020-07-14 11:19:12 -03:00
xiefangqi add19a591c md support ps-lite 2020-07-14 21:46:11 +08:00
mindspore-ci-bot 089623ad19 !3057 Eliminate circular dependency between 'ir' and 'device/kernel'
Merge pull request !3057 from hewei/decouple_ir_kernel_device
2020-07-14 21:19:59 +08:00
mindspore-ci-bot 1b9f0fc208 !3060 modify init value of mean square in rmsprop optimizer
Merge pull request !3060 from wangnan39/modify_mean_square_init_value_in_rmsprop
2020-07-14 20:50:59 +08:00
He Wei ee1510da41 Eliminate circular dependency between 'ir' and 'device/kernel' 2020-07-14 19:56:22 +08:00
dayschan 908539754a remove useless op registers of akg 2020-07-14 19:51:54 +08:00
mindspore-ci-bot c99cc0dfa1 !3053 mindspore path adjust
Merge pull request !3053 from liubuyu/master
2020-07-14 19:44:27 +08:00
liubuyu 43c79eb853 mindspore path adjust 2020-07-14 18:07:28 +08:00
mindspore-ci-bot 0746bffbd4 !3056 Alarm modification
Merge pull request !3056 from shenwei41/sw_master
2020-07-14 17:30:24 +08:00
mindspore-ci-bot 530d46eb47 !3024 Decode + RandomCropAndResize fusion within MapOp
Merge pull request !3024 from Alexey_Shevlyakov/random_crop_decode_resize_fusion
2020-07-14 17:27:25 +08:00
mindspore-ci-bot 99a6033aa2 !3032 Refactor the akg op registers
Merge pull request !3032 from DeshiChen/0711_akg_op_register_master
2020-07-14 16:54:11 +08:00
wangnan39@huawei.com 046e369e36 modify init value of mean square in rmsprop optimizer 2020-07-14 16:50:37 +08:00
mindspore-ci-bot 7ed816d9a7 !3054 GPU fix addn and supported list bug
Merge pull request !3054 from VectorSL/fix-isuue
2020-07-14 16:26:52 +08:00
shenwei41 bda46f480f Alarm modification 2020-07-14 16:21:35 +08:00
mindspore-ci-bot bf2c9abc48 !3051 add loss monitor to lenet
Merge pull request !3051 from chenzhongming/newnew_master
2020-07-14 15:46:55 +08:00
mindspore-ci-bot 3397eee672 !2950 [AutoParallel]Fix_codedex
Merge pull request !2950 from lichen/fix_codedex
2020-07-14 15:37:46 +08:00
VectorSL d22a597689 gpu fix addn bug and supported list bug 2020-07-14 15:16:54 +08:00
dayschan 78f35814d5 Refactor the akg op registers.
Since akg supports both Ascend and Gpu, but their supported type and format are different,
so we use two directory "ascend" and "gpu" to store their registers respectively, and use
an attribute "processor" to distinguish them.

Main changes:
1) Add two op register class "AkgAscendRegOp" and "AkgGpuRegOp", inherited from the original AkgRegOp.
2) Rewrite akg ascend op registers with new interface, move them into directory "ascend".
3) Rename the imply_type from "AutoDiff" to "AKG".
4) Modify function FindOp, check the processor when imply_type is "AKG".
5) Modify function CheckRepetition, remove the judgement for impl_path, check processor instead.

TODO: Remove op registers in akg root path.
2020-07-14 15:06:12 +08:00
mindspore-ci-bot c6847992e0 !2867 Add full_name for anf_ir.proto
Merge pull request !2867 from huanghui/vm-anf-ir-graph-pb-dump
2020-07-14 15:04:37 +08:00
mindspore-ci-bot 7d92d2982a !3052 data dump bug
Merge pull request !3052 from caifubi/data-dump
2020-07-14 14:56:05 +08:00
mindspore-ci-bot 56bb3930ee !2754 optimize memory reuse according streams info
Merge pull request !2754 from laiyongqiang/mem_opt
2020-07-14 14:52:32 +08:00
lichenever 21496447df fix code dex 2020-07-14 14:23:54 +08:00
mindspore-ci-bot 180b3029e5 !3047 fix ci cpplint
Merge pull request !3047 from wangqiuliang/fix-ci-cpplint
2020-07-14 12:30:59 +08:00
caifubi 066c279f85 Fix dump bug in mode 0 2020-07-14 11:57:39 +08:00
chenzomi 25969b5d8f add loss monitor to lenet 2020-07-14 11:55:13 +08:00
mindspore-ci-bot f65586cefa !3035 Refactoring for base and abstract types.
Merge pull request !3035 from ZhangQinghua/master
2020-07-14 11:50:06 +08:00
mindspore-ci-bot 8871f06f42 !2963 Add UT for python pass
Merge pull request !2963 from BowenK/python_pass_clean
2020-07-14 11:48:03 +08:00
mindspore-ci-bot d95a54c321 !3043 Revert PR 2923
Merge pull request !3043 from BowenK/master
2020-07-14 11:46:45 +08:00
kingfo 9d9b279db2 fix ci cpplint 2020-07-14 11:01:19 +08:00
mindspore-ci-bot f5b00de15d !3042 fix sens tensor check issue
Merge pull request !3042 from wangqiuliang/fix-sens-tensor-check-issue
2020-07-14 10:23:23 +08:00
BowenK f267a105b8 Add Python Pass UT 2020-07-14 10:18:22 +08:00
BowenK af36bd7698 Revert PR 2923 2020-07-14 10:01:08 +08:00
mindspore-ci-bot bfc3065fc7 !3025 [AutoParallel]Add embedding look up op
Merge pull request !3025 from lichen/add_embedding_look_up_op
2020-07-14 09:59:01 +08:00
mindspore-ci-bot e6ff8dc5e0 !3037 Update max loop count
Merge pull request !3037 from linqingke/mass
2020-07-14 09:42:18 +08:00
kingfo cd28858e36 fix sens tensor check issue 2020-07-14 09:41:37 +08:00