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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481
|
// RUN: mlir-opt -split-input-file -allow-unregistered-dialect -canonicalize="test-convergence" %s | FileCheck %s
// CHECK-LABEL: func @f
func.func @f(%arg0: tensor<2x3x4xf32>) -> tensor<3xindex> {
// CHECK: shape.const_shape [2, 3, 4] : tensor<3xindex>
%0 = shape.shape_of %arg0 : tensor<2x3x4xf32> -> tensor<3xindex>
return %0 : tensor<3xindex>
}
// -----
// Basic case.
// CHECK-LABEL: func @f
func.func @f() -> (!shape.shape, !shape.shape) {
// CHECK-DAG: shape.const_shape [2, 3] : !shape.shape
// CHECK-DAG: shape.const_shape [4, 5] : !shape.shape
%c2 = arith.constant 2 : index
%0 = shape.const_shape [2, 3, 4, 5] : !shape.shape
%head, %tail = "shape.split_at"(%0, %c2) : (!shape.shape, index) -> (!shape.shape, !shape.shape)
return %head, %tail : !shape.shape, !shape.shape
}
// -----
// Negative split point.
// CHECK-LABEL: func @f
func.func @f() -> (!shape.shape, !shape.shape) {
// CHECK-DAG: shape.const_shape [2, 3, 4] : !shape.shape
// CHECK-DAG: shape.const_shape [5] : !shape.shape
%c-1 = arith.constant -1 : index
%0 = shape.const_shape [2, 3, 4, 5] : !shape.shape
%head, %tail = "shape.split_at"(%0, %c-1) : (!shape.shape, index) -> (!shape.shape, !shape.shape)
return %head, %tail : !shape.shape, !shape.shape
}
// -----
// Out of range split point. No folding.
// CHECK-LABEL: func @f
func.func @f() -> (!shape.shape, !shape.shape) {
// CHECK: shape.split_at
%c5 = arith.constant 5 : index
%0 = shape.const_shape [2, 3, 4, 5] : !shape.shape
%head, %tail = "shape.split_at"(%0, %c5) : (!shape.shape, index) -> (!shape.shape, !shape.shape)
return %head, %tail : !shape.shape, !shape.shape
}
// -----
// Basic case.
// CHECK-LABEL: func @f
func.func @f() -> !shape.shape {
// CHECK: shape.const_shape [7, 2] : !shape.shape
%0 = shape.const_shape [1, 2] : !shape.shape
%1 = shape.const_shape [7, 1] : !shape.shape
%2 = shape.broadcast %0, %1 : !shape.shape, !shape.shape -> !shape.shape
return %2 : !shape.shape
}
// -----
// Basic case including extent tensors.
// CHECK-LABEL: @broadcast
func.func @broadcast() -> tensor<2xindex> {
// CHECK: shape.const_shape [7, 2] : tensor<2xindex>
%0 = shape.const_shape [1, 2] : tensor<2xindex>
%1 = shape.const_shape [7, 1] : tensor<2xindex>
%2 = shape.broadcast %0, %1
: tensor<2xindex>, tensor<2xindex> -> tensor<2xindex>
return %2 : tensor<2xindex>
}
// -----
// Basic case including extent tensors.
// CHECK-LABEL: @broadcast
func.func @broadcast() -> !shape.shape {
// CHECK: shape.const_shape [7, 2] : !shape.shape
%0 = shape.const_shape [1, 2] : tensor<2xindex>
%1 = shape.const_shape [7, 1] : tensor<2xindex>
%2 = shape.broadcast %0, %1 : tensor<2xindex>, tensor<2xindex> -> !shape.shape
return %2 : !shape.shape
}
// -----
// Rhs is a scalar.
// CHECK-LABEL: func @f
func.func @f(%arg0 : !shape.shape) -> !shape.shape {
// CHECK: return %arg0
%0 = shape.const_shape [] : !shape.shape
%1 = shape.broadcast %arg0, %0 : !shape.shape, !shape.shape -> !shape.shape
return %1 : !shape.shape
}
// -----
// Lhs is a scalar.
// CHECK-LABEL: func @f
func.func @f(%arg0 : !shape.shape) -> !shape.shape {
// CHECK: return %arg0
%0 = shape.const_shape [] : !shape.shape
%1 = shape.broadcast %0, %arg0 : !shape.shape, !shape.shape -> !shape.shape
return %1 : !shape.shape
}
// -----
// Lhs is a scalar and rhs is constant.
// CHECK-LABEL: func @f
func.func @f() -> !shape.shape {
// CHECK: %[[CST:.*]] = shape.const_shape [1, 2, 3] : !shape.shape
// CHECK: return %[[CST]]
%0 = shape.const_shape [] : !shape.shape
%1 = shape.const_shape [1, 2, 3] : !shape.shape
%2 = shape.broadcast %0, %1 : !shape.shape, !shape.shape -> !shape.shape
return %2 : !shape.shape
}
// -----
// All but one operands are known empty shapes.
// CHECK-LABEL: @all_but_one_empty
// CHECK-SAME: (%[[ARG:.*]]: !shape.shape)
func.func @all_but_one_empty(%arg0 : !shape.shape) -> !shape.shape {
// CHECK: return %[[ARG]]
%0 = shape.const_shape [] : !shape.shape
%1 = shape.const_shape [] : tensor<0xindex>
%2 = shape.broadcast %0, %arg0, %1, %0 : !shape.shape, !shape.shape,
tensor<0xindex>, !shape.shape -> !shape.shape
return %2 : !shape.shape
}
// -----
// Partial folding.
// CHECK-LABEL: @partial_folding
// CHECK-SAME: (%[[ARG:.*]]: !shape.shape)
func.func @partial_folding(%arg0 : !shape.shape) -> !shape.shape {
// CHECK: %[[CST_SHAPE:.*]] = shape.const_shape [1, 2, 3] : tensor<3xindex>
// CHECK: %[[RESULT:.*]] = shape.broadcast %[[ARG]], %[[CST_SHAPE]] : !shape.shape, tensor<3xindex> -> !shape.shape
// CHECK: return %[[RESULT]]
%0 = shape.const_shape [2, 1] : !shape.shape
%1 = shape.const_shape [1, 2, 3] : tensor<3xindex>
%2 = shape.broadcast %0, %arg0, %1, %0 : !shape.shape, !shape.shape,
tensor<3xindex>, !shape.shape -> !shape.shape
return %2 : !shape.shape
}
// -----
// Incompatible shapes. No folding.
// CHECK-LABEL: func @f
func.func @f() -> !shape.shape {
// CHECK: shape.broadcast
%0 = shape.const_shape [2] : !shape.shape
%1 = shape.const_shape [7] : !shape.shape
%2 = shape.broadcast %0, %1 : !shape.shape, !shape.shape -> !shape.shape
return %2 : !shape.shape
}
// -----
// Dead code
// CHECK-LABEL: @broadcast
func.func @broadcast(%arg0 : !shape.shape, %arg1 : !shape.shape) {
// CHECK-NEXT: return
%0 = shape.broadcast %arg0, %arg1
: !shape.shape, !shape.shape -> !shape.shape
return
}
// -----
// Basic case.
// CHECK-LABEL: func @f
func.func @f() -> !shape.shape {
// CHECK: shape.const_shape [0, 1, 2, 3] : !shape.shape
%lhs = shape.const_shape [0, 1] : !shape.shape
%rhs = shape.const_shape [2, 3] : !shape.shape
%0 = shape.concat %lhs, %rhs : !shape.shape , !shape.shape -> !shape.shape
return %0 : !shape.shape
}
// -----
// Basic case.
// CHECK-LABEL: func @f
func.func @f() -> tensor<4xindex> {
// CHECK: shape.const_shape [0, 1, 2, 3] : tensor<4xindex>
%lhs = shape.const_shape [0, 1] : tensor<2xindex>
%rhs = shape.const_shape [2, 3] : tensor<2xindex>
%0 = shape.concat %lhs, %rhs : tensor<2xindex>, tensor<2xindex> -> tensor<4xindex>
return %0 : tensor<4xindex>
}
// -----
// Basic case.
// CHECK-LABEL: func @f
func.func @f() -> tensor<2xindex> {
// CHECK: shape.const_shape [0, 1] : tensor<2xindex>
%cs = shape.const_shape [0, 1] : !shape.shape
%0 = shape.to_extent_tensor %cs : !shape.shape -> tensor<2xindex>
return %0 : tensor<2xindex>
}
// -----
// Basic case.
// CHECK-LABEL: func @f()
func.func @f() -> !shape.shape {
// CHECK: shape.const_shape [3, 5, 11] : !shape.shape
%e0 = arith.constant 3 : index
%e1 = arith.constant 5 : index
%e2 = arith.constant 11 : index
%ret = shape.from_extents %e0, %e1, %e2 : index, index, index
return %ret : !shape.shape
}
// -----
// fold_const_size
// CHECK-LABEL: func @fold_const_size()
func.func @fold_const_size() -> !shape.shape {
// CHECK: shape.const_shape [3, 5] : !shape.shape
%e0 = shape.const_size 3
%e1 = shape.const_size 5
%ret = shape.from_extents %e0, %e1 : !shape.size, !shape.size
return %ret : !shape.shape
}
// -----
// CHECK-LABEL: func @no_fold
func.func @no_fold(%arg0: index) -> !shape.shape {
// CHECK-NOT: shape.const_shape
%e0 = arith.constant 3 : index
%ret = shape.from_extents %e0, %arg0 : index, index
return %ret : !shape.shape
}
// -----
// Cast constant size to index and fold it away.
// CHECK-LABEL: func @const_size_to_index
func.func @const_size_to_index() -> index {
// CHECK-NOT: shape.index_cast
%cs = shape.const_size 123
// CHECK: arith.constant 123 : index
%ci = shape.size_to_index %cs : !shape.size
return %ci : index
}
// -----
// Cast constant index to size and fold it away.
// CHECK-LABEL: func @const_index_to_size
func.func @const_index_to_size() -> !shape.size {
// CHECK-NOT: arith.index_cast
%ci = arith.constant 123 : index
// CHECK: shape.const_size 123
%cs = shape.index_to_size %ci
return %cs : !shape.size
}
// -----
// Cast constant index to size, then back, and fold it away.
// CHECK-LABEL: func @const_index_to_size_to_index
func.func @const_index_to_size_to_index() -> index {
// CHECK-NOT: shape.index_cast
%ci0 = arith.constant 123 : index
%cs0 = shape.index_to_size %ci0
// CHECK: %[[CI:.*]] = arith.constant 123 : index
// CHECK-NEXT: return %[[CI]] : index
%ci1 = shape.size_to_index %cs0 : !shape.size
return %ci1 : index
}
// -----
// No folding.
// CHECK-LABEL: func @nonfoldable_size_to_index
func.func @nonfoldable_size_to_index(%cs : !shape.size) -> index {
// CHECK: shape.size_to_index
%ci = shape.size_to_index %cs : !shape.size
return %ci : index
}
// -----
// No folding.
// CHECK-LABEL: func @nonfoldable_index_to_size
func.func @nonfoldable_index_to_size(%ci : index) -> !shape.size {
// CHECK: shape.index_to_size
%cs = shape.index_to_size %ci
return %cs : !shape.size
}
// -----
// Fold number of elements computation.
// CHECK-LABEL: func @num_elements
func.func @num_elements() -> !shape.size {
// CHECK-NOT: shape.const_shape
%shape = shape.const_shape [4, 5, 6] : !shape.shape
// CHECK-NOT: shape.num_elements
%num_elements = shape.num_elements %shape : !shape.shape -> !shape.size
// CHECK: %[[NUM:.*]] = shape.const_size 120
// CHECK-NEXT: return %[[NUM]] : !shape.size
return %num_elements : !shape.size
}
// -----
// No folding.
// CHECK-LABEL: func @nonfoldable_num_elements
func.func @nonfoldable_num_elements(%shape : !shape.shape) -> !shape.size {
// CHECK-NOT: shape.const_{{.*}}
%num_elements = shape.num_elements %shape : !shape.shape -> !shape.size
return %num_elements : !shape.size
}
// -----
// Basic folding.
// CHECK-LABEL: func @basic
func.func @basic() -> index {
// CHECK: constant 2 : index
%0 = shape.const_shape [0, 1, 2] : tensor<3xindex>
%c2 = arith.constant 2 : index
%1 = shape.get_extent %0, %c2 : tensor<3xindex>, index -> index
return %1 : index
}
// -----
// Should not fold.
// CHECK-LABEL: func @out_of_bounds
func.func @out_of_bounds() -> index {
// CHECK: shape.const_shape
// CHECK: shape.get_extent
%0 = shape.const_shape [0, 1, 2] : tensor<3xindex>
%c3 = arith.constant 3 : index
%1 = shape.get_extent %0, %c3 : tensor<3xindex>, index -> index
return %1 : index
}
// -----
// Should not fold.
// CHECK-LABEL: func @not_const
func.func @not_const(%arg0: tensor<?xindex>) -> index {
// CHECK: shape.get_extent
%c3 = arith.constant 3 : index
%0 = shape.get_extent %arg0, %c3 : tensor<?xindex>, index -> index
return %0 : index
}
// -----
// Basic folding.
// CHECK-LABEL: func @basic
func.func @basic() -> !shape.size {
// CHECK: shape.const_size 2
%0 = shape.const_shape [0, 1, 2] : !shape.shape
%c2 = shape.const_size 2
%1 = shape.get_extent %0, %c2 : !shape.shape, !shape.size -> !shape.size
return %1 : !shape.size
}
// -----
// Should not fold.
// CHECK-LABEL: func @out_of_bounds
func.func @out_of_bounds() -> !shape.size {
// CHECK: shape.const_shape
// CHECK: shape.get_extent
%0 = shape.const_shape [0, 1, 2] : !shape.shape
%c3 = shape.const_size 3
%1 = shape.get_extent %0, %c3 : !shape.shape, !shape.size -> !shape.size
return %1 : !shape.size
}
// -----
// Should not fold.
// CHECK-LABEL: func @not_const
func.func @not_const(%arg0 : !shape.shape) -> !shape.size {
// CHECK: shape.get_extent
%c3 = shape.const_size 3
%0 = shape.get_extent %arg0, %c3 : !shape.shape, !shape.size -> !shape.size
return %0 : !shape.size
}
// -----
// cstr_eq with non-constant but known equal shapes can be removed.
// CHECK-LABEL: func @f
func.func @f(%arg0 : !shape.shape) {
// CHECK-NEXT: shape.const_witness true
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%0 = shape.cstr_eq %arg0, %arg0, %arg0 : !shape.shape, !shape.shape, !shape.shape
"consume.witness"(%0) : (!shape.witness) -> ()
return
}
// -----
// cstr_eq with equal const_shapes can be folded
// CHECK-LABEL: func @f
func.func @f() {
// CHECK-NEXT: shape.const_witness true
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%cs0 = shape.const_shape [0, 1] : !shape.shape
%cs1 = shape.const_shape [0, 1] : !shape.shape
%cs2 = shape.const_shape [0, 1] : !shape.shape
%0 = shape.cstr_eq %cs0, %cs1, %cs2 : !shape.shape, !shape.shape, !shape.shape
"consume.witness"(%0) : (!shape.witness) -> ()
return
}
// -----
// cstr_eq with unequal const_shapes cannot be folded
// CHECK-LABEL: func @f
func.func @f() {
// CHECK-NEXT: shape.const_shape
// CHECK-NEXT: shape.const_shape
// CHECK-NEXT: shape.cstr_eq
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%cs0 = shape.const_shape [0, 1] : !shape.shape
%cs1 = shape.const_shape [3, 1] : !shape.shape
%0 = shape.cstr_eq %cs0, %cs1 : !shape.shape, !shape.shape
"consume.witness"(%0) : (!shape.witness) -> ()
return
}
// -----
// cstr_eq without const_shapes cannot be folded
// CHECK-LABEL: func @f
func.func @f(%arg0: !shape.shape, %arg1: !shape.shape) {
// CHECK-NEXT: shape.cstr_eq
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%0 = shape.cstr_eq %arg0, %arg1 : !shape.shape, !shape.shape
"consume.witness"(%0) : (!shape.witness) -> ()
return
}
// -----
// cstr_require with constant can be folded
// CHECK-LABEL: func @cstr_require_fold
func.func @cstr_require_fold() {
// CHECK-NEXT: shape.const_witness true
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%true = arith.constant true
%0 = shape.cstr_require %true, "msg"
"consume.witness"(%0) : (!shape.witness) -> ()
return
}
// -----
// cstr_require without constant cannot be folded
// CHECK-LABEL: func @cstr_require_no_fold
func.func @cstr_require_no_fold(%arg0: i1) {
// CHECK-NEXT: shape.cstr_require
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%0 = shape.cstr_require %arg0, "msg"
"consume.witness"(%0) : (!shape.witness) -> ()
return
}
// -----
// merge assuming_all operations
// CHECK-LABEL: func @f
func.func @f() {
// CHECK-NEXT: %[[W0:.*]] = "test.source"
// CHECK-NEXT: %[[W1:.*]] = "test.source"
// CHECK-NEXT: %[[W2:.*]] = "test.source"
// CHECK-NEXT: shape.assuming_all %[[W0]], %[[W1]], %[[W2]]
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%0 = "test.source"() : () -> !shape.witness
%1 = "test.source"() : () -> !shape.witness
%2 = "test.source"() : () -> !shape.witness
%3 = shape.assuming_all %0, %1
%4 = shape.assuming_all %3, %2
"consume.witness"(%4) : (!shape.witness) -> ()
return
}
// -----
// `assuming_all` with all `cstr_eq` and shared operands can be collapsed.
// CHECK-LABEL: func @assuming_all_to_cstr_eq
// CHECK-SAME: (%[[A:.*]]: !shape.shape, %[[B:.*]]: tensor<?xindex>, %[[C:.*]]: tensor<3xindex>)
func.func @assuming_all_to_cstr_eq(%a : !shape.shape, %b : tensor<?xindex>,
%c : tensor<3xindex>) -> !shape.witness {
// CHECK: %[[RESULT:.*]] = shape.cstr_eq %[[A]], %[[B]], %[[B]], %[[C]]
// CHECK: return %[[RESULT]]
%0 = shape.cstr_eq %a, %b : !shape.shape, tensor<?xindex>
%1 = shape.cstr_eq %b, %c : tensor<?xindex>, tensor<3xindex>
%2 = shape.assuming_all %0, %1
return %2 : !shape.witness
}
// -----
// `assuming_all` with duplicate operands.
// CHECK-LABEL: func @assuming_all_duplicate_operands
// CHECK-SAME: (%[[ARG0:.*]]: tensor<?xindex>, %[[ARG1:.*]]: tensor<?xindex>)
func.func @assuming_all_duplicate_operands(%arg0 : tensor<?xindex>,
%arg1 : tensor<?xindex>) -> !shape.witness {
// CHECK: %[[RES:.*]] = shape.cstr_broadcastable %[[ARG0]], %[[ARG1]]
// CHECK: return %[[RES]]
%0 = shape.cstr_broadcastable %arg0, %arg1 : tensor<?xindex>, tensor<?xindex>
%1 = shape.assuming_all %0, %0, %0
return %1 : !shape.witness
}
// -----
// `assuming_all` with all `cstr_eq` but disjoint operands cannot be collapsed.
// CHECK-LABEL: func @assuming_all_to_cstr_eq
// CHECK-SAME: (%[[A:.*]]: !shape.shape, %[[B:.*]]: tensor<?xindex>, %[[C:.*]]: tensor<3xindex>, %[[D:.*]]: tensor<3xindex>)
func.func @assuming_all_to_cstr_eq(%a : !shape.shape, %b : tensor<?xindex>,
%c : tensor<3xindex>, %d : tensor<3xindex>) -> !shape.witness {
// CHECK: %[[EQ0:.*]] = shape.cstr_eq %[[A]], %[[B]]
// CHECK: %[[EQ1:.*]] = shape.cstr_eq %[[C]], %[[D]]
// CHECK: %[[RESULT:.*]] = shape.assuming_all %[[EQ0]], %[[EQ1]]
// CHECK: return %[[RESULT]]
%0 = shape.cstr_eq %a, %b : !shape.shape, tensor<?xindex>
%1 = shape.cstr_eq %c, %d : tensor<3xindex>, tensor<3xindex>
%2 = shape.assuming_all %0, %1
return %2 : !shape.witness
}
// -----
// assuming_all with known passing witnesses can be folded
// CHECK-LABEL: func @f
func.func @f() {
// CHECK-NEXT: shape.const_witness true
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%0 = shape.const_witness true
%1 = shape.const_witness true
%2 = shape.const_witness true
%3 = shape.assuming_all %0, %1, %2
"consume.witness"(%3) : (!shape.witness) -> ()
return
}
// -----
// assuming_all should not be removed if more than one witness is not
// statically passing
//
// Additionally check that the attribute is moved to the end as this op is
// commutative.
// CHECK-LABEL: func @f
func.func @f() {
// CHECK-NEXT: %[[UNKNOWN1:.*]] = "test.source"
// CHECK-NEXT: %[[UNKNOWN2:.*]] = "test.source"
// CHECK-NEXT: shape.assuming_all %[[UNKNOWN1]], %[[UNKNOWN2]]
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%0 = shape.const_witness true
%1 = "test.source"() : () -> !shape.witness
%2 = "test.source"() : () -> !shape.witness
%3 = shape.assuming_all %0, %1, %2
"consume.witness"(%3) : (!shape.witness) -> ()
return
}
// -----
// merge cstr_broadcastable operations
//
// CHECK-LABEL: func @f
// CHECK: %[[ARG0:[a-z0-9]*]]: !shape.shape
// CHECK-SAME: %[[ARG1:[a-z0-9]*]]: !shape.shape
// CHECK-SAME: %[[ARG2:[a-z0-9]*]]: !shape.shape
func.func @f(%arg0 : !shape.shape, %arg1 : !shape.shape, %arg2 : !shape.shape) {
// CHECK-NEXT: %[[W:.*]] = shape.cstr_broadcastable %[[ARG0]], %[[ARG1]], %[[ARG2]]
// CHECK-NEXT: "consume.witness"(%[[W]])
// CHECK-NEXT: return
%0 = shape.cstr_broadcastable %arg0, %arg1 : !shape.shape, !shape.shape
%1 = shape.cstr_broadcastable %arg0, %arg1, %arg2 : !shape.shape, !shape.shape, !shape.shape
%2 = shape.assuming_all %0, %1
"consume.witness"(%2) : (!shape.witness) -> ()
return
}
// -----
// do not merge cstr_broadcastable operations
//
// CHECK-LABEL: func @f
// CHECK: %[[ARG0:[a-z0-9]*]]: !shape.shape
// CHECK-SAME: %[[ARG1:[a-z0-9]*]]: !shape.shape
// CHECK-SAME: %[[ARG2:[a-z0-9]*]]: !shape.shape
func.func @f(%arg0 : !shape.shape, %arg1 : !shape.shape, %arg2 : !shape.shape) {
// CHECK-NEXT: %[[W0:.*]] = shape.cstr_broadcastable %[[ARG0]], %[[ARG1]]
// CHECK-NEXT: %[[W1:.*]] = shape.cstr_broadcastable %[[ARG1]], %[[ARG2]]
// CHECK-NEXT: %[[W2:.*]] = shape.assuming_all %[[W0]], %[[W1]]
// CHECK-NEXT: "consume.witness"(%[[W2]])
// CHECK-NEXT: return
%0 = shape.cstr_broadcastable %arg0, %arg1 : !shape.shape, !shape.shape
%1 = shape.cstr_broadcastable %arg1, %arg2 : !shape.shape, !shape.shape
%2 = shape.assuming_all %0, %1
"consume.witness"(%2) : (!shape.witness) -> ()
return
}
// -----
// any can be replaced with a constant input if it has one.
// CHECK-LABEL: func @f
func.func @f(%arg : !shape.shape) -> !shape.shape {
// CHECK-NEXT: %[[CS:.*]] = shape.const_shape
// CHECK-NEXT: return %[[CS]]
%0 = shape.const_shape [2, 3, 4] : !shape.shape
%1 = shape.any %0, %arg : !shape.shape, !shape.shape -> !shape.shape
return %1 : !shape.shape
}
// -----
// any can be replaced with a constant input if it has one.
// CHECK-LABEL: func @f
func.func @f(%arg : tensor<?xindex>) -> tensor<3xindex> {
// CHECK-NEXT: %[[CS:.*]] = shape.const_shape [2, 3, 4] : tensor<3xindex>
// CHECK-NEXT: return %[[CS]] : tensor<3xindex>
%0 = shape.const_shape [2, 3, 4] : tensor<3xindex>
%1 = shape.any %0, %arg : tensor<3xindex>, tensor<?xindex> -> tensor<3xindex>
return %1 : tensor<3xindex>
}
// -----
// Folding of any with partially constant operands is not yet implemented.
// CHECK-LABEL: func @f
func.func @f(%arg0 : !shape.shape, %arg1 : !shape.shape) -> !shape.shape {
// CHECK-NEXT: %[[CS:.*]] = shape.any
// CHECK-NEXT: return %[[CS]]
%1 = shape.any %arg0, %arg1 : !shape.shape, !shape.shape -> !shape.shape
return %1 : !shape.shape
}
// -----
// assuming with a known passing witness can be removed
// CHECK-LABEL: func @f
func.func @f() {
// CHECK-NEXT: source
// CHECK-NEXT: sink
// CHECK-NEXT: return
%0 = shape.const_witness true
%1 = shape.assuming %0 -> index {
%2 = "test.source"() : () -> (index)
shape.assuming_yield %2 : index
}
"test.sink"(%1) : (index) -> ()
return
}
// -----
// assuming without a known passing passing witness cannot be removed
// CHECK-LABEL: func @f
func.func @f() {
// CHECK-NEXT: test.source
// CHECK-NEXT: shape.assuming
// CHECK-NEXT: test.source
// CHECK-NEXT: shape.assuming_yield
// CHECK-NEXT: }
// CHECK-NEXT: test.sink
// CHECK-NEXT: return
%0 = "test.source"() : () -> (!shape.witness)
%1 = shape.assuming %0 -> index {
%2 = "test.source"() : () -> (index)
shape.assuming_yield %2 : index
}
"test.sink"(%1) : (index) -> ()
return
}
// -----
// Remove unused results from assuming ops.
// CHECK-LABEL: func @unused_assuming_results
func.func @unused_assuming_results() {
// CHECK: %[[ASSUMING_RESULT:.*]] = shape.assuming %0 -> (f32) {
// CHECK: %{{.*}} = "produce.redundant"
// CHECK: %[[MEANINGFUL:.*]] = "produce.meaningful"
// CHECK: shape.assuming_yield %[[MEANINGFUL]] : f32
// CHECK: }
// CHECK: "use"(%[[ASSUMING_RESULT]])
%0 = "test.source"() : () -> (!shape.witness)
%1:2 = shape.assuming %0 -> (f32, f32) {
%2 = "produce.redundant"() : () -> (f32)
%3 = "produce.meaningful"() : () -> (f32)
shape.assuming_yield %2, %3 : f32, f32
}
"use"(%1#1) : (f32) -> ()
return
}
// -----
// Broadcastable with broadcastable constant shapes can be removed.
// CHECK-LABEL: func @f
func.func @f() {
// CHECK-NEXT: shape.const_witness true
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%cs0 = shape.const_shape [3, 1] : !shape.shape
%cs1 = shape.const_shape [1, 5] : !shape.shape
%0 = shape.cstr_broadcastable %cs0, %cs1 : !shape.shape, !shape.shape
"consume.witness"(%0) : (!shape.witness) -> ()
return
}
// -----
// Empty shape arguments can be removed from broadcastable ops.
// CHECK-LABEL: func @f
// CHECK-SAME: (%[[ARG0:.*]]: tensor<?xindex>, %[[ARG1:.*]]: tensor<?xindex>, %{{.*}}: tensor<0xindex>)
func.func @f(%arg0 : tensor<?xindex>, %arg1 : tensor<?xindex>, %arg2 : tensor<0xindex>) {
// CHECK-NOT: const_shape
// CHECK: cstr_broadcastable %[[ARG0]], %[[ARG1]] : tensor<?xindex>, tensor<?xindex>
%0 = shape.const_shape [] : !shape.shape
%1 = shape.cstr_broadcastable %arg0, %arg1, %0, %arg2
: tensor<?xindex>, tensor<?xindex>, !shape.shape, tensor<0xindex>
"consume.witness"(%1) : (!shape.witness) -> ()
return
}
// -----
// Broadcastable with non-broadcastable constant shapes is always false
// CHECK-LABEL: func @static_non_broadcastable
func.func @static_non_broadcastable() {
// CHECK-NEXT: shape.const_shape
// CHECK-NEXT: shape.const_shape
// CHECK-NEXT: shape.cstr_broadcastable
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%cs0 = shape.const_shape [1, 3] : !shape.shape
%cs1 = shape.const_shape [1, 5] : !shape.shape
%0 = shape.cstr_broadcastable %cs0, %cs1 : !shape.shape, !shape.shape
"consume.witness"(%0) : (!shape.witness) -> ()
return
}
// -----
// Broadcastable without guaranteed broadcastable shapes cannot be removed.
// CHECK-LABEL: func @f
func.func @f(%arg0 : !shape.shape) {
// CHECK-NEXT: shape.const_shape
// CHECK-NEXT: shape.cstr_broadcastable
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%cs0 = shape.const_shape [1, 3] : !shape.shape
%0 = shape.cstr_broadcastable %arg0, %cs0 : !shape.shape, !shape.shape
"consume.witness"(%0) : (!shape.witness) -> ()
return
}
// -----
// Broadcastable with non-constant but known equal shapes can be removed.
// CHECK-LABEL: func @f
func.func @f(%arg0 : !shape.shape) {
// CHECK-NEXT: shape.const_witness true
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%0 = shape.cstr_broadcastable %arg0, %arg0 : !shape.shape, !shape.shape
"consume.witness"(%0) : (!shape.witness) -> ()
return
}
// -----
// Broadcastable canonicalization also works on extent tensors.
// CHECK-LABEL: func @broadcastable_on_extent_tensors
func.func @broadcastable_on_extent_tensors(%arg : tensor<?xindex>) {
// CHECK-NEXT: shape.const_witness true
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%0 = shape.cstr_broadcastable %arg, %arg : tensor<?xindex>, tensor<?xindex>
"consume.witness"(%0) : (!shape.witness) -> ()
return
}
// -----
// Fold ternary broadcastable
// CHECK-LABEL: func @f
func.func @f() {
// CHECK-NEXT: shape.const_witness true
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%cs0 = shape.const_shape [8, 1] : !shape.shape
%cs1 = shape.const_shape [1, 8] : !shape.shape
%cs2 = shape.const_shape [1, 1] : !shape.shape
%0 = shape.cstr_broadcastable %cs0, %cs1, %cs2 : !shape.shape, !shape.shape, !shape.shape
"consume.witness"(%0) : (!shape.witness) -> ()
return
}
// -----
// Fold ternary broadcastable with dynamic ranks
// CHECK-LABEL: func @f
func.func @f() {
// CHECK-NEXT: shape.const_witness true
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%cs0 = shape.const_shape [8, 1] : !shape.shape
%cs1 = shape.const_shape [1, -9223372036854775808] : !shape.shape
%0 = shape.cstr_broadcastable %cs0, %cs0, %cs1 : !shape.shape, !shape.shape, !shape.shape
"consume.witness"(%0) : (!shape.witness) -> ()
return
}
// -----
// One scalar and one non-scalar and one unknown cannot be broadcasted at compile time
// CHECK-LABEL: func @f
func.func @f() {
// CHECK: shape.cstr_broadcastable
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%cs0 = shape.const_shape [8, 1] : !shape.shape
%cs1 = shape.const_shape [1, 8] : !shape.shape
%cs2 = shape.const_shape [1, -9223372036854775808] : !shape.shape
%0 = shape.cstr_broadcastable %cs0, %cs1, %cs2 : !shape.shape, !shape.shape, !shape.shape
"consume.witness"(%0) : (!shape.witness) -> ()
return
}
// -----
// One scalar and two unknowns cannot be broadcasted at compile time
// CHECK-LABEL: func @f
func.func @f() {
// CHECK: shape.cstr_broadcastable
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%cs0 = shape.const_shape [8, 1] : !shape.shape
%cs1 = shape.const_shape [1, -9223372036854775808] : !shape.shape
%cs2 = shape.const_shape [8, -9223372036854775808] : !shape.shape
%0 = shape.cstr_broadcastable %cs0, %cs1, %cs2 : !shape.shape, !shape.shape, !shape.shape
"consume.witness"(%0) : (!shape.witness) -> ()
return
}
// -----
// Broadcastable with scalars and a non-scalar can be constant folded
// CHECK-LABEL: func @f
func.func @f(%arg0 : !shape.shape) {
// CHECK-NEXT: shape.const_witness true
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%cs0 = shape.const_shape [] : !shape.shape
%0 = shape.cstr_broadcastable %cs0, %cs0, %arg0 : !shape.shape, !shape.shape, !shape.shape
"consume.witness"(%0) : (!shape.witness) -> ()
return
}
// -----
// One scalar and one non-scalar and one unknown cannot be folded.
// CHECK-LABEL: func @f
func.func @f(%arg0 : !shape.shape) {
// CHECK: shape.cstr_broadcastable
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%cs0 = shape.const_shape [] : !shape.shape
%cs1 = shape.const_shape [2] : !shape.shape
%0 = shape.cstr_broadcastable %cs0, %cs1, %arg0 : !shape.shape, !shape.shape, !shape.shape
"consume.witness"(%0) : (!shape.witness) -> ()
return
}
// -----
// Fold `rank` based on constant shape.
// CHECK-LABEL: @fold_rank
func.func @fold_rank() -> !shape.size {
// CHECK: %[[RESULT:.*]] = shape.const_size 5
// CHECK: return %[[RESULT]] : !shape.size
%shape = shape.const_shape [3, 4, 5, 6, 7] : !shape.shape
%rank = shape.rank %shape : !shape.shape -> !shape.size
return %rank : !shape.size
}
// -----
// Do not fold `rank` if shape is dynamic.
// CHECK-LABEL: @dont_fold_rank
// CHECK-SAME: (%[[SHAPE:.*]]: !shape.shape) -> !shape.size
func.func @dont_fold_rank(%shape : !shape.shape) -> !shape.size {
// CHECK: %[[RESULT:.*]] = shape.rank %[[SHAPE]]
// CHECK: return %[[RESULT]] : !shape.size
%rank = shape.rank %shape : !shape.shape -> !shape.size
return %rank : !shape.size
}
// -----
// Fold `rank` based on constant extent tensor.
// CHECK-LABEL: @fold_rank
func.func @fold_rank() -> index {
// CHECK: %[[RESULT:.*]] = arith.constant 5 : index
// CHECK: return %[[RESULT]] : index
%shape = shape.const_shape [3, 4, 5, 6, 7] : tensor<5xindex>
%rank = shape.rank %shape : tensor<5xindex> -> index
return %rank : index
}
// -----
// Do not fold `rank` for non-constant extent tensors.
// CHECK-LABEL: @dont_fold_rank
// CHECK-SAME: (%[[SHAPE:.*]]: tensor<?xindex>) -> index
func.func @dont_fold_rank(%shape : tensor<?xindex>) -> index {
// CHECK: %[[RESULT:.*]] = shape.rank %[[SHAPE]] : tensor<?xindex> -> index
// CHECK: return %[[RESULT]] : index
%rank = shape.rank %shape : tensor<?xindex> -> index
return %rank : index
}
// -----
// Canonicalize `rank` when shape is derived from ranked tensor.
// CHECK-LABEL: @canonicalize_rank
func.func @canonicalize_rank(%arg : tensor<1x2x?xf32>) -> index {
// CHECK: %[[RESULT:.*]] = arith.constant 3 : index
// CHECK: return %[[RESULT]] : index
%shape = shape.shape_of %arg : tensor<1x2x?xf32> -> tensor<?xindex>
%rank = shape.rank %shape : tensor<?xindex> -> index
return %rank : index
}
// -----
// Canonicalize `rank` when shape is derived from ranked tensor.
// CHECK-LABEL: @canonicalize_rank
func.func @canonicalize_rank_size(%arg : tensor<1x2x?xf32>) -> !shape.size {
// CHECK: %[[RESULT:.*]] = shape.const_size 3
// CHECK: return %[[RESULT]] : !shape.size
%shape = shape.shape_of %arg : tensor<1x2x?xf32> -> !shape.shape
%rank = shape.rank %shape : !shape.shape -> !shape.size
return %rank : !shape.size
}
// -----
// Do not canonicalize `rank` when shape is derived from unranked tensor.
// CHECK-LABEL: @dont_canonicalize_rank
// CHECK-SAME: (%[[ARG:.*]]: tensor<*xf32>) -> index
func.func @dont_canonicalize_rank(%arg : tensor<*xf32>) -> index {
// CHECK: %[[SHAPE:.*]] = shape.shape_of %[[ARG]] : tensor<*xf32> -> tensor<?xindex>
// CHECK: %[[SIZE:.*]] = shape.rank %[[SHAPE]]
// CHECK: return %[[SIZE]] : index
%shape = shape.shape_of %arg : tensor<*xf32> -> tensor<?xindex>
%rank = shape.rank %shape : tensor<?xindex> -> index
return %rank : index
}
// -----
// Canonicalize redundant conversion from `index` to `size` and back.
// CHECK-LABEL: @index_to_size_to_index
// CHECK-SAME: (%[[IDX:.*]]: index) -> index
func.func @index_to_size_to_index(%index : index) -> index {
// CHECK: return %[[IDX]] : index
%size = shape.index_to_size %index
%result = shape.size_to_index %size : !shape.size
return %result : index
}
// -----
// Canonicalize redundant conversion from `size` to `index` and back.
// CHECK-LABEL: @size_to_index_to_size
// CHECK-SAME: (%[[SIZE:.*]]: !shape.size) -> !shape.size
func.func @size_to_index_to_size(%size : !shape.size) -> !shape.size {
// CHECK: return %[[SIZE]] : !shape.size
%idx = shape.size_to_index %size : !shape.size
%result = shape.index_to_size %idx
return %result : !shape.size
}
// -----
// Canonicalize scalar cstr_broadcastable checks
// CHECK-LABEL: @cstr_broadcastable_scalar
func.func @cstr_broadcastable_scalar(%arg0 : tensor<?xf32>) {
// CHECK-NEXT: shape.const_witness true
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%0 = shape.const_shape [] : !shape.shape
%1 = shape.shape_of %arg0 : tensor<?xf32> -> tensor<?xindex>
%2 = shape.cstr_broadcastable %0, %1 : !shape.shape, tensor<?xindex>
"consume.witness"(%2) : (!shape.witness) -> ()
return
}
// -----
// Do not canonicalize cstr_broadcastable checks with 2 unknowns
// CHECK-LABEL: @cstr_broadcastable_unknown
func.func @cstr_broadcastable_unknown(%arg0 : tensor<?xf32>, %arg1 : tensor<?xf32>) {
// CHECK-NEXT: shape.shape_of %arg0
// CHECK-NEXT: shape.shape_of %arg1
// CHECK-NEXT: shape.cstr_broadcastable
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%0 = shape.shape_of %arg0 : tensor<?xf32> -> tensor<?xindex>
%1 = shape.shape_of %arg1 : tensor<?xf32> -> tensor<?xindex>
%2 = shape.cstr_broadcastable %0, %1 : tensor<?xindex>, tensor<?xindex>
"consume.witness"(%2) : (!shape.witness) -> ()
return
}
// -----
// Scalars are safe to broadcast to unranked sizes.
// CHECK-LABEL: @cstr_broadcastable_scalar_unranked
func.func @cstr_broadcastable_scalar_unranked(%arg0 : tensor<*xf32>, %arg1 : tensor<index>) {
// CHECK-NEXT: shape.const_witness true
// CHECK-NEXT: consume.witness
// CHECK-NEXT: return
%0 = shape.shape_of %arg1 : tensor<index> -> tensor<?xindex>
%1 = shape.shape_of %arg0 : tensor<*xf32> -> tensor<?xindex>
%2 = shape.cstr_broadcastable %0, %1 : tensor<?xindex>, tensor<?xindex>
"consume.witness"(%2) : (!shape.witness) -> ()
return
}
// -----
// Fold `shape_eq` for equal and constant shapes.
// CHECK-LABEL: @shape_eq_fold_1
func.func @shape_eq_fold_1() -> i1 {
// CHECK: %[[RESULT:.*]] = arith.constant true
// CHECK: return %[[RESULT]] : i1
%a = shape.const_shape [1, 2, 3] : !shape.shape
%b = shape.const_shape [1, 2, 3] : tensor<3xindex>
%c = shape.const_shape [1, 2, 3] : tensor<3xindex>
%result = shape.shape_eq %a, %b, %c : !shape.shape, tensor<3xindex>, tensor<3xindex>
return %result : i1
}
// -----
// Fold `shape_eq` for different but constant shapes of same length.
// CHECK-LABEL: @shape_eq_fold_0
func.func @shape_eq_fold_0() -> i1 {
// CHECK: %[[RESULT:.*]] = arith.constant false
// CHECK: return %[[RESULT]] : i1
%a = shape.const_shape [1, 2, 3] : tensor<3xindex>
%b = shape.const_shape [4, 5, 6] : tensor<3xindex>
%c = shape.const_shape [4, 5, 6] : tensor<3xindex>
%result = shape.shape_eq %a, %b, %c : tensor<3xindex>, tensor<3xindex>, tensor<3xindex>
return %result : i1
}
// -----
// Fold `shape_eq` for different but constant shapes of different length.
// CHECK-LABEL: @shape_eq_fold_0
func.func @shape_eq_fold_0() -> i1 {
// CHECK: %[[RESULT:.*]] = arith.constant false
// CHECK: return %[[RESULT]] : i1
%a = shape.const_shape [1, 2, 3, 4, 5, 6] : !shape.shape
%b = shape.const_shape [1, 2, 3] : !shape.shape
%result = shape.shape_eq %a, %b : !shape.shape, !shape.shape
return %result : i1
}
// -----
// Do not fold `shape_eq` for non-constant different shapes.
// CHECK-LABEL: @shape_eq_do_not_fold
// CHECK-SAME: (%[[A:.*]]: !shape.shape) -> i1
func.func @shape_eq_do_not_fold(%a : !shape.shape) -> i1 {
// CHECK: %[[B:.*]] = shape.const_shape [4, 5, 6]
// CHECK: %[[RESULT:.*]] = shape.shape_eq %[[A]], %[[B]] : !shape.shape, !shape.shape
// CHECK: return %[[RESULT]] : i1
%b = shape.const_shape [4, 5, 6] : !shape.shape
%result = shape.shape_eq %a, %b : !shape.shape, !shape.shape
return %result : i1
}
// -----
// Fold `add` for constant sizes.
// CHECK-LABEL: @fold_add_size
func.func @fold_add_size() -> !shape.size {
// CHECK: %[[RESULT:.*]] = shape.const_size 5
// CHECK: return %[[RESULT]] : !shape.size
%c2 = shape.const_size 2
%c3 = shape.const_size 3
%result = shape.add %c2, %c3 : !shape.size, !shape.size -> !shape.size
return %result : !shape.size
}
// -----
// Fold `mul` for constant sizes.
// CHECK-LABEL: @fold_mul_size
func.func @fold_mul_size() -> !shape.size {
// CHECK: %[[RESULT:.*]] = shape.const_size 6
// CHECK: return %[[RESULT]] : !shape.size
%c2 = shape.const_size 2
%c3 = shape.const_size 3
%result = shape.mul %c2, %c3 : !shape.size, !shape.size -> !shape.size
return %result : !shape.size
}
// -----
// Fold `mul` for constant indices.
// CHECK-LABEL: @fold_mul_index
func.func @fold_mul_index() -> index {
// CHECK: %[[RESULT:.*]] = arith.constant 6 : index
// CHECK: return %[[RESULT]] : index
%c2 = arith.constant 2 : index
%c3 = arith.constant 3 : index
%result = shape.mul %c2, %c3 : index, index -> index
return %result : index
}
// -----
// Fold `mul` for mixed constants.
// CHECK-LABEL: @fold_mul_mixed
func.func @fold_mul_mixed() -> !shape.size {
// CHECK: %[[RESULT:.*]] = shape.const_size 6
// CHECK: return %[[RESULT]] : !shape.size
%c2 = shape.const_size 2
%c3 = arith.constant 3 : index
%result = shape.mul %c2, %c3 : !shape.size, index -> !shape.size
return %result : !shape.size
}
// -----
// Fold `div` for constant sizes.
// CHECK-LABEL: @fold_div_size
func.func @fold_div_size() -> !shape.size {
// CHECK: %[[RESULT:.*]] = shape.const_size 3
// CHECK: return %[[RESULT]] : !shape.size
%c2 = shape.const_size 10
%c3 = shape.const_size 3
%result = shape.div %c2, %c3 : !shape.size, !shape.size -> !shape.size
return %result : !shape.size
}
// -----
// Fold `div` for constant indices.
// CHECK-LABEL: @fold_div_index
func.func @fold_div_index() -> index {
// CHECK: %[[RESULT:.*]] = arith.constant 2 : index
// CHECK: return %[[RESULT]] : index
%c2 = arith.constant 10 : index
%c3 = arith.constant 4 : index
%result = shape.div %c2, %c3 : index, index -> index
return %result : index
}
// -----
// Fold `div` for constant indices and lhs is negative.
// CHECK-LABEL: @fold_div_index_neg_lhs
func.func @fold_div_index_neg_lhs() -> index {
// CHECK: %[[RESULT:.*]] = arith.constant -3 : index
// CHECK: return %[[RESULT]] : index
%c2 = arith.constant -10 : index
%c3 = arith.constant 4 : index
%result = shape.div %c2, %c3 : index, index -> index
return %result : index
}
// -----
// Fold `div` for constant indices and rhs is negative.
// CHECK-LABEL: @fold_div_index_neg_rhs
func.func @fold_div_index_neg_rhs() -> index {
// CHECK: %[[RESULT:.*]] = arith.constant -3 : index
// CHECK: return %[[RESULT]] : index
%c2 = arith.constant 10 : index
%c3 = arith.constant -4 : index
%result = shape.div %c2, %c3 : index, index -> index
return %result : index
}
// -----
// Fold `div` for mixed constants.
// CHECK-LABEL: @fold_div_mixed
func.func @fold_div_mixed() -> !shape.size {
// CHECK: %[[RESULT:.*]] = shape.const_size 4
// CHECK: return %[[RESULT]] : !shape.size
%c2 = shape.const_size 12
%c3 = arith.constant 3 : index
%result = shape.div %c2, %c3 : !shape.size, index -> !shape.size
return %result : !shape.size
}
// -----
// Fold index_cast when already on index.
// CHECK-LABEL: @fold_index_cast_on_index
func.func @fold_index_cast_on_index(%arg: index) -> index {
// CHECK-NOT: size_to_index
%0 = shape.size_to_index %arg : index
return %0 : index
}
// -----
// Fold to_extent_tensor when already on tensor.
// CHECK-LABEL: @fold_to_extent_tensor_on_tensor
func.func @fold_to_extent_tensor_on_tensor(%arg: tensor<?xindex>) -> tensor<?xindex> {
// CHECK-NOT: to_extent_tensor
%0 = shape.to_extent_tensor %arg : tensor<?xindex> -> tensor<?xindex>
return %0 : tensor<?xindex>
}
// -----
// Fold assuming_all with a single input
// CHECK-LABEL: @fold_assuming_all_single_element
func.func @fold_assuming_all_single_element(%arg: tensor<?xindex>) {
// CHECK-NOT: assuming_all
%0 = "test.source"() : () -> (!shape.witness)
%1 = shape.assuming_all %0
"consume.witness"(%1) : (!shape.witness) -> ()
return
}
// -----
// Verify that tensor.cast folding uses the correct type
// CHECK-LABEL: @fold_tensor.cast_of_const_shape_returned
func.func @fold_tensor.cast_of_const_shape_returned(%arg: i1) -> tensor<1xindex> {
// CHECK: shape.const_shape [2] : tensor<1xindex>
// CHECK-NOT: tensor.cast
%0 = shape.const_shape [2] : tensor<1xindex>
%1 = tensor.cast %0 : tensor<1xindex> to tensor<1xindex>
return %1 : tensor<1xindex>
}
// -----
// CHECK-LABEL: @dont_fold_tensor.cast_of_const_shape_returned_dynamic
func.func @dont_fold_tensor.cast_of_const_shape_returned_dynamic(%arg: i1) -> tensor<?xindex> {
// CHECK: %[[CONST_SHAPE:.*]] = shape.const_shape [2] : tensor<1xindex>
// CHECK: tensor.cast %[[CONST_SHAPE]] : tensor<1xindex> to tensor<?xindex>
%0 = shape.const_shape [2] : tensor<1xindex>
%1 = tensor.cast %0 : tensor<1xindex> to tensor<?xindex>
return %1 : tensor<?xindex>
}
// -----
// CHECK-LABEL: @is_broadcastable_on_same_shape
func.func @is_broadcastable_on_same_shape(%shape : !shape.shape) -> i1 {
// CHECK-NOT: is_broadcastable
// CHECK: %[[RES:.*]] = arith.constant true
// CHECK: return %[[RES]]
%0 = shape.is_broadcastable %shape, %shape, %shape
: !shape.shape, !shape.shape, !shape.shape
return %0 : i1
}
// -----
// CHECK-LABEL: @is_broadcastable_on_duplicate_shapes
// CHECK-SAME: (%[[A:.*]]: !shape.shape, %[[B:.*]]: !shape.shape)
func.func @is_broadcastable_on_duplicate_shapes(%a : !shape.shape, %b : !shape.shape)
-> i1 {
// CHECK: %[[RES:.*]] = shape.is_broadcastable %[[A]], %[[B]] :
// CHECK: return %[[RES]]
%0 = shape.is_broadcastable %a, %b, %a, %a, %a, %b : !shape.shape,
!shape.shape, !shape.shape, !shape.shape, !shape.shape, !shape.shape
return %0 : i1
}
// -----
// CHECK-LABEL: @cstr_broadcastable_on_duplicate_shapes
// CHECK-SAME: (%[[A:.*]]: !shape.shape, %[[B:.*]]: !shape.shape)
func.func @cstr_broadcastable_on_duplicate_shapes(%a : !shape.shape,
%b : !shape.shape) -> !shape.witness {
// CHECK: %[[RES:.*]] = shape.cstr_broadcastable %[[A]], %[[B]] :
// CHECK: return %[[RES]]
%0 = shape.cstr_broadcastable %a, %b, %a, %a, %a, %b : !shape.shape,
!shape.shape, !shape.shape, !shape.shape, !shape.shape, !shape.shape
return %0 : !shape.witness
}
// -----
// CHECK-LABEL: @broadcast_on_same_shape
// CHECK-SAME: (%[[SHAPE:.*]]: !shape.shape)
func.func @broadcast_on_same_shape(%shape : !shape.shape) -> !shape.shape {
// CHECK-NOT: broadcast
// CHECK: return %[[SHAPE]]
%0 = shape.broadcast %shape, %shape, %shape : !shape.shape, !shape.shape,
!shape.shape -> !shape.shape
return %0 : !shape.shape
}
// -----
// CHECK-LABEL: @broadcast_on_duplicate_shapes
// CHECK-SAME: (%[[A:.*]]: !shape.shape, %[[B:.*]]: !shape.shape)
func.func @broadcast_on_duplicate_shapes(%a : !shape.shape, %b : !shape.shape)
-> !shape.shape {
// CHECK: %[[RES:.*]] = shape.broadcast %[[A]], %[[B]] :
// CHECK: return %[[RES]]
%0 = shape.broadcast %a, %b, %a, %a, %a, %b : !shape.shape, !shape.shape,
!shape.shape, !shape.shape, !shape.shape, !shape.shape -> !shape.shape
return %0 : !shape.shape
}
// -----
// CHECK-LABEL: @broadcast_on_single_operand
// CHECK-SAME: (%[[A:.*]]: tensor<?xindex>)
func.func @broadcast_on_single_operand(%a : tensor<?xindex>) {
// CHECK-NOT: broadcast
// CHECK: "use"(%[[A]])
%0 = shape.broadcast %a : tensor<?xindex> -> tensor<?xindex>
"use"(%0) : (tensor<?xindex>) -> ()
return
}
// -----
// CHECK-LABEL: @broadcast_as_tensor_cast
// CHECK-SAME: (%[[A:.*]]: tensor<3xindex>)
func.func @broadcast_as_tensor_cast(%a : tensor<3xindex>) -> tensor<?xindex> {
// CHECK: %[[RESULT:.*]] = tensor.cast %[[A]] : tensor<3xindex> to tensor<?xindex>
// CHECK: return %[[RESULT]] : tensor<?xindex>
%0 = shape.broadcast %a : tensor<3xindex> -> tensor<?xindex>
return %0 : tensor<?xindex>
}
// -----
// CHECK-LABEL: @broadcast_as_from_extent_tensor
// CHECK-SAME: (%[[A:.*]]: tensor<?xindex>)
func.func @broadcast_as_from_extent_tensor(%a : tensor<?xindex>) -> !shape.shape {
// CHECK: %[[RESULT:.*]] = shape.from_extent_tensor %[[A]] : tensor<?xindex>
// CHECK: return %[[RESULT]] : !shape.shape
%0 = shape.broadcast %a : tensor<?xindex> -> !shape.shape
return %0 : !shape.shape
}
// -----
// CHECK-LABEL: @cast_extent_tensor
// CHECK-SAME: (%[[ARG:.*]]: tensor<?x?x?xf32>) -> tensor<?xindex>
func.func @cast_extent_tensor(%arg : tensor<?x?x?xf32>) -> tensor<?xindex> {
// CHECK: %[[RESULT:.*]] = shape.shape_of %[[ARG]] : tensor<?x?x?xf32> -> tensor<?xindex>
// CHECK: return %[[RESULT]] : tensor<?xindex>
%0 = shape.shape_of %arg : tensor<?x?x?xf32> -> tensor<3xindex>
%1 = tensor.cast %0 : tensor<3xindex> to tensor<?xindex>
return %1 : tensor<?xindex>
}
// -----
// CHECK-LABEL: @cast_extent_tensor
// CHECK-SAME: (%[[ARG:.*]]: tensor<?x?x?xf32>) -> tensor<3xindex>
func.func @cast_extent_tensor(%arg : tensor<?x?x?xf32>) -> tensor<3xindex> {
// CHECK: %[[RESULT:.*]] = shape.shape_of %[[ARG]] : tensor<?x?x?xf32> -> tensor<3xindex>
// CHECK: return %[[RESULT]] : tensor<3xindex>
%0 = shape.shape_of %arg : tensor<?x?x?xf32> -> tensor<?xindex>
%1 = tensor.cast %0 : tensor<?xindex> to tensor<3xindex>
return %1 : tensor<3xindex>
}
// -----
// CHECK-LABEL: @cast_extent_tensor
func.func @cast_extent_tensor(%arg : tensor<?x?x?x?xf32>) -> tensor<3xindex> {
// CHECK: tensor.cast %{{.*}} : tensor<?xindex> to tensor<3xindex>
%0 = shape.shape_of %arg : tensor<?x?x?x?xf32> -> tensor<?xindex>
%1 = tensor.cast %0 : tensor<?xindex> to tensor<3xindex>
return %1 : tensor<3xindex>
}
// -----
// CHECK-LABEL: @cast_extent_tensor
func.func @cast_extent_tensor(%arg : tensor<*xf32>) -> tensor<3xindex> {
// CHECK: tensor.cast %{{.*}} : tensor<?xindex> to tensor<3xindex>
%0 = shape.shape_of %arg : tensor<*xf32> -> tensor<?xindex>
%1 = tensor.cast %0 : tensor<?xindex> to tensor<3xindex>
return %1 : tensor<3xindex>
}
// -----
// CHECK-LABEL: max_same_arg
// CHECK-SAME: (%[[SHAPE:.*]]: !shape.shape)
func.func @max_same_arg(%a: !shape.shape) -> !shape.shape {
%1 = shape.max %a, %a : !shape.shape, !shape.shape -> !shape.shape
// CHECK: return %[[SHAPE]]
return %1 : !shape.shape
}
// -----
// CHECK-LABEL: min_same_arg
// CHECK-SAME: (%[[SHAPE:.*]]: !shape.shape)
func.func @min_same_arg(%a: !shape.shape) -> !shape.shape {
%1 = shape.min %a, %a : !shape.shape, !shape.shape -> !shape.shape
// CHECK: return %[[SHAPE]]
return %1 : !shape.shape
}
// -----
// CHECK-LABEL: @cstr_broadcastable_folding
func.func @cstr_broadcastable_folding(%arg : tensor<?x4xf32>) {
// CHECK: const_witness true
%0 = shape.shape_of %arg : tensor<?x4xf32> -> tensor<2xindex>
%1 = shape.const_shape [4] : tensor<1xindex>
%2 = shape.cstr_broadcastable %0, %1: tensor<2xindex>, tensor<1xindex>
"use"(%2) : (!shape.witness) -> ()
}
// -----
// CHECK-LABEL: @cast_extent_tensor_operands
// CHECK-SAME: (%[[ARG0:.*]]: tensor<?xindex>, %[[ARG1:.*]]: tensor<3xindex>)
func.func @cast_extent_tensor_operands(%arg0 : tensor<?xindex>,
%arg1 : tensor<3xindex>) -> (!shape.witness, tensor<?xindex>) {
// CHECK: %[[CAST_ARG0:.*]] = tensor.cast %[[ARG0]] : tensor<?xindex> to tensor<3xindex>
// CHECK: %[[WIT:.*]] = shape.cstr_broadcastable %[[CAST_ARG0]], %[[ARG1]] : tensor<3xindex>, tensor<3xindex>
// CHECK: %[[UNCAST_RES:.*]] = shape.broadcast %[[CAST_ARG0]], %[[ARG1]] : tensor<3xindex>, tensor<3xindex> -> tensor<3xindex>
// CHECK: %[[RES:.*]] = tensor.cast %[[UNCAST_RES]] : tensor<3xindex> to tensor<?xindex>
// CHECK: return %[[WIT]], %[[RES]]
%0 = tensor.cast %arg0 : tensor<?xindex> to tensor<3xindex>
%1 = tensor.cast %arg1 : tensor<3xindex> to tensor<?xindex>
%2 = shape.cstr_broadcastable %0, %1 : tensor<3xindex>, tensor<?xindex>
%3 = shape.broadcast %0, %1 :tensor<3xindex>, tensor<?xindex>
-> tensor<?xindex>
return %2, %3 : !shape.witness, tensor<?xindex>
}
// -----
// CHECK-LABEL: @concretize_broadcast_result_type
// CHECK-SAME: (%[[ARG0:.*]]: tensor<2xindex>, %[[ARG1:.*]]: tensor<3xindex>)
func.func @concretize_broadcast_result_type(%arg0 : tensor<2xindex>,
%arg1 : tensor<3xindex>) -> tensor<?xindex> {
// CHECK: %[[CONCR:.*]] = shape.broadcast %[[ARG0]], %[[ARG1]] : tensor<2xindex>, tensor<3xindex> -> tensor<3xindex>
// CHECK: %[[RES:.*]] = tensor.cast %[[CONCR]] : tensor<3xindex> to tensor<?xindex>
// CHECK: return %[[RES]]
%0 = shape.broadcast %arg0, %arg1 : tensor<2xindex>, tensor<3xindex>
-> tensor<?xindex>
return %0 : tensor<?xindex>
}
// -----
// CHECK-LABEL: func @extract_shapeof
// CHECK-SAME: %[[ARG0:.*]]: tensor<?x?xf64>
func.func @extract_shapeof(%arg0 : tensor<?x?xf64>) -> index {
%c1 = arith.constant 1 : index
// CHECK: %[[C1:.*]] = arith.constant 1
%shape = shape.shape_of %arg0 : tensor<?x?xf64> -> tensor<2xindex>
// CHECK: %[[DIM:.*]] = tensor.dim %[[ARG0]], %[[C1]]
%result = tensor.extract %shape[%c1] : tensor<2xindex>
// CHECK: return %[[DIM]]
return %result : index
}
|