Zichun Ye
a7d89f6686
add graph kernel userdefine op support
fix code check
4 years ago
tronzhang
134ffa9efe
support tot ops
4 years ago
ms_yan
36a8886ca2
Revert "[feat] [assistant] [I3T96T] add new Dataset operator CMUARCTICDataset"
This reverts commit b077aa1cab .
Revert "[feat] [assistant] [I3T96X] add new Dataset operator LibriSpeechDataset"
This reverts commit 4e6f7dc97d .
delete pass_registry_test.cc
comment hiai_nlu_model_multi.pb related line
4 years ago
djc
b077aa1cab
[feat] [assistant] [I3T96T] add new Dataset operator CMUARCTICDataset
4 years ago
djc
4e6f7dc97d
[feat] [assistant] [I3T96X] add new Dataset operator LibriSpeechDataset
4 years ago
dayschan
df7dd0fcf3
restrain the INFO log in graphkernel
4 years ago
i-robot
792d7afcd1
!21954 Fix 'kPrimTransData' from upper case 'K' to lower case 'k'
Merge pull request !21954 from hewei/core_user_api
4 years ago
i-robot
baa408dc11
!21949 Fix Type Error in InferValue
Merge pull request !21949 from jiaoy1224/eliminate_empty
4 years ago
He Wei
18adbe3cd2
Fix 'kPrimTransData' from upper case 'K' to lower case 'k'
4 years ago
Yang Jiao
f08feafc10
revise infervalue
4 years ago
i-robot
ff07de80b4
!21603 Fix static-check warnings
Merge pull request !21603 from DeshiChen/0809_clean
4 years ago
dayschan
9add26ad99
Add expanders in c++ code
transplant the op expander code from python to c++, base on LiteGraph.
the c++ expander will be called in priority if it was registered in OpExpanderFactory.
add two examples, BiasAdd and ExpandDims.
remove BiasAdd from python expanders.
since the ExpandDims is also imported by other ops (e.g. BatchNorm), we don't remove it now.
4 years ago
dayschan
fff39e7451
fix static check problems
4 years ago
zengzitao
b8095efcab
gk fix warnings in master
4 years ago
i-robot
8947a11e49
!21544 [GraphKernel] fix bert and add graph kernel ops.
Merge pull request !21544 from chenlei_autodiff/add_sin
4 years ago
i-robot
57bbc7fb94
!21486 Add Op Infer for Graph Kernel C++
Merge pull request !21486 from jiaoy1224/eliminate_empty
4 years ago
chenlei_autodiff
0271535429
[GraphKernel] fix bert and add graph kernel ops.
4 years ago
Yang Jiao
74c96bf4ee
add more infer
4 years ago
dayschan
78dfab9c52
Save and restore the output abstract of original graph
For convenience, we may change some operators' shape in equivalent way,
such as changing the scalar value (shape is empty) to a tensor with shape [1].
It's ok for the intermediate tensors, but not for the outputs.
So we save the output shapes in pre-process stage, and restore them in post-process stage.
4 years ago
i-robot
09dba31600
!21444 Fix Reshape Attrs
Merge pull request !21444 from jiaoy1224/master
4 years ago
Yang Jiao
2b4a784b86
fix reshape
4 years ago
hwjiaorui
e97df3a58f
clean code
4 years ago
i-robot
9629b4ebd9
!21071 [Graph Kernel] Add Low Precision Optimition
Merge pull request !21071 from cyun/master_729
4 years ago
cy
4105a247b7
add low precison
4 years ago
Yang Jiao
fd7ab25fc2
reorganiz empty graph
4 years ago
i-robot
7b20a5adf7
!20966 Update graph kernel support for argmax/argmin
Merge pull request !20966 from zichun_ye/argmax_min_kernelgraph
4 years ago
Zichun Ye
22172f18bc
update graph kernel support for argmax/argmin
fix pylint problem
fix conflict
fix op list
fix check warning
fix code based on review comments
update akg commit
fix check warning
4 years ago
Yang Jiao
042c95d3d5
Modify Double Comparison
4 years ago
i-robot
bca7891a70
!19993 [GraphKernel] Speed up bert performance in ascend for graph kernel
Merge pull request !19993 from TronZhang/bert_ascend_gk
4 years ago
Yang Jiao
e2cfc516eb
refctor arithmetic simplify
4 years ago
tronzhang
94dda0c7c7
speed up bert profermance in ascend for graph kernel
4 years ago
i-robot
ab78bcf16f
!19081 add ops IsNan
Merge pull request !19081 from lingyunli63/add_ops_IsNan
4 years ago
lingyunli63
50a66ae476
isnan isfinite isinf squaresumall identity oneslik
4 years ago
lingyunli63
49012fd5e7
move cast_matmul
4 years ago
i-robot
26027b89fe
!19806 add graph kernel erf, erfc, floor, floordiv, mod, floormod, div
Merge pull request !19806 from 杨林枫/basic_graph_kernels
4 years ago
yanglf1121
c30b1e6d06
add graph kernel div, floordiv, mod, floormod, floor
4 years ago
i-robot
7d2a07a2bd
!20480 Add LiteGraph for graphkernel
Merge pull request !20480 from DeshiChen/0618_litegraph
4 years ago
dayschan
137608b518
Add LiteGraph for graphkernel
Add a subdirectory "model" in the "backend/optimizer/graph_kernel" for litegraph.
Implement two interfaces "AnfGraph2LiteGraph" and "LiteGraph2AnfGraph".
The litegraph will be the base data structure when we migrate the GraphKernel code
from python("mindspore/_extends/graph_kernel") to c++.
4 years ago
wangrao124
7cddde47b0
!215 add ops: LogicalNot, LogicalAnd, LogicalOr, NotEqual, EqualCount, Asinh, Acosh
* add ops: LogicalNot, LogicalAnd, LogicalOr, NotEqual, EqualCount, Asinh, Acosh
4 years ago
huangmengxi
1bd448ef2a
add atan, atan2, expm1
4 years ago
chenlei_autodiff
7d55cef106
[GraphKernel] add sponge ops.
4 years ago
i-robot
5d6cac71d2
!19382 Support Complex in GPU about graph kernel
Merge pull request !19382 from ZengZitao/complex_gk
4 years ago
zengzitao
aa019a639f
support complex in gpu about graph_kernel
4 years ago
liuyihong
0f10ad9677
Add transform_op_optimizer
This submission implements the MinCut algorithm.
4 years ago
chenlei_autodiff
b22c84a77d
[GraphKernel] enable graph kernel for bert optimizers and shufflenetv2 on GPU.
4 years ago
i-robot
92675f7572
!18747 Add expander for op AddN
Merge pull request !18747 from DeshiChen/0618_expand_addn
4 years ago
dayschan
149dab39c5
Add expander for AddN; update akg submodule
4 years ago
l00591931
c7bc867ae4
Add CloneCNodeWithInfos for kernel graph
4 years ago
lingyunli63
a995bea507
recompute_fuse
4 years ago
lishanni513
689945ba43
Enable TensorCore for training wide&deep and deepfm on GPU
4 years ago