forked from openvinotoolkit/npu_plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
passes.td
1228 lines (886 loc) · 34 KB
/
passes.td
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//
// Copyright (C) 2022 Intel Corporation.
// SPDX-License-Identifier: Apache 2.0
//
//
#ifndef VPUX_COMPILER_DIALECT_IE_PASSES
#define VPUX_COMPILER_DIALECT_IE_PASSES
include "mlir/Pass/PassBase.td"
//=================================================================================
// IECommon
//=================================================================================
//
// UseUserPrecision
//
def UseUserPrecision : PassBase<"use-user-precision", "vpux::ModulePass"> {
let summary = "Use user precisions for entry point function prototype";
let description = [{
The pass is a part of `IECommon` pipeline.
This pass updates the CNNNetwork entry point function prototype and use user-provided precisions for its operands and results.
The pass inserts Convert operations from/to topology precisions.
}];
let constructor = "vpux::IE::createUseUserPrecisionPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// UseUserLayout
//
def UseUserLayout : PassBase<"use-user-layout", "vpux::ModulePass"> {
let summary = "Use user layouts for entry point function prototype";
let description = [{
The pass is a part of `IECommon` pipeline.
This pass updates the CNNNetwork entry point function prototype
and uses user-provided layouts for its operands and results.
The pass inserts Reorder operations from/to topology layout.
}];
let constructor = "vpux::IE::createUseUserLayout()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// AdjustLayouts
//
def AdjustLayouts : PassBase<"adjust-layouts", "vpux::FunctionPass"> {
let summary = "Adjust required layouts for all layers";
let description = [{
The pass is a part of `IECommon` pipeline.
This pass adds the required layouts instead of the default one
depending on the layer specification from underlying Dialect.
}];
let constructor = "vpux::IE::createAdjustLayoutsPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// OptimizeReorders
//
def OptimizeReorders : PassBase<"optimize-reorders", "vpux::FunctionPass"> {
let summary = "Optimize extra Reorder operations";
let description = [{
The pass is a part of `IECommon` pipeline.
This pass tries to optimize out Reorder operations for common cases
by propagating them from inputs to outputs and merging into layers.
}];
let constructor = "vpux::IE::createOptimizeReordersPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//=================================================================================
// AdjustForVPU
//=================================================================================
//
// ConvertNearestToStridedConcat
//
def ConvertNearestToStridedConcat : PassBase<"convert-nearest-to-strided-concat", "vpux::FunctionPass"> {
let summary = "Convert nearest interpolate op to strided concat ops";
let description = [{
The pass is a part of `AdjustForVPU` pipeline.
This pass replaces `Nearest Interpolate` operations with `Concat` operations with strides.
}];
let constructor = "vpux::IE::createConvertNearestToStridedConcatPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// ConvertPrecisionToFP16
//
def ConvertPrecisionToFP16 : PassBase<"convert-precision-to-fp16", "vpux::ModulePass"> {
let summary = "Convert tensors precision from FP32 to FP16";
let description = [{
The pass is a part of `AdjustForVPU` pipeline.
This pass replaces all FP32 tensors with FP16.
It updates both function bodies as well as Function signatures.
}];
let constructor = "vpux::IE::createConvertPrecisionToFP16Pass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// ConvertPrecisionToI32
//
def ConvertPrecisionToI32 : PassBase<"convert-precision-to-i32", "vpux::ModulePass"> {
let summary = "Convert tensors precision from I64 to I32";
let description = [{
The pass is a part of `AdjustForVPU` pipeline.
This pass replaces all I64 tensors with I32.
It updates both function bodies as well as Function signatures.
}];
let constructor = "vpux::IE::createConvertPrecisionToI32Pass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// ConvertDepth2SpaceLayer
//
def ConvertDepth2SpaceLayer : PassBase<"convert-depthToSpace", "vpux::FunctionPass"> {
let summary = "Convert DepthToSpace layer to {reshape -> transpose -> reshape} subgraph";
let description = [{
The pass is a part of `AdjustForVPU` pipeline.
This pass replaces all `DepthToSpace` operations with {reshape -> transpose -> reshape} subgraph.
}];
let constructor = "vpux::IE::createConvertDepth2SpaceLayerPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// ConvertShapeTo4D
//
def ConvertShapeTo4D : PassBase<"convert-shape-to-4d", "vpux::FunctionPass"> {
let summary = "Convert tensors shapes to 4D";
let description = [{
The pass is a part of `AdjustForVPU` pipeline.
This pass replaces ND tensor with 4D analogues for layers, which has such limitations on VPUIP level.
Also this pass replaces ND network inputs and outputs with 4D analogues to overcome runtime limitations.
}];
let constructor = "vpux::IE::createConvertShapeTo4DPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// ConvertPaddingsToFloorMode
//
def ConvertPaddingsToFloorMode : PassBase<"convert-paddings-to-floor-mode", "vpux::FunctionPass"> {
let summary = "Convert Convolution and Pooling layers paddings to FLOOR rouding mode";
let description = [{
The pass is a part of `AdjustForVPU` pipeline.
This pass updates padding attributes for Convolution and Pooling layers.
It switches layer rounding mode to FLOOR and updates paddings to satisfy output shape.
}];
let constructor = "vpux::IE::createConvertPaddingsToFloorModePass()";
}
//
// ConvertTile2PerAxisTile
//
def ConvertTile2PerAxisTile : PassBase<"convert-tile-to-per-axis-tiles", "vpux::FunctionPass"> {
let summary = "Convert tile op by multiple axes to multiple PerAxisTile operations";
let description = [{
The pass is a part of `AdjustForVPU` pipeline.
This pass replaces all `Tile` op with a set of `PerAxisTile` operations.
}];
let constructor = "vpux::IE::createConvertTile2PerAxisTilePass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// ConvertFCToConv
//
def ConvertFCToConv : PassBase<"convert-fc-to-conv", "vpux::FunctionPass"> {
let summary = "Convert FullyConnected op to Convolution operation";
let description = [{
The pass is a part of `AdjustForVPU` pipeline.
This pass replaces all `FullyConnected` operations with `Convolution` operation.
It inserts extra `Reshape` operations to satisfy `Convolution` specification.
}];
let constructor = "vpux::IE::createConvertFCToConvPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// ConvertShuffleChannels
//
def ConvertShuffleChannels : PassBase<"convert-shuffle-channels", "vpux::FunctionPass"> {
let summary = "Convert ShuffleChannels to Reshape->Transpose->Reshape";
let description = [{
The pass is a part of `AdjustForVPU` pipeline.
Converts ShuffleChannels to Reshape->Transpose->Reshape.
}];
let constructor = "vpux::IE::createConvertShuffleChannelsPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// UnrollBatch
//
def UnrollBatch : PassBase<"unroll-batch", "vpux::FunctionPass"> {
let summary = "Split FullyConnected inputs with multiple rows";
let description = [{
This pass splits `FullyConnected` inputs by rows.
For example, `FullyConnected` input with 2x64 geometry will be split by two inputs with 1x64 dimensions.
Resulting vector rows go to corresponding `FullyConnected` operations and the outputs are concatenated.
}];
let constructor = "vpux::IE::createUnrollBatchPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// MatMulInputsTo2d
//
def MatMulInputsTo2d : PassBase<"matmul-inputs-to-2d", "vpux::FunctionPass"> {
let summary = "Convert MatMul inputs to 2d";
let description = [{
This pass converts `MatMul` inputs to 2d.
For example, `MatMul` input with 4x1x64 geometry will be split to four inputs with 1x64 dimensions.
Resulting inputs with filters go to `MatMul` operations and the outputs are concatenated.
}];
let constructor = "vpux::IE::createMatMulInputsTo2dPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// ConvertScaleShiftToDW
//
def ConvertScaleShiftToDW : PassBase<"convert-scale-shift-depthwise", "vpux::FunctionPass"> {
let summary = "Convert Scale-Shift operation to Depthwise Convolution";
let description = [{
The pass is a part of `HardwareMode` pipeline.
Convert Scale-Shift operation to Depthwise convolution.
}];
let constructor = "vpux::IE::createConvertScaleShiftToDWPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// FusePostOps
//
def FusePostOps : PassBase<"fuse-post-ops", "vpux::FunctionPass"> {
let summary = "Fuse activation functions with tasks that support post-processing";
let description = [{
The pass is a part of `AdjustForVPU` pipeline.
Fuse activation functions (e.g. ReLU, leaky ReLU) with tasks that support post-processing
depending on the compilation mode
}];
let constructor = "vpux::IE::createFusePostOpsPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// ResolvePWLPostOps
//
def ResolvePWLPostOps : PassBase<"resolve-pwl-post-ops", "vpux::FunctionPass"> {
let summary = "Resolve requirements for fused PWL post-ops";
let description = [{
Ensures the correct quantization ranges are used for fused PWL activation functions or
unfuses them if surrounding tensors are not quantized per-tensor.
}];
let constructor = "vpux::IE::createResolvePWLPostOpsPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// ExpandActivationChannels
//
def ExpandActivationChannels : PassBase<"expand-activation-channels", "vpux::FunctionPass"> {
let summary = "Allign input tensors shape of DPU operation with hardware requirements";
let description = [{
The pass is a part of `buildHardwareModePipeline` pipeline.
This pass processes operations, which can be compile as a DPU tasks and
expands channels number to number divisible by 16 in case they doesn't satisfy hardware requirements
}];
let constructor = "vpux::IE::createExpandActivationChannelsPass()";
let dependentDialects = [
"vpux::IE::IEDialect",
"mlir::StandardOpsDialect"
];
}
//
// LegalizeDilatedConvolution
//
def LegalizeDilatedConvolution : PassBase<"legalize-dilated-conv", "vpux::FunctionPass"> {
let summary = "Handle dilated convolutions";
let description = [{
The pass is a part of `buildHardwareModePipeline` pipeline.
This pass expands filter of dilated convolution so that they are able to be infered
on dpu because of hardware limitation.
}];
let constructor = "vpux::IE::createLegalizeDilatedConvolutionPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// ResolveStridedSlice
//
def ResolveStridedSlice : PassBase<"resolve-strided-slice", "vpux::FunctionPass"> {
let summary = "Decouple strided slice to slice + reshape";
let description = [{
The pass is a part of `AdjustForVPU` pipeline.
It replaces IE::StridedSlice with non zero masks to a simpler IE::StridedSlice with zero masks + IE::Reshape
It replaces IE::StridedSlice with dense<1> strides strides with a simple IE::Slice operation
}];
let constructor = "vpux::IE::createResolveStridedSlicePass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// ConvertConv1DToConv2D
//
def ConvertConv1DToConv2D : PassBase<"convert-conv1d-to-conv2d", "vpux::FunctionPass"> {
let summary = "Convert Convolution1D and GroupConvolution1D to its 2D variance";
let description = [{
The pass is a part of `AdjustForVPU` pipeline.
Extends input, filter and output tensors with height = 1.
[N, C, W] -> [N, C, 1, W]
strides: {2} -> strides: {1, 2}
pads_begin: {2} -> pads_begin: {0, 2}
pads_end: {2} -> pads_end: {0, 2}
dilations: {2} -> dilations: {1, 2}
}];
let constructor = "vpux::IE::createConvertConv1DToConv2DPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// UniquifyOps
//
def UniquifyOps : PassBase<"uniquify-ops", "vpux::FunctionPass"> {
let summary = "Remove duplicating operations with a common producer Value";
let description = [{
The pass is a part of `AdjustForVPU` pipeline.
This pass merges operations that are identical to each other, combining consumers.
}];
let constructor = "vpux::IE::createUniquifyOpsPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// ConvertToMemPermute
//
def ConvertToMemPermute : PassBase<"convert-to-mem-permute", "vpux::FunctionPass"> {
let summary = "Convert Reorder and Transpose ops to MemPermute operation";
let description = [{
The pass is a part of `AdjustForVPU` pipeline.
This pass replaces all `Reorder` and `Transpose` operations with `MemPermute` operation.
}];
let constructor = "vpux::IE::createConvertToMemPermutePass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
// SplitConvWithMultipleFQ
//
def SplitConvWithMultipleFQ : PassBase<"split-conv-with-multiple-fq", "vpux::FunctionPass"> {
let summary = "Splits Convolution for multiple FakeQuantize";
let description = [{
The pass is a part of `HardwareMode` pipeline.
It splits `Convolution` operation with multiple consumers with `FakeQuantize` operations,
into multiple `Convolution` operations, one for each consumer. This transformation is needed to be
able to quantize convolution and fuse bias and post-processing operations.
}];
let constructor = "vpux::IE::createSplitConvWithMultipleFQPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// ConvertDeconvToConv
//
def ConvertDeconv2DToConv2D : PassBase<"convert-deconv-to-conv", "vpux::FunctionPass"> {
let summary = "Convert Deconvolution 2D to Convolution 2D";
let description = [{
The pass is a part of `AdjustForVPU` pipeline.
Replaces deconvolution by upsampling and convolution
}];
let constructor = "vpux::IE::createConvertDeconv2DToConv2DPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// HandleLargeStrides
//
def HandleLargeStrides : PassBase<"handle-large-strides", "vpux::FunctionPass"> {
let summary = "Handle operations with large strides";
let description = [{
This pass splits operations with strides larger than supported on hardware.
}];
let constructor = "vpux::IE::createHandleLargeStridesPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// SwapMaxPoolWithActivation
//
def SwapMaxPoolWithActivation : PassBase<"swap-maxpool-with-act", "vpux::FunctionPass"> {
let summary = "Swaps the MaxPool and activation";
let description = [{
This pass is needed for VPUX37XX only since HW MaxPool does not support post-op operations.
Operations are swapped only if there is an operation before MaxPool that supports post-ops.
}];
let constructor = "vpux::IE::createSwapMaxPoolWithActivation()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//=================================================================================
// LowPrecision
//=================================================================================
//
// SwapFakeQuantReshape
//
def SwapFakeQuantReshape : PassBase<"swap-fake-quant-reshape", "vpux::FunctionPass"> {
let summary = "Swap FakeQuantize with Reshape when required to void redundant expand and permute ops";
let description = [{
The pass is a part of `LowPrecision` pipeline.
It matches pattern non-channel-aligned op -> optional Reshapes -> FQ -> Reshapes -> channel-aligned op
Move the FQ right before the channel-aligned op to avoid redundant expand and permute ops.
}];
let constructor = "vpux::IE::createSwapFakeQuantReshapePass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// SplitFakeQuant
//
def SplitFakeQuant : PassBase<"split-fake-quant", "vpux::FunctionPass"> {
let summary = "Splits FakeQuantize";
let description = [{
The pass is a part of `LowPrecision` pipeline.
It splits `FakeQuantize` operations to `quant.qcast -> quant.dcast` pair.
}];
let constructor = "vpux::IE::createSplitFakeQuantPass()";
let dependentDialects = [
"vpux::IE::IEDialect",
"mlir::quant::QuantizationDialect"
];
}
//
// DequantizeConst
//
def DequantizeConst : PassBase<"dequantize-const", "vpux::FunctionPass"> {
let summary = "Dequantize constant tensors";
let description = [{
The pass is a part of `LowPrecision` pipeline.
It performs constant folding for `Constant -> quant.dcast` case.
The pass is used as a fallback to FP16 computations for the cases, where quantized types where not used by layers.
}];
let constructor = "vpux::IE::createDequantizeConstPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// MergeFakeQuant
//
def MergeFakeQuant : PassBase<"merge-fake-quant", "vpux::FunctionPass"> {
let summary = "Merge back to FakeQuantize";
let description = [{
The pass is a part of `LowPrecision` pipeline.
It merges pair `quant.qcast -> quant.dcast` into single `IE.FakeQuantize`.
The pass is used as a fallback to FP16 computations for the cases, where quantized types where not used by layers.
}];
let constructor = "vpux::IE::createMergeFakeQuantPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// DeletePerAxisQuantize
//
def DeletePerAxisQuantization : PassBase<"delete-peraxis-quantization", "vpux::FunctionPass"> {
let summary = "Delete PerAxis Quantize Dequantize for VPUX37XX";
let description = [{
The pass is a part of `LowPrecision` pipeline.
It deletes per axis quantization which left after LPT.
Conversion is not mathimatically equal, but for now it gives small
accuracy deviation
}];
let constructor = "vpux::IE::createDeletePerAxisQuantizationPass()";
let dependentDialects = [
"vpux::IE::IEDialect",
"mlir::quant::QuantizationDialect"
];
}
//
// PropagateQuantizeDequantize
//
def PropagateQuantizeDequantize : PassBase<"propagate-quantize-dequantize", "vpux::FunctionPass"> {
let summary = "Propagate Quantize/Dequantize through agnostic operations";
let description = [{
The pass is a part of LowPrecision pipeline.
Quantize/Dequantize are propagated through operations
}];
let constructor = "vpux::IE::createPropagateQuantizeDequantizePass()";
let dependentDialects = [
"vpux::IE::IEDialect",
"mlir::quant::QuantizationDialect"
];
}
//
// FuseQuantizedOps
//
def FuseQuantizedOps : PassBase<"fuse-quantized-ops", "vpux::FunctionPass"> {
let summary = "Update quantize/dequantize ops";
let description = [{
The pass is a part of `LowPrecision` pipeline.
Pass detects pattern quant.dcast -> op -> quant.qcast and converts it into single quantized Op
}];
let constructor = "vpux::IE::createFuseQuantizedOpsPass()";
let dependentDialects = [
"vpux::IE::IEDialect",
"mlir::quant::QuantizationDialect"
];
}
//
// RemoveQuantDequantSeq
//
def RemoveQuantDequantSeq : PassBase<"remove-quantdequant-seq", "vpux::FunctionPass"> {
let summary = "Removes quantize->dequantize ops sequence";
let description = [{
The optional pass in the `LowPrecision` pipeline.
Pass detects pattern quantize -> dequantize and removes it
}];
let constructor = "vpux::IE::createRemoveQuantDequantSeqPass()";
let dependentDialects = [
"vpux::IE::IEDialect",
"mlir::quant::QuantizationDialect"
];
}
//
// OptimizeUnalignedQDQSeq
//
def OptimizeUnalignedQDQSeq : PassBase<"optimize-unaligned-qdq-seq", "vpux::FunctionPass"> {
let summary = "Swaps AffineReshape->FakeQuantize sequence if channels become unaligned after AffineReshape";
let description = [{
Pass swaps order of AffineReshape->FakeQuantize sequence if channels become unaligned after AffineReshape
Otherwise additionals ops are introduce in order to align channels which impacts performance.
}];
let constructor = "vpux::IE::createOptimizeUnalignedQDQSeqPass()";
let dependentDialects = [
"vpux::IE::IEDialect",
"mlir::quant::QuantizationDialect"
];
}
//
// ConvertWeightsToU8
//
def ConvertWeightsToU8 : PassBase<"convert-weights-to-u8", "vpux::FunctionPass"> {
let summary = "Shift data from a signed range to an unsigned one";
let description = [{
The pass is a part of `LowPrecision` pipeline.
Pass detects quantized convolution and shifts weights data from a signed range to an unsigned one
}];
let constructor = "vpux::IE::createConvertWeightsToU8Pass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// ConvertQuantizeOpsToEltwise
//
def ConvertQuantizeOpsToEltwise : PassBase<"convert-quantize-ops-to-eltwise", "vpux::FunctionPass"> {
let summary = "Converts per-tensor Quantize/Dequantize to eltwise And mixed-precision operation";
let description = [{
The pass is a part of `LowPrecision` pipeline.
Converts per-tensor Quantize/Dequantize to eltwise And mixed-precision operation
where input2 is input1 to perform type conversion on DPU instead of UPA.
}];
let constructor = "vpux::IE::createConvertQuantizeOpsToEltwisePass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// FuseConvertWithQuantize
//
def FuseConvertWithQuantize : PassBase<"fuse-convert-with-quantize", "vpux::FunctionPass"> {
let summary = "Fuse Convert with Quantize into QuantCast operation";
let description = [{
Pass detects pattern Convert(i8/ui8 -> FP16) -> Quantize(FP16 -> !quant.uniform<...>)
and fuses it into single QuantCast(i8/ui8 -> !quant.uniform<...>) operation.
}];
let constructor = "vpux::IE::createFuseConvertWithQuantizePass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// ConvertAvgPoolToDWConv
//
def ConvertAvgPoolToDWConv : PassBase<"convert-avg-pool-to-dw-conv", "vpux::FunctionPass"> {
let summary = "Convert AvgPool op to GroupConvolution op";
let description = [{
The pass is a part of `AdjustForVPU` pipeline.
This pass replaces suitable `AvgPool` operations with `GroupConvolution` operation.
}];
let constructor = "vpux::IE::createConvertAvgPoolToDWConvPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// HandleAsymmetricStrides
//
def HandleAsymmetricStrides : PassBase<"handle-asymmetric-strides", "vpux::FunctionPass"> {
let summary = "Handle operations with asymmetric strides";
let description = [{
The pass is a part of `AdjustForVPU` pipeline.
This pass splits operations so that they are able to be infered with symmetric strides
on dpu because of hardware limitation.
}];
let constructor = "vpux::IE::createHandleAsymmetricStridesPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// FusePadOps
//
def FusePadOps : PassBase<"fuse-pad-ops", "vpux::FunctionPass"> {
let summary = "Fuse PadOp with CONSTANT model";
let description = [{
The pass is a part of `AdjustForVPU` pipeline.
PadOp with CONSTANT model, pad value is 0 and the padding is needed in H and W dimensions only.
Merge [Pad] -> [Conv] into [Conv].
Merge [Pad] -> [GroupConv] into [GroupConv].
Merge [Pad] -> [MaxPool] into [MaxPool].
}];
let constructor = "vpux::IE::createFusePadOpsPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// ConvertPadToConcat
//
def ConvertPadToConcat : PassBase<"convert-pad-to-concat", "vpux::FunctionPass"> {
let summary = "Convert Pad Ops to Concat with Constant";
let description = [{
The pass is a part of `AdjustForVPU` pipeline.
After FusePadOps pass, there are Pad Ops can not be fused.
Replace `IE::PadOp` with `IE::ConcatOp` and `Const::DeclareOp`
Only `IE::PadMode::CONSTANT` case is supported.
}];
let constructor = "vpux::IE::createConvertPadToConcatPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// UpstreamSlice
//
def UpstreamSlice : PassBase<"upstream-slice", "vpux::FunctionPass"> {
let summary = "Optimization by upstreaming slice operations";
let description = [{
Optimizes scenarios of IE::StridedSlice and IE::SliceOp without neighboring operations.
Moves the slice operations upwards through the graph, reducing both compute and memory usage.
In some cases the slice operation may be safely removed from the graph, if the action of upstreaming it
only adapts the operations constants.
}];
let constructor = "vpux::IE::createUpstreamSlicePass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// HandleLargeKernels
//
def HandleLargeKernels : PassBase<"handle-large-kernels", "vpux::FunctionPass"> {
let summary = "Handle large kernels ops";
let description = [{
The pass is a part of `AdjustForVPU` pipeline.
This pass replaces average pooling layers that have kernels bigger than supported by hardware (11x11),
with equivalent two average pooling (approx equiv in case of prime kernel i.e. 13x13).
}];
let constructor = "vpux::IE::createHandleLargeKernelsPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// ConvertReduceToPooling
//
def ConvertReduceToPooling : PassBase<"convert-reduce-to-pooling", "vpux::FunctionPass"> {
let summary = "Convert reduce to pooling ops";
let description = [{
The pass is to convert reduce operations (mean, max, sum, min) into pooling.
}];
let constructor = "vpux::IE::createConvertReduceToPoolingPass()";
let dependentDialects = [
"vpux::IE::IEDialect"
];
}
//
// InsertMaxpoolToConcatLRelu
//