files 27.3 KB
Newer Older
Shucai Xiao's avatar
Shucai Xiao committed
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
adjust_allocation.cpp
analyze_streams.cpp
api/api.cpp
apply_alpha_beta.cpp
argument.cpp
auto_contiguous.cpp
common.cpp
compile_src.cpp
convert_to_json.cpp
cpp_generator.cpp
dead_code_elimination.cpp
dom_info.cpp
driver/main.cpp
driver/alexnet.cpp
driver/verify.cpp
driver/inceptionv3.cpp
driver/resnet50.cpp
driver/marker_roctx.cpp
driver/perf.cpp
dynamic_loader.cpp
eliminate_allocation.cpp
eliminate_common_subexpression.cpp
eliminate_concat.cpp
eliminate_contiguous.cpp
eliminate_data_type.cpp
eliminate_identity.cpp
eliminate_pad.cpp
env.cpp
file_buffer.cpp
fuse_pointwise.cpp
generate.cpp
include/migraphx/cpp_generator.hpp
inline_module.cpp
insert_pad.cpp
instruction.cpp
json.cpp
load_save.cpp
make_op.cpp
module.cpp
msgpack.cpp
normalize_attributes.cpp
normalize_ops.cpp
onnx/parse_lstm.cpp
onnx/parse_gru.cpp
onnx/parse_squeeze.cpp
onnx/parse_convolution.cpp
onnx/parse_pow.cpp
onnx/parse_randomnormal_ops.cpp
onnx/parse_loop.cpp
onnx/parse_generic_op.cpp
onnx/parse_greaterorequal.cpp
onnx/parse_matmul.cpp
onnx/parse_prefix_scan.cpp
onnx/parse_reshape.cpp
onnx/parse_where.cpp
onnx/parse_constant_of_shape.cpp
onnx/onnx.cpp
onnx/parse_range.cpp
onnx/padding.cpp
onnx/parse_hardsigmoid.cpp
onnx/parse_gather_elements.cpp
onnx/parse_imagescalar.cpp
onnx/parse_transpose.cpp
onnx/parse_arg_op.cpp
onnx/op_parser.cpp
onnx/parse_spacetodepth.cpp
onnx/parse_softmax.cpp
onnx/.parse_softmax.cpp.swp
onnx/parse_deconvolution.cpp
onnx/parse_resize.cpp
onnx/parse_instancenorm.cpp
onnx/parse_dequantizelinear.cpp
onnx/parse_multinomial.cpp
onnx/parse_nonzero.cpp
onnx/parse_quantizelinear.cpp
onnx/parse_lessorequal.cpp
onnx/parse_slice.cpp
onnx/parse_dropout.cpp
onnx/parse_softsign.cpp
onnx/parse_binary_op.cpp
onnx/parse_onehot.cpp
onnx/parse_split.cpp
onnx/parse_shape.cpp
onnx/parse_expand.cpp
onnx/parse_batchnorm.cpp
onnx/parse_constant.cpp
onnx/parse_tile.cpp
onnx/parse_softplus.cpp
onnx/parse_aten.cpp
onnx/parse_pooling.cpp
onnx/parse_gemm.cpp
onnx/parse_cast.cpp
onnx/parse_rnn.cpp
onnx/parse_variadic_op.cpp
onnx/onnx_parser.cpp
onnx/parse_constant_fill.cpp
onnx/parse_roialign.cpp
onnx/parse_reduce_op.cpp
onnx/parse_if.cpp
onnx/parse_clip.cpp
onnx/conv.cpp
onnx/parse_randomuniform_ops.cpp
onnx/parse_selu.cpp
onnx/parse_pad.cpp
onnx/parse_topk.cpp
onnx/parse_mean.cpp
onnx/parse_compare_op.cpp
onnx/map_activation_functions.cpp
onnx/checks.cpp
onnx/parse_depthtospace.cpp
onnx/parse_thresholdedrelu.cpp
operation.cpp
opt/memory_coloring_impl.cpp
opt/memory_coloring.cpp
pass_manager.cpp
permutation.cpp
preallocate_param.cpp
process.cpp
program.cpp
propagate_constant.cpp
py/migraphx_py.cpp
quantization.cpp
quantize_fp16.cpp
quantize_int8.cpp
reduce_dims.cpp
register_op.cpp
register_target.cpp
rewrite_batchnorm.cpp
rewrite_pooling.cpp
rewrite_quantization.cpp
rewrite_rnn.cpp
schedule.cpp
serialize.cpp
shape.cpp
simplify_algebra.cpp
simplify_qdq.cpp
simplify_reshapes.cpp
targets/ref/gemm.cpp
targets/ref/target.cpp
targets/ref/lowering.cpp
targets/gpu/logsoftmax.cpp
targets/gpu/write_literals.cpp
targets/gpu/schedule_model.cpp
targets/gpu/device_name.cpp
targets/gpu/compile_hip_code_object.cpp
targets/gpu/argmin.cpp
targets/gpu/convert.cpp
targets/gpu/argmax.cpp
targets/gpu/driver/main.cpp
targets/gpu/driver/action.cpp
targets/gpu/driver/parser.cpp
targets/gpu/driver/run_op.cpp
targets/gpu/driver/compile_pointwise.cpp
targets/gpu/driver/perf.cpp
targets/gpu/lrn.cpp
targets/gpu/convolution.cpp
targets/gpu/softmax.cpp
targets/gpu/abs.cpp
targets/gpu/rocblas.cpp
targets/gpu/reverse.cpp
targets/gpu/pooling.cpp
targets/gpu/elu.cpp
targets/gpu/rnn_variable_seq_lens.cpp
targets/gpu/compile_hip.cpp
targets/gpu/eliminate_workspace.cpp
targets/gpu/device/logsoftmax.cpp
targets/gpu/device/prefix_scan_sum.cpp
targets/gpu/device/argmin.cpp
targets/gpu/device/add_clip.cpp
targets/gpu/device/convert.cpp
targets/gpu/device/reduce_sum.cpp
targets/gpu/device/mul.cpp
targets/gpu/device/argmax.cpp
targets/gpu/device/softmax.cpp
targets/gpu/device/reverse.cpp
targets/gpu/device/rnn_variable_seq_lens.cpp
targets/gpu/device/reduce_prod.cpp
targets/gpu/device/logical_or.cpp
targets/gpu/device/mul_add.cpp
targets/gpu/device/add.cpp
targets/gpu/device/reduce_mean.cpp
targets/gpu/device/rsqrt.cpp
targets/gpu/device/multinomial.cpp
targets/gpu/device/sqrt.cpp
targets/gpu/device/gelu.cpp
targets/gpu/device/int8_gemm_pack.cpp
targets/gpu/device/cos.cpp
targets/gpu/device/erf.cpp
targets/gpu/device/ceil.cpp
targets/gpu/device/scatter.cpp
targets/gpu/device/contiguous.cpp
targets/gpu/device/sign.cpp
targets/gpu/device/nonzero.cpp
targets/gpu/device/recip.cpp
targets/gpu/device/max.cpp
targets/gpu/device/exp.cpp
targets/gpu/device/clip.cpp
targets/gpu/device/pow.cpp
targets/gpu/device/logical_and.cpp
targets/gpu/device/floor.cpp
targets/gpu/device/add_sigmoid.cpp
targets/gpu/device/gather.cpp
targets/gpu/device/asin.cpp
targets/gpu/device/acos.cpp
targets/gpu/device/acosh.cpp
targets/gpu/device/layernorm.cpp
targets/gpu/device/div.cpp
targets/gpu/device/sinh.cpp
targets/gpu/device/round.cpp
targets/gpu/device/less.cpp
targets/gpu/device/sub.cpp
targets/gpu/device/concat.cpp
targets/gpu/device/add_tanh.cpp
targets/gpu/device/equal.cpp
targets/gpu/device/reduce_max.cpp
targets/gpu/device/relu.cpp
targets/gpu/device/atanh.cpp
targets/gpu/device/mul_add_relu.cpp
targets/gpu/device/log.cpp
targets/gpu/device/atan.cpp
targets/gpu/device/prelu.cpp
targets/gpu/device/where.cpp
targets/gpu/device/tanh.cpp
targets/gpu/device/pad.cpp
targets/gpu/device/asinh.cpp
targets/gpu/device/reduce_min.cpp
targets/gpu/device/cosh.cpp
targets/gpu/device/add_relu.cpp
targets/gpu/device/sin.cpp
targets/gpu/device/topk.cpp
targets/gpu/device/min.cpp
targets/gpu/device/tan.cpp
targets/gpu/device/fill.cpp
targets/gpu/device/logical_xor.cpp
targets/gpu/device/greater.cpp
targets/gpu/device/sigmoid.cpp
targets/gpu/device/sqdiff.cpp
targets/gpu/device/unary_not.cpp
targets/gpu/quant_convolution.cpp
targets/gpu/hip.cpp
targets/gpu/multinomial.cpp
targets/gpu/compile_roialign.cpp
targets/gpu/int8_gemm_pack.cpp
targets/gpu/scatter.cpp
targets/gpu/nonzero.cpp
targets/gpu/clip.cpp
targets/gpu/mlir_conv.cpp
targets/gpu/gather.cpp
targets/gpu/batch_norm_inference.cpp
targets/gpu/allocation_model.cpp
targets/gpu/analyze_streams.cpp
targets/gpu/int8_conv_pack.cpp
targets/gpu/fuse_ops.cpp
targets/gpu/concat.cpp
targets/gpu/target.cpp
targets/gpu/lowering.cpp
targets/gpu/gemm_impl.cpp
targets/gpu/leaky_relu.cpp
targets/gpu/kernel.cpp
targets/gpu/pad.cpp
targets/gpu/compile_ops.cpp
targets/gpu/deconvolution.cpp
targets/gpu/compile_pointwise.cpp
targets/gpu/topk.cpp
targets/gpu/loop.cpp
targets/gpu/code_object_op.cpp
targets/gpu/pack_args.cpp
targets/gpu/sync_device.cpp
targets/gpu/pack_int8_args.cpp
targets/cpu/logsoftmax.cpp
targets/cpu/write_literals.cpp
targets/cpu/gemm.cpp
targets/cpu/lrn.cpp
targets/cpu/convolution.cpp
targets/cpu/softmax.cpp
targets/cpu/pooling.cpp
targets/cpu/reorder.cpp
targets/cpu/erf.cpp
targets/cpu/eltwise.cpp
targets/cpu/copy.cpp
targets/cpu/preallocate.cpp
targets/cpu/gather.cpp
targets/cpu/layernorm.cpp
targets/cpu/reduction.cpp
targets/cpu/allocation_model.cpp
targets/cpu/fuse_ops.cpp
targets/cpu/sub.cpp
targets/cpu/concat.cpp
targets/cpu/target.cpp
targets/cpu/lowering.cpp
targets/cpu/allocate.cpp
targets/cpu/deconvolution.cpp
targets/cpu/binary.cpp
targets/cpu/dnnl.cpp
tf/parse_squeeze.cpp
tf/parse_generic_op.cpp
tf/parse_matmul.cpp
tf/parse_depthwiseconv.cpp
tf/parse_reshape.cpp
tf/tf_parser.cpp
tf/tf.cpp
tf/parse_transpose.cpp
tf/parse_relu6.cpp
tf/parse_arg_op.cpp
tf/op_parser.cpp
tf/parse_softmax.cpp
tf/parse_concat.cpp
tf/parse_gather.cpp
tf/parse_slice.cpp
tf/parse_binary_op.cpp
tf/parse_onehot.cpp
tf/parse_split.cpp
tf/parse_shape.cpp
tf/parse_batchnorm.cpp
tf/parse_constant.cpp
tf/parse_pooling.cpp
tf/parse_cast.cpp
tf/parse_biasadd.cpp
tf/parse_pack.cpp
tf/parse_conv.cpp
tf/parse_stridedslice.cpp
tf/parse_pad.cpp
tf/parse_mean.cpp
tf/parse_expanddims.cpp
tmp_dir.cpp
value.cpp
verify_args.cpp
api/include/migraphx/migraphx.hpp
driver/marker_roctx.hpp
driver/command.hpp
driver/models.hpp
driver/argument_parser.hpp
driver/perf.hpp
driver/verify.hpp
driver/precision.hpp
include/migraphx/gemm.hpp
include/migraphx/eliminate_contiguous.hpp
include/migraphx/iterator.hpp
include/migraphx/argument.hpp
include/migraphx/fuse_pointwise.hpp
include/migraphx/eliminate_identity.hpp
include/migraphx/concat_opt.hpp
include/migraphx/make_op.hpp
include/migraphx/module.hpp
include/migraphx/type_traits.hpp
include/migraphx/eliminate_common_subexpression.hpp
include/migraphx/tensor_view.hpp
include/migraphx/pass_manager.hpp
include/migraphx/module_ref.hpp
include/migraphx/program.hpp
include/migraphx/float_equal.hpp
include/migraphx/tmp_dir.hpp
include/migraphx/tf.hpp
include/migraphx/make_shared_array.hpp
include/migraphx/raw_data.hpp
include/migraphx/memory_coloring.hpp
include/migraphx/filesystem.hpp
include/migraphx/eliminate_concat.hpp
include/migraphx/eliminate_pad.hpp
include/migraphx/normalize_attributes.hpp
include/migraphx/instruction.hpp
include/migraphx/dfor.hpp
include/migraphx/simplify_qdq.hpp
include/migraphx/value.hpp
include/migraphx/pass_config.hpp
include/migraphx/reflect.hpp
include/migraphx/adjust_allocation.hpp
include/migraphx/dom_info.hpp
include/migraphx/tune_axis.hpp
include/migraphx/int_divide.hpp
include/migraphx/par_dfor.hpp
include/migraphx/shape_for_each.hpp
include/migraphx/erase.hpp
include/migraphx/par_for.hpp
include/migraphx/stringutils.hpp
include/migraphx/errors.hpp
include/migraphx/dead_code_elimination.hpp
include/migraphx/cpp_generator.hpp
include/migraphx/register_target.hpp
include/migraphx/apply_alpha_beta.hpp
include/migraphx/insert_pad.hpp
include/migraphx/operators.hpp
include/migraphx/quantization.hpp
include/migraphx/env.hpp
include/migraphx/msgpack.hpp
include/migraphx/check_context.hpp
include/migraphx/tracer.hpp
include/migraphx/run_loop.hpp
include/migraphx/lifetime.hpp
include/migraphx/operation.hpp
include/migraphx/target.hpp
include/migraphx/marker.hpp
include/migraphx/convert_to_json.hpp
include/migraphx/stream_model.hpp
include/migraphx/output_iterator.hpp
include/migraphx/config.hpp
include/migraphx/onnx.hpp
include/migraphx/type_name.hpp
include/migraphx/fallthrough.hpp
include/migraphx/instruction_ref.hpp
include/migraphx/cloneable.hpp
include/migraphx/algorithm.hpp
include/migraphx/auto_register.hpp
include/migraphx/auto_any_cast.hpp
include/migraphx/serialize.hpp
include/migraphx/rewrite_rnn.hpp
include/migraphx/literal.hpp
include/migraphx/match/gelu_tanh.hpp
include/migraphx/match/gelu_erf.hpp
include/migraphx/match/layernorm.hpp
include/migraphx/manage_ptr.hpp
include/migraphx/check_shapes.hpp
include/migraphx/requires.hpp
include/migraphx/verify_args.hpp
include/migraphx/process.hpp
include/migraphx/schedule.hpp
include/migraphx/builtin.hpp
include/migraphx/propagate_constant.hpp
include/migraphx/rewrite_quantization.hpp
include/migraphx/make_signed.hpp
include/migraphx/compile_src.hpp
include/migraphx/dynamic_loader.hpp
include/migraphx/iota_iterator.hpp
include/migraphx/permutation.hpp
include/migraphx/half.hpp
include/migraphx/allocation_model.hpp
include/migraphx/quantize_fp16.hpp
include/migraphx/shape.hpp
include/migraphx/common.hpp
include/migraphx/compile_options.hpp
include/migraphx/register_op.hpp
include/migraphx/file_buffer.hpp
include/migraphx/verify.hpp
include/migraphx/normalize_ops.hpp
include/migraphx/analyze_streams.hpp
include/migraphx/rewrite_batchnorm.hpp
include/migraphx/rank.hpp
include/migraphx/preallocate_param.hpp
include/migraphx/streamutils.hpp
include/migraphx/op/max.hpp
include/migraphx/op/unary.hpp
include/migraphx/op/abs.hpp
include/migraphx/op/convolution.hpp
include/migraphx/op/multibroadcast.hpp
include/migraphx/op/binary.hpp
include/migraphx/op/nonzero.hpp
include/migraphx/op/cosh.hpp
include/migraphx/op/unary_not.hpp
include/migraphx/op/neg.hpp
include/migraphx/op/sign.hpp
include/migraphx/op/logical_and.hpp
include/migraphx/op/tan.hpp
include/migraphx/op/step.hpp
include/migraphx/op/gather.hpp
include/migraphx/op/acos.hpp
include/migraphx/op/im2col.hpp
include/migraphx/op/lstm.hpp
include/migraphx/op/sqrt.hpp
include/migraphx/op/prefix_scan_op.hpp
include/migraphx/op/where.hpp
include/migraphx/op/deconvolution.hpp
include/migraphx/op/sinh.hpp
include/migraphx/op/rnn_last_cell_output.hpp
include/migraphx/op/cos.hpp
include/migraphx/op/relu.hpp
include/migraphx/op/dot.hpp
include/migraphx/op/quant_dot.hpp
include/migraphx/op/round.hpp
include/migraphx/op/flatten.hpp
include/migraphx/op/sigmoid.hpp
include/migraphx/op/contiguous.hpp
include/migraphx/op/sqdiff.hpp
include/migraphx/op/quant_convolution.hpp
include/migraphx/op/elu.hpp
include/migraphx/op/pooling.hpp
include/migraphx/op/gru.hpp
include/migraphx/op/softmax.hpp
include/migraphx/op/add.hpp
include/migraphx/op/exp.hpp
include/migraphx/op/reduce_min.hpp
include/migraphx/op/reduce_mean.hpp
include/migraphx/op/logsoftmax.hpp
include/migraphx/op/sin.hpp
include/migraphx/op/name.hpp
include/migraphx/op/scatter.hpp
include/migraphx/op/pow.hpp
include/migraphx/op/multinomial.hpp
include/migraphx/op/unsqueeze.hpp
include/migraphx/op/leaky_relu.hpp
include/migraphx/op/argmax.hpp
include/migraphx/op/if_op.hpp
include/migraphx/op/unknown.hpp
include/migraphx/op/get_tuple_elem.hpp
include/migraphx/op/reshape.hpp
include/migraphx/op/batch_norm_inference.hpp
include/migraphx/op/lrn.hpp
include/migraphx/op/slice.hpp
include/migraphx/op/undefined.hpp
include/migraphx/op/mul.hpp
include/migraphx/op/pointwise.hpp
include/migraphx/op/loop.hpp
include/migraphx/op/less.hpp
include/migraphx/op/rnn_last_hs_output.hpp
include/migraphx/op/acosh.hpp
include/migraphx/op/squeeze.hpp
include/migraphx/op/nonmaxsuppression.hpp
include/migraphx/op/capture.hpp
include/migraphx/op/rnn_var_sl_last_output.hpp
include/migraphx/op/atan.hpp
include/migraphx/op/prelu.hpp
include/migraphx/op/div.hpp
include/migraphx/op/argmin.hpp
include/migraphx/op/as_shape.hpp
include/migraphx/op/topk.hpp
include/migraphx/op/dequantizelinear.hpp
include/migraphx/op/reduce_op.hpp
include/migraphx/op/normalize_attribute.hpp
include/migraphx/op/convert.hpp
include/migraphx/op/recip.hpp
include/migraphx/op/transpose.hpp
include/migraphx/op/logical_or.hpp
include/migraphx/op/log.hpp
include/migraphx/op/load.hpp
include/migraphx/op/tanh.hpp
include/migraphx/op/erf.hpp
include/migraphx/op/outline.hpp
include/migraphx/op/common.hpp
include/migraphx/op/reduce_prod.hpp
include/migraphx/op/logical_xor.hpp
include/migraphx/op/atanh.hpp
include/migraphx/op/rsqrt.hpp
include/migraphx/op/reverse.hpp
include/migraphx/op/rnn.hpp
include/migraphx/op/asinh.hpp
include/migraphx/op/floor.hpp
include/migraphx/op/rnn_variable_seq_lens.hpp
include/migraphx/op/broadcast.hpp
include/migraphx/op/asin.hpp
include/migraphx/op/min.hpp
include/migraphx/op/sub.hpp
include/migraphx/op/pad.hpp
include/migraphx/op/reduce_max.hpp
include/migraphx/op/roialign.hpp
include/migraphx/op/ceil.hpp
include/migraphx/op/scalar.hpp
include/migraphx/op/reduce_sum.hpp
include/migraphx/op/quantizelinear.hpp
include/migraphx/op/equal.hpp
include/migraphx/op/identity.hpp
include/migraphx/op/concat.hpp
include/migraphx/op/greater.hpp
include/migraphx/op/clip.hpp
include/migraphx/op/prefix_scan_sum.hpp
include/migraphx/array.hpp
include/migraphx/json.hpp
include/migraphx/pad_calc.hpp
include/migraphx/assert.hpp
include/migraphx/rewrite_pooling.hpp
include/migraphx/optional.hpp
include/migraphx/auto_contiguous.hpp
include/migraphx/generate.hpp
include/migraphx/ranges.hpp
include/migraphx/eliminate_allocation.hpp
include/migraphx/functional.hpp
include/migraphx/schedule_model.hpp
include/migraphx/inline_module.hpp
include/migraphx/time.hpp
include/migraphx/eliminate_data_type.hpp
include/migraphx/simplify_reshapes.hpp
include/migraphx/quantize_int8.hpp
include/migraphx/reduce_dims.hpp
include/migraphx/clamp.hpp
include/migraphx/load_save.hpp
include/migraphx/simplify_algebra.hpp
include/migraphx/iterator_for.hpp
include/migraphx/context.hpp
include/migraphx/matcher.hpp
include/migraphx/pass.hpp
onnx/include/migraphx/onnx/op_parser.hpp
onnx/include/migraphx/onnx/map_activation_functions.hpp
onnx/include/migraphx/onnx/checks.hpp
onnx/include/migraphx/onnx/onnx_parser.hpp
onnx/include/migraphx/onnx/padding.hpp
onnx/include/migraphx/onnx/conv.hpp
opt/memory_coloring_impl.hpp
targets/ref/include/migraphx/ref/gemm.hpp
targets/ref/include/migraphx/ref/target.hpp
targets/ref/include/migraphx/ref/lowering.hpp
targets/ref/include/migraphx/ref/context.hpp
targets/gpu/driver/include/migraphx/gpu/driver/parser.hpp
targets/gpu/driver/include/migraphx/gpu/driver/perf.hpp
targets/gpu/driver/include/migraphx/gpu/driver/action.hpp
targets/gpu/kernels/include/migraphx/kernels/hip.hpp
targets/gpu/kernels/include/migraphx/kernels/type_traits.hpp
targets/gpu/kernels/include/migraphx/kernels/generic_constant.hpp
targets/gpu/kernels/include/migraphx/kernels/basic_ops.hpp
targets/gpu/kernels/include/migraphx/kernels/tensor_view.hpp
targets/gpu/kernels/include/migraphx/kernels/vec.hpp
targets/gpu/kernels/include/migraphx/kernels/dfor.hpp
targets/gpu/kernels/include/migraphx/kernels/print.hpp
targets/gpu/kernels/include/migraphx/kernels/pointwise.hpp
targets/gpu/kernels/include/migraphx/kernels/preload.hpp
targets/gpu/kernels/include/migraphx/kernels/types.hpp
targets/gpu/kernels/include/migraphx/kernels/algorithm.hpp
targets/gpu/kernels/include/migraphx/kernels/math.hpp
targets/gpu/kernels/include/migraphx/kernels/shape.hpp
targets/gpu/kernels/include/migraphx/kernels/debug.hpp
targets/gpu/kernels/include/migraphx/kernels/array.hpp
targets/gpu/kernels/include/migraphx/kernels/integral_constant.hpp
targets/gpu/kernels/include/migraphx/kernels/functional.hpp
targets/gpu/kernels/include/migraphx/kernels/roialign.hpp
targets/gpu/kernels/include/migraphx/kernels/vectorize.hpp
targets/gpu/kernels/include/migraphx/kernels/args.hpp
targets/gpu/kernels/include/migraphx/kernels/index.hpp
targets/gpu/device/include/migraphx/gpu/device/multi_index.hpp
targets/gpu/device/include/migraphx/gpu/device/nary.hpp
targets/gpu/device/include/migraphx/gpu/device/tensor_view.hpp
targets/gpu/device/include/migraphx/gpu/device/float_equal.hpp
targets/gpu/device/include/migraphx/gpu/device/scan.hpp
targets/gpu/device/include/migraphx/gpu/device/vector.hpp
targets/gpu/device/include/migraphx/gpu/device/types.hpp
targets/gpu/device/include/migraphx/gpu/device/fast_div.hpp
targets/gpu/device/include/migraphx/gpu/device/reduce.hpp
targets/gpu/device/include/migraphx/gpu/device/tensor.hpp
targets/gpu/device/include/migraphx/gpu/device/shape.hpp
targets/gpu/device/include/migraphx/gpu/device/launch.hpp
targets/gpu/device/include/migraphx/gpu/device/reduce_ops.hpp
targets/gpu/device/include/migraphx/gpu/device/array.hpp
targets/gpu/device/include/migraphx/gpu/device/visit.hpp
targets/gpu/include/migraphx/gpu/max.hpp
targets/gpu/include/migraphx/gpu/gemm.hpp
targets/gpu/include/migraphx/gpu/write_literals.hpp
targets/gpu/include/migraphx/gpu/abs.hpp
targets/gpu/include/migraphx/gpu/convolution.hpp
targets/gpu/include/migraphx/gpu/nonzero.hpp
targets/gpu/include/migraphx/gpu/cosh.hpp
targets/gpu/include/migraphx/gpu/hip.hpp
targets/gpu/include/migraphx/gpu/unary_not.hpp
targets/gpu/include/migraphx/gpu/sign.hpp
targets/gpu/include/migraphx/gpu/logical_and.hpp
targets/gpu/include/migraphx/gpu/tan.hpp
targets/gpu/include/migraphx/gpu/gather.hpp
targets/gpu/include/migraphx/gpu/acos.hpp
targets/gpu/include/migraphx/gpu/pack_int8_args.hpp
targets/gpu/include/migraphx/gpu/sqrt.hpp
targets/gpu/include/migraphx/gpu/where.hpp
targets/gpu/include/migraphx/gpu/deconvolution.hpp
targets/gpu/include/migraphx/gpu/compile_pointwise.hpp
targets/gpu/include/migraphx/gpu/fuse_ops.hpp
targets/gpu/include/migraphx/gpu/sinh.hpp
targets/gpu/include/migraphx/gpu/cos.hpp
targets/gpu/include/migraphx/gpu/relu.hpp
targets/gpu/include/migraphx/gpu/compile_hip_code_object.hpp
targets/gpu/include/migraphx/gpu/round.hpp
targets/gpu/include/migraphx/gpu/sigmoid.hpp
targets/gpu/include/migraphx/gpu/contiguous.hpp
targets/gpu/include/migraphx/gpu/int8_conv_pack.hpp
targets/gpu/include/migraphx/gpu/sqdiff.hpp
targets/gpu/include/migraphx/gpu/quant_convolution.hpp
targets/gpu/include/migraphx/gpu/elu.hpp
targets/gpu/include/migraphx/gpu/pooling.hpp
targets/gpu/include/migraphx/gpu/softmax.hpp
targets/gpu/include/migraphx/gpu/add.hpp
targets/gpu/include/migraphx/gpu/device/max.hpp
targets/gpu/include/migraphx/gpu/device/nonzero.hpp
targets/gpu/include/migraphx/gpu/device/cosh.hpp
targets/gpu/include/migraphx/gpu/device/add_relu.hpp
targets/gpu/include/migraphx/gpu/device/add_clip.hpp
targets/gpu/include/migraphx/gpu/device/unary_not.hpp
targets/gpu/include/migraphx/gpu/device/sign.hpp
targets/gpu/include/migraphx/gpu/device/logical_and.hpp
targets/gpu/include/migraphx/gpu/device/tan.hpp
targets/gpu/include/migraphx/gpu/device/gather.hpp
targets/gpu/include/migraphx/gpu/device/acos.hpp
targets/gpu/include/migraphx/gpu/device/add_tanh.hpp
targets/gpu/include/migraphx/gpu/device/gelu.hpp
targets/gpu/include/migraphx/gpu/device/sqrt.hpp
targets/gpu/include/migraphx/gpu/device/where.hpp
targets/gpu/include/migraphx/gpu/device/sinh.hpp
targets/gpu/include/migraphx/gpu/device/cos.hpp
targets/gpu/include/migraphx/gpu/device/relu.hpp
targets/gpu/include/migraphx/gpu/device/round.hpp
targets/gpu/include/migraphx/gpu/device/sigmoid.hpp
targets/gpu/include/migraphx/gpu/device/contiguous.hpp
targets/gpu/include/migraphx/gpu/device/sqdiff.hpp
targets/gpu/include/migraphx/gpu/device/softmax.hpp
targets/gpu/include/migraphx/gpu/device/add.hpp
targets/gpu/include/migraphx/gpu/device/exp.hpp
targets/gpu/include/migraphx/gpu/device/reduce_min.hpp
targets/gpu/include/migraphx/gpu/device/add_sigmoid.hpp
targets/gpu/include/migraphx/gpu/device/reduce_mean.hpp
targets/gpu/include/migraphx/gpu/device/logsoftmax.hpp
targets/gpu/include/migraphx/gpu/device/sin.hpp
targets/gpu/include/migraphx/gpu/device/fill.hpp
targets/gpu/include/migraphx/gpu/device/scatter.hpp
targets/gpu/include/migraphx/gpu/device/pow.hpp
targets/gpu/include/migraphx/gpu/device/multinomial.hpp
targets/gpu/include/migraphx/gpu/device/argmax.hpp
targets/gpu/include/migraphx/gpu/device/arg_op.hpp
targets/gpu/include/migraphx/gpu/device/mul.hpp
targets/gpu/include/migraphx/gpu/device/less.hpp
targets/gpu/include/migraphx/gpu/device/acosh.hpp
targets/gpu/include/migraphx/gpu/device/atan.hpp
targets/gpu/include/migraphx/gpu/device/prelu.hpp
targets/gpu/include/migraphx/gpu/device/div.hpp
targets/gpu/include/migraphx/gpu/device/argmin.hpp
targets/gpu/include/migraphx/gpu/device/topk.hpp
targets/gpu/include/migraphx/gpu/device/convert.hpp
targets/gpu/include/migraphx/gpu/device/int8_gemm_pack.hpp
targets/gpu/include/migraphx/gpu/device/recip.hpp
targets/gpu/include/migraphx/gpu/device/logical_or.hpp
targets/gpu/include/migraphx/gpu/device/log.hpp
targets/gpu/include/migraphx/gpu/device/tanh.hpp
targets/gpu/include/migraphx/gpu/device/mul_add.hpp
targets/gpu/include/migraphx/gpu/device/erf.hpp
targets/gpu/include/migraphx/gpu/device/mul_add_relu.hpp
targets/gpu/include/migraphx/gpu/device/layernorm.hpp
targets/gpu/include/migraphx/gpu/device/reduce_prod.hpp
targets/gpu/include/migraphx/gpu/device/logical_xor.hpp
targets/gpu/include/migraphx/gpu/device/atanh.hpp
targets/gpu/include/migraphx/gpu/device/rsqrt.hpp
targets/gpu/include/migraphx/gpu/device/reverse.hpp
targets/gpu/include/migraphx/gpu/device/asinh.hpp
targets/gpu/include/migraphx/gpu/device/floor.hpp
targets/gpu/include/migraphx/gpu/device/rnn_variable_seq_lens.hpp
targets/gpu/include/migraphx/gpu/device/asin.hpp
targets/gpu/include/migraphx/gpu/device/min.hpp
targets/gpu/include/migraphx/gpu/device/sub.hpp
targets/gpu/include/migraphx/gpu/device/pad.hpp
targets/gpu/include/migraphx/gpu/device/reduce_max.hpp
targets/gpu/include/migraphx/gpu/device/ceil.hpp
targets/gpu/include/migraphx/gpu/device/reduce_sum.hpp
targets/gpu/include/migraphx/gpu/device/equal.hpp
targets/gpu/include/migraphx/gpu/device/concat.hpp
targets/gpu/include/migraphx/gpu/device/greater.hpp
targets/gpu/include/migraphx/gpu/device/clip.hpp
targets/gpu/include/migraphx/gpu/device/prefix_scan_sum.hpp
targets/gpu/include/migraphx/gpu/mlir_conv.hpp
targets/gpu/include/migraphx/gpu/exp.hpp
targets/gpu/include/migraphx/gpu/reduce_min.hpp
targets/gpu/include/migraphx/gpu/reduce_mean.hpp
targets/gpu/include/migraphx/gpu/logsoftmax.hpp
targets/gpu/include/migraphx/gpu/sin.hpp
targets/gpu/include/migraphx/gpu/name.hpp
targets/gpu/include/migraphx/gpu/scatter.hpp
targets/gpu/include/migraphx/gpu/pow.hpp
targets/gpu/include/migraphx/gpu/multinomial.hpp
targets/gpu/include/migraphx/gpu/leaky_relu.hpp
targets/gpu/include/migraphx/gpu/argmax.hpp
targets/gpu/include/migraphx/gpu/target.hpp
targets/gpu/include/migraphx/gpu/batch_norm_inference.hpp
targets/gpu/include/migraphx/gpu/lrn.hpp
targets/gpu/include/migraphx/gpu/miopen.hpp
targets/gpu/include/migraphx/gpu/mul.hpp
targets/gpu/include/migraphx/gpu/loop.hpp
targets/gpu/include/migraphx/gpu/less.hpp
targets/gpu/include/migraphx/gpu/acosh.hpp
targets/gpu/include/migraphx/gpu/atan.hpp
targets/gpu/include/migraphx/gpu/prelu.hpp
targets/gpu/include/migraphx/gpu/div.hpp
targets/gpu/include/migraphx/gpu/sync_device.hpp
targets/gpu/include/migraphx/gpu/argmin.hpp
targets/gpu/include/migraphx/gpu/gemm_impl.hpp
targets/gpu/include/migraphx/gpu/topk.hpp
targets/gpu/include/migraphx/gpu/reduce_op.hpp
targets/gpu/include/migraphx/gpu/convert.hpp
targets/gpu/include/migraphx/gpu/oper.hpp
targets/gpu/include/migraphx/gpu/int8_gemm_pack.hpp
targets/gpu/include/migraphx/gpu/lowering.hpp
targets/gpu/include/migraphx/gpu/recip.hpp
targets/gpu/include/migraphx/gpu/concat_gpu_opt.hpp
targets/gpu/include/migraphx/gpu/logical_or.hpp
targets/gpu/include/migraphx/gpu/log.hpp
targets/gpu/include/migraphx/gpu/tanh.hpp
targets/gpu/include/migraphx/gpu/erf.hpp
targets/gpu/include/migraphx/gpu/pack_args.hpp
targets/gpu/include/migraphx/gpu/rocblas.hpp
targets/gpu/include/migraphx/gpu/allocation_model.hpp
targets/gpu/include/migraphx/gpu/device_name.hpp
targets/gpu/include/migraphx/gpu/compile_hip.hpp
targets/gpu/include/migraphx/gpu/reduce_prod.hpp
targets/gpu/include/migraphx/gpu/logical_xor.hpp
targets/gpu/include/migraphx/gpu/atanh.hpp
targets/gpu/include/migraphx/gpu/rsqrt.hpp
targets/gpu/include/migraphx/gpu/analyze_streams.hpp
targets/gpu/include/migraphx/gpu/reverse.hpp
targets/gpu/include/migraphx/gpu/compile_ops.hpp
targets/gpu/include/migraphx/gpu/compile_roialign.hpp
targets/gpu/include/migraphx/gpu/code_object_op.hpp
targets/gpu/include/migraphx/gpu/kernel.hpp
targets/gpu/include/migraphx/gpu/asinh.hpp
targets/gpu/include/migraphx/gpu/floor.hpp
targets/gpu/include/migraphx/gpu/rnn_variable_seq_lens.hpp
targets/gpu/include/migraphx/gpu/schedule_model.hpp
targets/gpu/include/migraphx/gpu/asin.hpp
targets/gpu/include/migraphx/gpu/min.hpp
targets/gpu/include/migraphx/gpu/sub.hpp
targets/gpu/include/migraphx/gpu/pad.hpp
targets/gpu/include/migraphx/gpu/reduce_max.hpp
targets/gpu/include/migraphx/gpu/ceil.hpp
targets/gpu/include/migraphx/gpu/eliminate_workspace.hpp
targets/gpu/include/migraphx/gpu/reduce_sum.hpp
targets/gpu/include/migraphx/gpu/equal.hpp
targets/gpu/include/migraphx/gpu/concat.hpp
targets/gpu/include/migraphx/gpu/greater.hpp
targets/gpu/include/migraphx/gpu/clip.hpp
targets/gpu/include/migraphx/gpu/prefix_scan_sum.hpp
targets/gpu/include/migraphx/gpu/context.hpp
targets/cpu/include/migraphx/cpu/write_literals.hpp
targets/cpu/include/migraphx/cpu/dnnl.hpp
targets/cpu/include/migraphx/cpu/fuse_ops.hpp
targets/cpu/include/migraphx/cpu/target.hpp
targets/cpu/include/migraphx/cpu/pointwise.hpp
targets/cpu/include/migraphx/cpu/parallel.hpp
targets/cpu/include/migraphx/cpu/lowering.hpp
targets/cpu/include/migraphx/cpu/allocation_model.hpp
targets/cpu/include/migraphx/cpu/context.hpp
tf/include/migraphx/tf/op_parser.hpp
tf/include/migraphx/tf/tf_parser.hpp