File size: 119,825 Bytes
fe90e05 14456f5 fe90e05 14456f5 fe90e05 14456f5 fe90e05 | 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 | {
"cases": [
{
"name": "rank2_bias_f32",
"provenance": {
"notes": "A plain (M, K) x (K, N) with bias, both dimensions past one 64-wide tile so the kernel's tile loop and its bounds checks both run."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [96, 80],
"data": { "kind": "fillFloat32", "scale": 0.9, "sinStep": 0.18000000000000002, "cosStep": 0.32 }
},
"W": {
"dtype": "float32",
"shape": [80, 72],
"data": { "kind": "fillFloat32", "scale": 0.5, "sinStep": 0.12, "cosStep": 0.24000000000000002 }
},
"bias": {
"dtype": "float32",
"shape": [72],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.3, "cosStep": 0.14 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [96, 72], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "rank2_nobias_f32",
"provenance": { "notes": "A 96x80 by 80x72 multiplication without bias exercises the two-input binding layout." },
"inputs": {
"X": {
"dtype": "float32",
"shape": [96, 80],
"data": { "kind": "fillFloat32", "scale": 0.9, "sinStep": 0.19, "cosStep": 0.33 }
},
"W": {
"dtype": "float32",
"shape": [80, 72],
"data": { "kind": "fillFloat32", "scale": 0.5, "sinStep": 0.13, "cosStep": 0.25 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [96, 72], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "rank3_batched_bias_f32",
"provenance": {
"notes": "A rank-3 X: every leading axis is another row, so a (2, 48, 64) input is a 96-row product rather than a batched matmul."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [2, 48, 64],
"data": { "kind": "fillFloat32", "scale": 0.9, "sinStep": 0.2, "cosStep": 0.33999999999999997 }
},
"W": {
"dtype": "float32",
"shape": [64, 40],
"data": { "kind": "fillFloat32", "scale": 0.5, "sinStep": 0.14, "cosStep": 0.26 }
},
"bias": {
"dtype": "float32",
"shape": [40],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.31999999999999995, "cosStep": 0.16 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [2, 48, 40], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "rank4_batched_nobias_f32",
"provenance": {
"notes": "Rank 4, no bias -- the leading-axis collapse must not depend on how many axes there are."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [2, 3, 16, 32],
"data": { "kind": "fillFloat32", "scale": 0.9, "sinStep": 0.21000000000000002, "cosStep": 0.35 }
},
"W": {
"dtype": "float32",
"shape": [32, 24],
"data": { "kind": "fillFloat32", "scale": 0.5, "sinStep": 0.15, "cosStep": 0.27 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [2, 3, 16, 24], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "small_unaligned_bias_f32",
"provenance": {
"notes": "M, K and N all smaller than one tile and none a multiple of the 4x4 micro-tile, so every bounds check is exercised."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [7, 13],
"data": { "kind": "fillFloat32", "scale": 0.9, "sinStep": 0.22000000000000003, "cosStep": 0.36 }
},
"W": {
"dtype": "float32",
"shape": [13, 11],
"data": { "kind": "fillFloat32", "scale": 0.5, "sinStep": 0.16, "cosStep": 0.28 }
},
"bias": {
"dtype": "float32",
"shape": [11],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.33999999999999997, "cosStep": 0.18 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [7, 11], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "single_row_bias_f32",
"provenance": { "notes": "One row: the GEMV shape, where the M tile is almost entirely padding." },
"inputs": {
"X": {
"dtype": "float32",
"shape": [1, 64],
"data": { "kind": "fillFloat32", "scale": 0.9, "sinStep": 0.23, "cosStep": 0.37 }
},
"W": {
"dtype": "float32",
"shape": [64, 48],
"data": {
"kind": "fillFloat32",
"scale": 0.5,
"sinStep": 0.16999999999999998,
"cosStep": 0.29000000000000004
}
},
"bias": {
"dtype": "float32",
"shape": [48],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.35, "cosStep": 0.19 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [1, 48], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "f16_rank3_bias",
"provenance": {
"notes": "float16 operands; the product accumulates in f32 and the activation runs before the single narrowing store."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [2, 32, 48],
"data": { "kind": "fillFloat32", "scale": 0.9, "sinStep": 0.24000000000000002, "cosStep": 0.38 }
},
"W": {
"dtype": "float16",
"shape": [48, 32],
"data": { "kind": "fillFloat32", "scale": 0.5, "sinStep": 0.18, "cosStep": 0.30000000000000004 }
},
"bias": {
"dtype": "float16",
"shape": [32],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.36, "cosStep": 0.2 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [2, 32, 32], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "f16_rank2_nobias",
"provenance": { "notes": "float16 without a bias." },
"inputs": {
"X": {
"dtype": "float16",
"shape": [48, 32],
"data": { "kind": "fillFloat32", "scale": 0.9, "sinStep": 0.25, "cosStep": 0.39 }
},
"W": {
"dtype": "float16",
"shape": [32, 24],
"data": { "kind": "fillFloat32", "scale": 0.5, "sinStep": 0.19, "cosStep": 0.31 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [48, 24], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "pinned_rank2_bias",
"provenance": {
"notes": "Hand-computed from the schema's FastGelu definition -- 0.5x(1 + tanh(sqrt(2/pi)(x + 0.044715 x^3))) -- applied to a float64 product, independent of the port's tiling and of its shared gelu helper. The operands are large enough that FastGelu is well outside its near-linear region, so the pin is sensitive to the activation itself."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [5, 6],
"data": {
"kind": "values",
"values": [-0.568, 1.402, -1.744, 0.805, -0.684, -0.366, -1.898, -0.274, 0.008, -1.719, 0.344, 1.185, -0.865, 1.863, -0.792, 1.783, 0.703, -0.614, -1.244, 1.186, 1.21, -0.428, -0.236, 1.268, -1.492, -1.469, 0.673, 1.956, -1.883, -0.872]
}
},
"W": {
"dtype": "float32",
"shape": [6, 4],
"data": {
"kind": "values",
"values": [-0.362, -1.699, 1.664, -0.171, 0.412, -0.373, -1.421, 1.657, 1.194, -0.13, -1.707, -0.827, -0.156, -1.618, 1.339, -0.16, -1.723, 1.951, 0.603, 1.677, 1.217, 0.273, 1.35, 0.713]
}
},
"bias": {
"dtype": "float32",
"shape": [4],
"data": { "kind": "values", "values": [-0.818, 0.02, 0.585, 0.387] }
}
},
"outputs": {
"Y": {
"dtype": "float32",
"shape": [5, 4],
"data": {
"kind": "values",
"values": [-0.099208, -0.041387, 0.626313, 2.704125, 0.716692, 7.121855, -0.009083, 1.89771, -0.004677, -0.16984, -0.072533, 4.732758, 3.581808, 2.075684, -0.000021, 2.106721, 1.733585, -0.000052, -0.167767, -0.0]
},
"tolerance": 0.00002,
"relTolerance": 0.0002
}
}
},
{
"name": "sgmat_aligned_bias_f32",
"provenance": {
"notes": "M, K and N all meet the subgroup-matrix gate (M >= 32, K % 32 == 0, N % 64 == 0), so this is the fixture that selects sgmat_bias rather than the tiled kernel. Two row tiles and two column tiles past the 32x64 tile, so the tile loop runs and the fused gelu is checked on every store site."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [64, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [64, 128],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float32",
"shape": [128],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [64, 128], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "sgmat_aligned_nobias_f32",
"provenance": {
"notes": "An aligned subgroup-matrix multiplication without bias exercises direct activation stores from the accumulator."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [96, 96],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [96, 192],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [96, 192], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "sgmat_aligned_bias_f16",
"provenance": {
"notes": "f16 operands drive the matrix units at their f16 component type while the accumulator and the fused gelu stay f32. The f16 gate admits M >= 2, so this also covers a row count under one tile."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [32, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [64, 128],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float16",
"shape": [128],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [32, 128], "tolerance": 0.02, "relTolerance": 0.02 } }
},
{
"name": "matrix_float32_nobias_r2_m64_k32_n32",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [64, 32],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [32, 32],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [64, 32], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_float32_nobias_r2_m64_k96_n96",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [64, 96],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [96, 96],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [64, 96], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_float32_nobias_r2_m128_k128_n128",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [128, 128],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [128, 128],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [128, 128], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_float32_nobias_r2_m63_k64_n64",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [63, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [64, 64],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [63, 64], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_float32_nobias_r2_m65_k64_n64",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [65, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [64, 64],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [65, 64], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_float32_nobias_r2_m32_k64_n64",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [32, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [64, 64],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [32, 64], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_float32_nobias_r2_m64_k33_n64",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [64, 33],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [33, 64],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [64, 64], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_float32_nobias_r2_m64_k64_n65",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [64, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [64, 65],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [64, 65], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_float32_nobias_r2_m0_k64_n32",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [0, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [64, 32],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [0, 32], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_float32_nobias_r4_m128_k96_n96",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [2, 2, 32, 96],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [96, 96],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [2, 2, 32, 96], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_float32_bias_r2_m64_k32_n32",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [64, 32],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [32, 32],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float32",
"shape": [32],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [64, 32], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_float32_bias_r2_m64_k96_n96",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [64, 96],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [96, 96],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float32",
"shape": [96],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [64, 96], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_float32_bias_r2_m128_k128_n128",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [128, 128],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [128, 128],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float32",
"shape": [128],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [128, 128], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_float32_bias_r2_m63_k64_n64",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [63, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [64, 64],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float32",
"shape": [64],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [63, 64], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_float32_bias_r2_m65_k64_n64",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [65, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [64, 64],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float32",
"shape": [64],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [65, 64], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_float32_bias_r2_m32_k64_n64",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [32, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [64, 64],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float32",
"shape": [64],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [32, 64], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_float32_bias_r2_m64_k33_n64",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [64, 33],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [33, 64],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float32",
"shape": [64],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [64, 64], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_float32_bias_r2_m64_k64_n65",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [64, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [64, 65],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float32",
"shape": [65],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [64, 65], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_float32_bias_r2_m0_k64_n32",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [0, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [64, 32],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float32",
"shape": [32],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [0, 32], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_float32_bias_r3_m128_k96_n96",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float32",
"shape": [2, 64, 96],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float32",
"shape": [96, 96],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float32",
"shape": [96],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float32", "shape": [2, 64, 96], "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_float16_nobias_r2_m64_k32_n32",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [64, 32],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [32, 32],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [64, 32], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "matrix_float16_nobias_r2_m64_k96_n96",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [64, 96],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [96, 96],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [64, 96], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "matrix_float16_nobias_r2_m128_k128_n128",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [128, 128],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [128, 128],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [128, 128], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "matrix_float16_nobias_r2_m63_k64_n64",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [63, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [64, 64],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [63, 64], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "matrix_float16_nobias_r2_m65_k64_n64",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [65, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [64, 64],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [65, 64], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "matrix_float16_nobias_r2_m32_k64_n64",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [32, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [64, 64],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [32, 64], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "matrix_float16_nobias_r2_m64_k33_n64",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [64, 33],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [33, 64],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [64, 64], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "matrix_float16_nobias_r2_m64_k64_n65",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [64, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [64, 65],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [64, 65], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "matrix_float16_nobias_r2_m0_k64_n32",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [0, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [64, 32],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [0, 32], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "matrix_float16_nobias_r4_m128_k96_n96",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [2, 2, 32, 96],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [96, 96],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [2, 2, 32, 96], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "matrix_float16_bias_r2_m64_k32_n32",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [64, 32],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [32, 32],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float16",
"shape": [32],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [64, 32], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "matrix_float16_bias_r2_m64_k96_n96",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [64, 96],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [96, 96],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float16",
"shape": [96],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [64, 96], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "matrix_float16_bias_r2_m128_k128_n128",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [128, 128],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [128, 128],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float16",
"shape": [128],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [128, 128], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "matrix_float16_bias_r2_m63_k64_n64",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [63, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [64, 64],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float16",
"shape": [64],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [63, 64], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "matrix_float16_bias_r2_m65_k64_n64",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [65, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [64, 64],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float16",
"shape": [64],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [65, 64], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "matrix_float16_bias_r2_m32_k64_n64",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [32, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [64, 64],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float16",
"shape": [64],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [32, 64], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "matrix_float16_bias_r2_m64_k33_n64",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [64, 33],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [33, 64],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float16",
"shape": [64],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [64, 64], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "matrix_float16_bias_r2_m64_k64_n65",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [64, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [64, 65],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float16",
"shape": [65],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [64, 65], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "matrix_float16_bias_r2_m0_k64_n32",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [0, 64],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [64, 32],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float16",
"shape": [32],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [0, 32], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "matrix_float16_bias_r3_m128_k96_n96",
"provenance": {
"notes": "Covers direct-matrix row/column alignment, staged or portable siblings, and dtype-specific fused activation behavior."
},
"inputs": {
"X": {
"dtype": "float16",
"shape": [2, 64, 96],
"data": { "kind": "fillFloat32", "scale": 0.7, "sinStep": 0.13, "cosStep": 0.29 }
},
"W": {
"dtype": "float16",
"shape": [96, 96],
"data": { "kind": "fillFloat32", "scale": 0.4, "sinStep": 0.21, "cosStep": 0.17 }
},
"bias": {
"dtype": "float16",
"shape": [96],
"data": { "kind": "fillFloat32", "scale": 0.3, "sinStep": 0.11, "cosStep": 0.37 }
}
},
"outputs": { "Y": { "dtype": "float16", "shape": [2, 64, 96], "tolerance": 0.006, "relTolerance": 0.006 } }
},
{
"name": "matrix_f32_cancellation_m64_k768_n32",
"provenance": {
"notes": "Preserves a cancellation-sensitive dot product from gemmfastgelu-bert-base-b8-s384-h768-i3072, output row 340, column 1204. A K+1 weight cycle maps it to column zero of a complete matrix tile. Four K streams and pairwise publication must meet the existing f32 tolerance."
},
"inputs": {
"X": {
"shape": [64, 768],
"dtype": "float32",
"data": {
"kind": "cycle",
"values": [0.45845353603363037, -0.7742417454719543, -1.6316444873809814, 1.503545880317688, -0.36690303683280945, 0.875373899936676, -0.2793777883052826, -0.7577379941940308, 0.3194423317909241, -0.6796386241912842, 1.599482774734497, 0.8303838968276978, 0.4869414269924164, -1.5942105054855347, -0.05018215626478195, -0.41927435994148254, 0.9811714887619019, -2.9507675170898438, 0.33379828929901123, -0.8442056179046631, 0.44938066601753235, 1.5713427066802979, 1.0306525230407715, 0.4009527266025543, 0.4888874590396881, 0.40790629386901855, -1.0106163024902344, -1.901934027671814, -0.839381217956543, -0.7407286167144775, -1.1811413764953613, 0.10390954464673996, -2.06402850151062, -0.6694381833076477, -0.20037782192230225, 0.6253455877304077, 0.18227864801883698, 1.0060832500457764, 1.0393518209457397, 1.324017882347107, 1.7424602508544922, -1.8365283012390137, -1.4019317626953125, -0.32594171166419983, -0.2926241457462311, 0.05934007838368416, 0.7169582843780518, -0.3218616843223572, 1.5466443300247192, -1.3412089347839355, 0.03597697988152504, -0.6312817335128784, -1.2933611869812012, -0.47208407521247864, 0.729850709438324, -0.6911805272102356, 0.037382822483778, 2.007020950317383, 1.1492245197296143, -1.4762766361236572, -0.17053978145122528, -0.37508389353752136, 0.15555037558078766, 0.6292962431907654, 0.2119964063167572, -0.09871497750282288, -0.4797954261302948, 0.631118893623352, -0.7920818328857422, -0.06186804920434952, -0.4821562170982361, -0.6443518400192261, -1.1812247037887573, -0.009684862568974495, 0.7909368276596069, 1.4071978330612183, -0.8595126867294312, 2.054933547973633, -0.2627689838409424, -1.8137933015823364, 0.4054831266403198, -1.0807442665100098, 0.3015833795070648, -0.27801573276519775, -2.0401599407196045, -1.5813703536987305, -0.74978107213974, 0.5320731401443481, -2.2359187602996826, 0.22079409658908844, 0.8704950213432312, -0.1949637532234192, -0.7619219422340393, -0.4844224154949188, 0.7575501203536987, 0.8339202404022217, 0.5840239524841309, 0.1646270751953125, -0.0757921040058136, -0.3927003741264343, 0.5011986494064331, 0.1423632949590683, 0.2695709764957428, 0.5919657945632935, -0.3653985261917114, -0.7297311425209045, 0.3174659013748169, 0.39760449528694153, -0.26530200242996216, -1.0529242753982544, 0.37128183245658875, 0.31966525316238403, 0.6154473423957825, -1.167927861213684, -0.46892139315605164, 0.3622177541255951, -0.3818930685520172, -0.7137015461921692, 0.3752979338169098, 0.6281384825706482, -0.22859075665473938, -0.014569376595318317, 0.3313900828361511, 0.5384145975112915, -0.4719110429286957, 0.14741554856300354, 0.047757603228092194, 0.6157026886940002, -0.34902986884117126, -0.46413955092430115, -0.7172769904136658, 1.7209745645523071, -0.1441802978515625, 0.21088452637195587, 1.186195969581604, -0.2603077292442322, -0.20808227360248566, -0.7188830375671387, 0.6250652074813843, -1.7024238109588623, 0.535463809967041, 0.6468984484672546, -0.9171682000160217, -0.2603156268596649, 0.15129993855953217, -1.516800045967102, 1.4159685373306274, 0.12263520807027817, 0.6261580586433411, -0.20974338054656982, 0.2271127551794052, 0.9705358147621155, 2.650250196456909, -0.5607174634933472, 0.2408824861049652, -0.674528181552887, 2.167651653289795, -0.6978077292442322, -0.58806312084198, -0.028383228927850723, 1.6344372034072876, 0.6215988397598267, -0.5542552471160889, -0.24027325212955475, -1.0699394941329956, -0.6371185183525085, 1.2543556690216064, 0.3376117944717407, 0.3196280300617218, -0.2750904858112335, -0.9008623361587524, 0.31311413645744324, -0.27728042006492615, -1.5061149597167969, -1.4974154233932495, -2.1082825660705566, -0.954823911190033, -0.7650330662727356, -1.0272375345230103, -0.3780248463153839, 0.8181657195091248, 0.837456226348877, 0.048047710210084915, 0.8794505596160889, -0.1265377253293991, -0.3662302792072296, 0.1251443326473236, 0.7950196862220764, 1.4153127670288086, 0.39268970489501953, 0.5271679759025574, 0.03840341046452522, -0.5721465349197388, 1.522581934928894, -0.8107966184616089, 0.17022331058979034, 1.191974401473999, 2.5001394748687744, 0.25811058282852173, 1.8491240739822388, 0.6031937599182129, -0.2100743055343628, -0.5625201463699341, -0.8271726965904236, 0.9274916648864746, -0.5428553223609924, 1.3423736095428467, 0.13104969263076782, -0.6670637726783752, 0.06815095990896225, 0.4140058755874634, -0.15175192058086395, 0.6049891114234924, 0.7514179944992065, -1.215741515159607, 0.029022395610809326, 3.034891366958618, -0.3885105550289154, 0.8288809061050415, 1.6887092590332031, -0.8196060657501221, -1.2314422130584717, 0.30341610312461853, -0.0158881526440382, 1.657009243965149, 0.2949672341346741, -1.20119047164917, -1.004001498222351, 0.36351117491722107, 0.5553247928619385, -0.10954771190881729, -0.7858225107192993, -0.6719186902046204, 1.3188343048095703, 0.3781351149082184, -1.5215051174163818, 0.8950854539871216, 1.8057422637939453, 0.466048926115036, 1.0315723419189453, 1.9747027158737183, 0.5228752493858337, 0.7536457180976868, -0.6946538686752319, 0.5648923516273499, 1.097516655921936, 1.32942795753479, -0.07679341733455658, 0.7018019556999207, -0.17175740003585815, -0.10242348164319992, -0.41277873516082764, 0.09867753088474274, 1.2331374883651733, 1.115652322769165, 1.0199843645095825, 0.3097044825553894, 1.3674969673156738, 1.1157820224761963, 1.6319613456726074, -2.0456502437591553, -0.08318425714969635, -1.6470061540603638, 1.0892869234085083, 0.9340810775756836, 0.40930870175361633, 1.0884908437728882, -0.6762003302574158, 1.1617857217788696, 1.4270628690719604, 0.4578082859516144, -1.0185670852661133, 1.6529343128204346, -0.12012108415365219, -0.2711640000343323, 0.5824258923530579, 0.3494682312011719, 0.8105448484420776, 1.4118759632110596, -0.28189706802368164, -0.5671894550323486, -0.3095458149909973, 1.515095591545105, 0.5542563796043396, 0.5109602212905884, 0.27303528785705566, 1.0848424434661865, 0.987143874168396, 1.2649039030075073, 0.5573406219482422, -0.25847551226615906, 0.5312964916229248, 0.43871328234672546, 0.6759244799613953, 0.7445634007453918, 0.31454259157180786, -0.2758837044239044, 0.5931817889213562, 0.18293555080890656, -0.15582439303398132, -1.4252866506576538, 0.4066155254840851, -0.3053871691226959, -1.5689748525619507, -1.0250134468078613, -0.20793357491493225, -0.8506197929382324, 0.5818630456924438, -1.6254091262817383, -0.8393003344535828, -0.7942184209823608, 0.27717870473861694, 0.09088083356618881, 0.06205777823925018, -0.5353152751922607, -1.1303867101669312, 0.764218270778656, 0.7241488695144653, 0.023471450433135033, -2.968517541885376, 0.28481152653694153, -1.0294805765151978, 0.454725444316864, 0.6782540082931519, 0.09575702995061874, 0.7364038228988647, 1.515492558479309, 0.12311442941427231, -0.024077629670500755, 2.0113418102264404, -0.8417332172393799, -0.3128841519355774, -1.5852869749069214, -0.6165798306465149, 1.0082186460494995, -0.8978692889213562, 0.4452817738056183, 0.9631166458129883, -1.0287353992462158, -1.0800939798355103, 1.5637233257293701, -0.9381028413772583, 1.2081867456436157, 1.6527310609817505, -0.4545036554336548, -1.166211485862732, -0.33759260177612305, -2.5898454189300537, -1.2990407943725586, 0.3555934727191925, -1.4872790575027466, 1.0541554689407349, -0.6910865902900696, -0.28852105140686035, 0.23161587119102478, -0.9583886861801147, 1.4133960008621216, -0.1896481066942215, 0.10950782150030136, -1.4822978973388672, 0.5855997204780579, 0.3007688820362091, 0.15732428431510925, 0.5243146419525146, 0.5583075881004333, -0.13912366330623627, -1.1641405820846558, -0.3595818281173706, 0.08451269567012787, -1.5201119184494019, 1.050652265548706, -0.1784803569316864, 0.9603589773178101, -1.6034666299819946, 0.08251851797103882, -1.673956274986267, -0.03160441666841507, -1.2305378913879395, -0.370950847864151, 0.14339512586593628, 0.325295090675354, -0.3465021550655365, 0.8231093883514404, -0.24541208148002625, 0.15871939063072205, -0.8132280707359314, -0.25570833683013916, 0.3873368501663208, 0.9629290699958801, -1.2561556100845337, -0.7198733687400818, -0.16423697769641876, 0.9377049803733826, 0.6058425903320312, 0.04902011901140213, -0.9176716804504395, 0.5114560723304749, -0.7423716187477112, -0.11590602248907089, 1.8022257089614868, 1.0124269723892212, -0.24923928081989288, 0.255520761013031, 0.30303826928138733, -0.6825071573257446, -0.6580734252929688, 0.37588873505592346, -0.11308787763118744, 0.5059871673583984, 0.322121262550354, -0.27026793360710144, 0.32549813389778137, -0.19215761125087738, -1.3640385866165161, -0.7868701815605164, 0.08853846043348312, -0.6683198809623718, -0.14054451882839203, 1.1177070140838623, -0.9024506211280823, -1.4612023830413818, 0.7035316228866577, 1.9616278409957886, -1.1702744960784912, -1.3657675981521606, -0.85813307762146, 0.9514250755310059, -0.6637747287750244, 0.031124457716941833, -1.7541627883911133, 1.298590064048767, 0.13926202058792114, 0.9811970591545105, 0.6297587752342224, 0.0032725962810218334, -0.35954850912094116, 0.47630372643470764, 0.16375769674777985, 0.19008897244930267, -0.47851279377937317, -1.1316381692886353, -0.5056347250938416, -0.03173470124602318, -0.275691956281662, 0.10520394146442413, 0.4640427827835083, 0.6271333694458008, 0.22909040749073029, 0.549652636051178, 0.610573410987854, 0.2820111811161041, 0.3864023983478546, 0.8092494010925293, 0.4575539529323578, 0.7117533087730408, 0.5600406527519226, -0.1424371898174286, -2.2547037601470947, 1.1560313701629639, 0.3131422698497772, 0.0378088541328907, 0.0190241951495409, -0.8841636180877686, 2.1374316215515137, -0.12911449372768402, -2.3561718463897705, 0.3391570746898651, 0.46895164251327515, 1.6501328945159912, 0.5763624906539917, -0.2762739658355713, 0.08058063685894012, 0.657108724117279, 0.5438849925994873, -0.6055387258529663, -0.737152099609375, -0.014107911847531796, 1.054994821548462, -0.05411646515130997, 0.3455100655555725, 1.9610475301742554, -0.5264045000076294, 0.9886032938957214, 1.5336507558822632, 0.2996251583099365, 1.6971184015274048, -1.3969171047210693, 0.2925201654434204, 0.26341512799263, 0.17701777815818787, 0.01009444147348404, 1.282508373260498, -0.42252233624458313, -0.9738792777061462, 1.0271708965301514, -1.6025301218032837, 0.8351373076438904, 1.518630027770996, 0.7963259816169739, -0.2770567238330841, 0.07831908017396927, -0.0038409249391406775, 1.6467785835266113, -0.6058641076087952, 0.10196641832590103, -0.20633427798748016, -1.2276848554611206, -1.1085621118545532, -0.26938945055007935, 1.0748295783996582, 0.7353058457374573, 0.6009654402732849, 1.2767881155014038, -2.0113883018493652, -0.08042421191930771, -0.05636873096227646, 0.09603048115968704, 0.20638610422611237, 1.8793004751205444, -1.9778497219085693, -0.40997716784477234, 0.13903604447841644, -0.17164742946624756, 0.3701934814453125, 2.0294408798217773, -0.21071523427963257, -1.9563567638397217, 0.1671694964170456, 0.32376235723495483, 0.545586109161377, -1.7231212854385376, -0.16530734300613403, -0.04317227378487587, 1.20198392868042, 0.34475934505462646, -0.2811647653579712, -0.5449070930480957, 0.9028813242912292, 0.45676034688949585, 0.061875127255916595, 1.7867993116378784, -0.2473032921552658, 0.3828079402446747, -1.8641177415847778, 0.5825502276420593, 0.3462410569190979, 0.9887211918830872, -0.13399899005889893, 2.1792986392974854, 0.08691931515932083, -0.22240325808525085, 0.7641399502754211, 2.975100517272949, -0.5384543538093567, -1.6485251188278198, 0.06987123191356659, -1.5534396171569824, 0.8299826979637146, -0.1199432983994484, 0.7819860577583313, 1.6695460081100464, -1.7365820407867432, 0.1816631704568863, 0.11473885923624039, -1.0468647480010986, -1.4547343254089355, -1.1763215065002441, 0.8807557821273804, 0.8159195780754089, -0.8937263488769531, -0.8079550266265869, -0.5204865336418152, -1.1634047031402588, -2.0222480297088623, 0.029087349772453308, -2.0822713375091553, 0.782823383808136, 0.10837040096521378, -1.260617971420288, -0.9359606504440308, -1.0806024074554443, -0.4974004626274109, -1.2915306091308594, 0.3106705844402313, -1.0471367835998535, 0.5468107461929321, 0.8570359945297241, 1.4907643795013428, 0.12831752002239227, 0.5503214597702026, 0.4281189441680908, -0.08153683692216873, 1.6486700773239136, -0.7576184272766113, -0.35082876682281494, 0.4169978201389313, -0.995278000831604, -1.0485880374908447, 0.23372595012187958, -1.0301079750061035, -0.6510911583900452, -0.17586039006710052, -0.2824288606643677, -1.9550155401229858, -1.0891109704971313, -0.5912473201751709, 0.5712839961051941, 0.42839935421943665, -0.1702355295419693, 0.4911324083805084, 0.17155905067920685, 1.599980354309082, -0.46337586641311646, 1.0888274908065796, -0.02519802190363407, -0.17661796510219574, -0.6134771704673767, -0.6570660471916199, -0.4605817198753357, -0.6617591977119446, -0.4571106731891632, -0.21961647272109985, -1.4128402471542358, 1.3652857542037964, 0.4660489559173584, 0.9709277749061584, 0.6101309657096863, 0.02503017708659172, 0.11257418990135193, -0.15772518515586853, -0.5314957499504089, -2.0715131759643555, 0.032441817224025726, -0.9568643569946289, -1.2349432706832886, -0.1101454645395279, -0.877278745174408, -2.2136924266815186, 0.3913845121860504, 0.25918951630592346, -2.183100700378418, -0.06255346536636353, 1.0904597043991089, 1.5328866243362427, 1.0574443340301514, 0.6064551472663879, -0.24415482580661774, 1.6800291538238525, -1.5771864652633667, 1.1271753311157227, -0.8744354844093323, -0.5635961890220642, -1.8070248365402222, 0.8189271688461304, 0.8568963408470154, 1.0842300653457642, -0.6064152121543884, -0.21260367333889008, -1.9746501445770264, 0.7024692893028259, -0.04992964491248131, -0.7047836780548096, -0.3412416875362396, -0.6979463696479797, 0.4405372440814972, -1.8215664625167847, 1.0567286014556885, -0.4021628201007843, -0.5949881672859192, 0.5635238289833069, 0.862501859664917, 0.21010008454322815, -0.16614915430545807, -0.8591166138648987, 0.5373758673667908, -0.028108229860663414, 1.27271568775177, -1.6200617551803589, -1.0184564590454102, -0.7999413013458252, 0.8304208517074585, -0.8034026026725769, -0.5682417750358582, 3.4546561241149902, -1.243028163909912, -2.0591726303100586, 0.09828401356935501, -0.8763054013252258, -0.3547447919845581, -1.615763545036316, -0.9934497475624084, -1.4582709074020386, 0.08329170942306519, 0.6268566846847534, -0.4371182322502136, 1.8745899200439453, 1.4770363569259644, -0.4864508807659149, 1.755767822265625, 1.7498865127563477, 0.9121424555778503, 0.6878013014793396, -0.36557841300964355, 0.12157270312309265, -0.8662831783294678, -1.6706440448760986, 1.2981680631637573, -0.940263569355011, -1.2169219255447388, 1.0590788125991821, 0.14623072743415833, 0.9251288771629333, -0.8270578980445862, 0.331651896238327, -1.7833746671676636, -1.145398736000061, -0.4791286885738373, 0.13461990654468536, 0.35623353719711304, 1.9328389167785645, 0.05473623797297478, -0.580886721611023, 1.393568515777588, 0.3507859706878662, -1.2467678785324097, -0.5511738061904907, 0.7971793413162231, 2.5174107551574707, 0.028952978551387787, -0.050724878907203674, -0.6375443935394287, -0.5419166088104248, 0.7827084064483643, 1.4693444967269897, -1.6083866357803345, 1.4039090871810913, -0.47143039107322693, 1.149649739265442, -0.8408945202827454, -0.4674534797668457, -0.7536576390266418, -2.05968976020813, -0.3593665659427643, -0.07310032099485397, -0.19884835183620453, -0.15247315168380737, 0.03805721178650856, 0.6094658970832825, 0.06717340648174286, 0.5157614350318909, 2.093536138534546, -0.20247235894203186, -1.2905144691467285, 0.5229343175888062, 1.0860098600387573, -0.2592010498046875, -1.5659091472625732, -0.18208879232406616, -0.842837929725647, 1.977717399597168, -0.8695505261421204, 2.198432207107544, 0.4481528103351593, -0.3972032368183136, -0.7903720736503601, 0.45743289589881897, -0.3131321966648102, 0.6746418476104736]
}
},
"W": {
"shape": [768, 32],
"dtype": "float32",
"data": {
"kind": "cycle",
"values": [-0.18831698596477509, -2.119428873062134, 0.3571448028087616, -1.3302918672561646, -0.8399933576583862, -0.7681086659431458, 0.4870663285255432, -0.39368680119514465, -0.1358480304479599, 0.976364254951477, 2.2815113067626953, -0.6719385981559753, -3.4329464435577393, 0.8822509050369263, 0.06632056832313538, -2.5214154720306396, 2.0296852588653564, 0.14288976788520813, -1.1165401935577393, -1.1529276371002197, 0.45741352438926697, -0.6285257339477539, 0.8191718459129333, 0.19007745385169983, 1.0917609930038452, 1.7527506351470947, 1.1982795000076294, -0.8878732323646545, 0.2629617154598236, 0.016276808455586433, 0.26728394627571106, -0.6040610074996948, -0.38952046632766724, -0.881788969039917, 1.4152023792266846, 0.5950102210044861, 0.30437198281288147, -0.7703455686569214, 0.5413835644721985, -0.11976253986358643, 0.3811129033565521, -0.099381223320961, -0.28029441833496094, -1.534085750579834, -0.3431755304336548, -1.4499000310897827, -1.2641491889953613, -0.7538554668426514, 0.12037049978971481, -1.0210778713226318, 0.3524637520313263, -0.2844425439834595, 0.6290494203567505, -1.7868269681930542, 1.4802745580673218, 2.3683743476867676, -1.447191596031189, -2.4625940322875977, 0.6180524230003357, -0.7960416674613953, -0.27278658747673035, -3.0797150135040283, -0.2893960773944855, 0.11687430739402771, 0.7664381861686707, 2.2638816833496094, 0.03343234211206436, 1.2459864616394043, -0.8429142236709595, -0.5857337117195129, 0.07783125340938568, -0.35502395033836365, 0.19397594034671783, 0.6780847907066345, -0.04948761314153671, 1.1061912775039673, 0.6079587340354919, -0.8456883430480957, 1.4095165729522705, 0.7427650094032288, -1.4842443466186523, 0.6761212348937988, 2.3842358589172363, -0.35593366622924805, -0.21397455036640167, -0.3747510015964508, 1.1568611860275269, -0.7179358005523682, 0.39342018961906433, 0.5930956602096558, 0.8262775540351868, 1.6693724393844604, 0.22015991806983948, -0.6031453609466553, 1.352033257484436, -0.24211859703063965, -0.16302847862243652, 0.45109736919403076, -0.6280680894851685, 0.45934367179870605, -0.7092970013618469, -1.2273815870285034, 1.5187644958496094, -0.022873690351843834, -0.9648996591567993, -0.2688866853713989, 0.5652855634689331, -0.9298439621925354, 0.5279631614685059, 0.3622046709060669, 0.28713664412498474, -0.25562095642089844, 1.2184804677963257, -1.6052736043930054, 0.9532480835914612, 0.45452257990837097, -0.38842472434043884, -0.006405096035450697, -0.9376088380813599, 0.6135331988334656, -3.0694382190704346, 1.1164488792419434, 1.2821712493896484, 0.3289121985435486, -0.8541377782821655, 0.8249086141586304, -0.3968650996685028, -0.8550050258636475, 0.2103540003299713, 0.27735233306884766, -0.7516228556632996, 1.1000455617904663, -0.16407568752765656, 1.6512234210968018, -0.05704633891582489, 1.2003602981567383, 0.3855394721031189, -0.34541136026382446, 0.06779215484857559, -0.3914962112903595, -0.5989457368850708, 0.3981108069419861, 1.1990703344345093, -1.451075792312622, 0.4687314033508301, -0.2598186731338501, 2.754503011703491, -0.2246786206960678, 0.7379858493804932, 1.102182149887085, -0.18536272644996643, 0.8525550365447998, 0.9927177429199219, 0.18266592919826508, 0.07827147096395493, -0.11832324415445328, -1.00912344455719, 0.7463313937187195, -1.5848311185836792, 1.0448790788650513, 0.2303203046321869, 0.27068108320236206, -0.004763966426253319, -0.8206278085708618, 0.2642582952976227, 0.830987274646759, -0.24780115485191345, -0.395982950925827, -0.5469847917556763, -0.49853599071502686, -0.1282723844051361, -0.29385682940483093, -0.22791065275669098, 0.6305646896362305, 0.46661242842674255, 0.45257386565208435, -1.961783766746521, -1.2875338792800903, 0.28593558073043823, -1.1034910678863525, -0.7314218282699585, 0.7221606969833374, -0.2703985571861267, 0.15881012380123138, 1.6184247732162476, 1.9444224834442139, 1.3663417100906372, 1.7966240644454956, 1.217513084411621, -1.524390697479248, -1.6368749141693115, -0.339287668466568, 0.36861076951026917, 0.5400069355964661, -0.6291850209236145, 0.4399167597293854, 0.15984955430030823, 0.3881300687789917, 0.5667953491210938, -0.15182919800281525, 1.1332385540008545, -1.0114370584487915, 0.407143771648407, -1.1330530643463135, 0.4638722538948059, -0.46494755148887634, 1.869948387145996, 0.9248294234275818, 2.3674490451812744, 0.4671420156955719, -1.0001152753829956, 0.08872706443071365, -0.3394630551338196, -0.6490975022315979, 0.21231195330619812, -0.8640429377555847, 0.469379723072052, 1.5876632928848267, 0.813019335269928, -1.2689772844314575, 0.14312298595905304, 0.7510524392127991, -2.0299551486968994, -1.118262767791748, -2.062974214553833, 2.019711971282959, 0.715336799621582, -1.0456100702285767, 0.6837994456291199, 1.6856242418289185, 0.3134949505329132, 0.13127368688583374, 1.5372099876403809, -1.9621607065200806, 0.4833222031593323, -0.18831698596477509, 2.030656337738037, -0.252786785364151, 1.471670150756836, -1.8260318040847778, 1.7738840579986572, -1.1361514329910278, -1.5871145725250244, 0.7881421446800232, -0.4645939767360687, 1.0689646005630493, -0.26794689893722534, -0.1148165911436081, -0.685295045375824, -0.05349047854542732, 1.0644704103469849, -0.7206065058708191, -1.1226963996887207, 0.20150214433670044, 0.30059677362442017, 0.5959253907203674, -0.017842909321188927, 0.8191718459129333, 0.19007745385169983, 1.0917609930038452, 1.7527506351470947, 1.1982795000076294, -0.8878732323646545, 0.2629617154598236, 0.016276808455586433, 0.26728394627571106, -0.6040610074996948, -0.38952046632766724, -2.119428873062134, 0.3571448028087616, -1.3302918672561646, -0.8399933576583862, -0.7681086659431458, 0.4870663285255432, -0.39368680119514465, -0.1358480304479599, 0.976364254951477, 2.2815113067626953, -0.6719385981559753, -3.4329464435577393, 0.8822509050369263, 0.06632056832313538, -2.5214154720306396, 2.0296852588653564, 0.14288976788520813, -1.1165401935577393, -1.1529276371002197, 0.45741352438926697, -0.6285257339477539, 1.4802745580673218, 2.3683743476867676, -1.447191596031189, -2.4625940322875977, 0.6180524230003357, -0.7960416674613953, -0.27278658747673035, -3.0797150135040283, -0.2893960773944855, 0.11687430739402771, 0.7664381861686707, -0.881788969039917, 1.4152023792266846, 0.5950102210044861, 0.30437198281288147, -0.7703455686569214, 0.5413835644721985, -0.11976253986358643, 0.3811129033565521, -0.099381223320961, -0.28029441833496094, -1.534085750579834, -0.3431755304336548, -1.4499000310897827, -1.2641491889953613, -0.7538554668426514, 0.12037049978971481, -1.0210778713226318, 0.3524637520313263, -0.2844425439834595, 0.6290494203567505, -1.7868269681930542, 1.1568611860275269, -0.7179358005523682, 0.39342018961906433, 0.5930956602096558, 0.8262775540351868, 1.6693724393844604, 0.22015991806983948, -0.6031453609466553, 1.352033257484436, -0.24211859703063965, -0.16302847862243652, 2.2638816833496094, 0.03343234211206436, 1.2459864616394043, -0.8429142236709595, -0.5857337117195129, 0.07783125340938568, -0.35502395033836365, 0.19397594034671783, 0.6780847907066345, -0.04948761314153671, 1.1061912775039673, 0.6079587340354919, -0.8456883430480957, 1.4095165729522705, 0.7427650094032288, -1.4842443466186523, 0.6761212348937988, 2.3842358589172363, -0.35593366622924805, -0.21397455036640167, -0.3747510015964508, -0.9376088380813599, 0.6135331988334656, -3.0694382190704346, 1.1164488792419434, 1.2821712493896484, 0.3289121985435486, -0.8541377782821655, 0.8249086141586304, -0.3968650996685028, -0.8550050258636475, 0.2103540003299713, 0.45109736919403076, -0.6280680894851685, 0.45934367179870605, -0.7092970013618469, -1.2273815870285034, 1.5187644958496094, -0.022873690351843834, -0.9648996591567993, -0.2688866853713989, 0.5652855634689331, -0.9298439621925354, 0.5279631614685059, 0.3622046709060669, 0.28713664412498474, -0.25562095642089844, 1.2184804677963257, -1.6052736043930054, 0.9532480835914612, 0.45452257990837097, -0.38842472434043884, -0.006405096035450697, -0.18536272644996643, 0.8525550365447998, 0.9927177429199219, 0.18266592919826508, 0.07827147096395493, -0.11832324415445328, -1.00912344455719, 0.7463313937187195, -1.5848311185836792, 1.0448790788650513, 0.2303203046321869, 0.27735233306884766, -0.7516228556632996, 1.1000455617904663, -0.16407568752765656, 1.6512234210968018, -0.05704633891582489, 1.2003602981567383, 0.3855394721031189, -0.34541136026382446, 0.06779215484857559, -0.3914962112903595, -0.5989457368850708, 0.3981108069419861, 1.1990703344345093, -1.451075792312622, 0.4687314033508301, -0.2598186731338501, 2.754503011703491, -0.2246786206960678, 0.7379858493804932, 1.102182149887085, -0.2703985571861267, 0.15881012380123138, 1.6184247732162476, 1.9444224834442139, 1.3663417100906372, 1.7966240644454956, 1.217513084411621, -1.524390697479248, -1.6368749141693115, -0.339287668466568, 0.36861076951026917, 0.27068108320236206, -0.004763966426253319, -0.8206278085708618, 0.2642582952976227, 0.830987274646759, -0.24780115485191345, -0.395982950925827, -0.5469847917556763, -0.49853599071502686, -0.1282723844051361, -0.29385682940483093, -0.22791065275669098, 0.6305646896362305, 0.46661242842674255, 0.45257386565208435, -1.961783766746521, -1.2875338792800903, 0.28593558073043823, -1.1034910678863525, -0.7314218282699585, 0.7221606969833374, 0.21231195330619812, -0.8640429377555847, 0.469379723072052, 1.5876632928848267, 0.813019335269928, -1.2689772844314575, 0.14312298595905304, 0.7510524392127991, -2.0299551486968994, -1.118262767791748, -2.062974214553833, 0.5400069355964661, -0.6291850209236145, 0.4399167597293854, 0.15984955430030823, 0.3881300687789917, 0.5667953491210938, -0.15182919800281525, 1.1332385540008545, -1.0114370584487915, 0.407143771648407, -1.1330530643463135, 0.4638722538948059, -0.46494755148887634, 1.869948387145996, 0.9248294234275818, 2.3674490451812744, 0.4671420156955719, -1.0001152753829956, 0.08872706443071365, -0.3394630551338196, -0.6490975022315979, -0.26794689893722534, -0.1148165911436081, -0.685295045375824, -0.05349047854542732, 1.0644704103469849, -0.7206065058708191, -1.1226963996887207, 0.20150214433670044, 0.30059677362442017, 0.5959253907203674, -0.017842909321188927, 2.019711971282959, 0.715336799621582, -1.0456100702285767, 0.6837994456291199, 1.6856242418289185, 0.3134949505329132, 0.13127368688583374, 1.5372099876403809, -1.9621607065200806, 0.4833222031593323, -0.18831698596477509, 2.030656337738037, -0.252786785364151, 1.471670150756836, -1.8260318040847778, 1.7738840579986572, -1.1361514329910278, -1.5871145725250244, 0.7881421446800232, -0.4645939767360687, 1.0689646005630493, -0.6719385981559753, -3.4329464435577393, 0.8822509050369263, 0.06632056832313538, -2.5214154720306396, 2.0296852588653564, 0.14288976788520813, -1.1165401935577393, -1.1529276371002197, 0.45741352438926697, -0.6285257339477539, 0.8191718459129333, 0.19007745385169983, 1.0917609930038452, 1.7527506351470947, 1.1982795000076294, -0.8878732323646545, 0.2629617154598236, 0.016276808455586433, 0.26728394627571106, -0.6040610074996948, -0.38952046632766724, -2.119428873062134, 0.3571448028087616, -1.3302918672561646, -0.8399933576583862, -0.7681086659431458, 0.4870663285255432, -0.39368680119514465, -0.1358480304479599, 0.976364254951477, 2.2815113067626953, -1.534085750579834, -0.3431755304336548, -1.4499000310897827, -1.2641491889953613, -0.7538554668426514, 0.12037049978971481, -1.0210778713226318, 0.3524637520313263, -0.2844425439834595, 0.6290494203567505, -1.7868269681930542, 1.4802745580673218, 2.3683743476867676, -1.447191596031189, -2.4625940322875977, 0.6180524230003357, -0.7960416674613953, -0.27278658747673035, -3.0797150135040283, -0.2893960773944855, 0.11687430739402771, 0.7664381861686707, -0.881788969039917, 1.4152023792266846, 0.5950102210044861, 0.30437198281288147, -0.7703455686569214, 0.5413835644721985, -0.11976253986358643, 0.3811129033565521, -0.099381223320961, -0.28029441833496094, 1.1061912775039673, 0.6079587340354919, -0.8456883430480957, 1.4095165729522705, 0.7427650094032288, -1.4842443466186523, 0.6761212348937988, 2.3842358589172363, -0.35593366622924805, -0.21397455036640167, -0.3747510015964508, 1.1568611860275269, -0.7179358005523682, 0.39342018961906433, 0.5930956602096558, 0.8262775540351868, 1.6693724393844604, 0.22015991806983948, -0.6031453609466553, 1.352033257484436, -0.24211859703063965, -0.16302847862243652, 2.2638816833496094, 0.03343234211206436, 1.2459864616394043, -0.8429142236709595, -0.5857337117195129, 0.07783125340938568, -0.35502395033836365, 0.19397594034671783, 0.6780847907066345, -0.04948761314153671, -0.9298439621925354, 0.5279631614685059, 0.3622046709060669, 0.28713664412498474, -0.25562095642089844, 1.2184804677963257, -1.6052736043930054, 0.9532480835914612, 0.45452257990837097, -0.38842472434043884, -0.006405096035450697, -0.9376088380813599, 0.6135331988334656, -3.0694382190704346, 1.1164488792419434, 1.2821712493896484, 0.3289121985435486, -0.8541377782821655, 0.8249086141586304, -0.3968650996685028, -0.8550050258636475, 0.2103540003299713, 0.45109736919403076, -0.6280680894851685, 0.45934367179870605, -0.7092970013618469, -1.2273815870285034, 1.5187644958496094, -0.022873690351843834, -0.9648996591567993, -0.2688866853713989, 0.5652855634689331, -0.3914962112903595, -0.5989457368850708, 0.3981108069419861, 1.1990703344345093, -1.451075792312622, 0.4687314033508301, -0.2598186731338501, 2.754503011703491, -0.2246786206960678, 0.7379858493804932, 1.102182149887085, -0.18536272644996643, 0.8525550365447998, 0.9927177429199219, 0.18266592919826508, 0.07827147096395493, -0.11832324415445328, -1.00912344455719, 0.7463313937187195, -1.5848311185836792, 1.0448790788650513, 0.2303203046321869, 0.27735233306884766, -0.7516228556632996, 1.1000455617904663, -0.16407568752765656, 1.6512234210968018, -0.05704633891582489, 1.2003602981567383, 0.3855394721031189, -0.34541136026382446, 0.06779215484857559, -0.29385682940483093, -0.22791065275669098, 0.6305646896362305, 0.46661242842674255, 0.45257386565208435, -1.961783766746521, -1.2875338792800903, 0.28593558073043823, -1.1034910678863525, -0.7314218282699585, 0.7221606969833374, -0.2703985571861267, 0.15881012380123138, 1.6184247732162476, 1.9444224834442139, 1.3663417100906372, 1.7966240644454956, 1.217513084411621, -1.524390697479248, -1.6368749141693115, -0.339287668466568, 0.36861076951026917, 0.27068108320236206, -0.004763966426253319, -0.8206278085708618, 0.2642582952976227, 0.830987274646759, -0.24780115485191345, -0.395982950925827, -0.5469847917556763, -0.49853599071502686, -0.1282723844051361, -1.1330530643463135, 0.4638722538948059, -0.46494755148887634, 1.869948387145996, 0.9248294234275818, 2.3674490451812744, 0.4671420156955719, -1.0001152753829956, 0.08872706443071365, -0.3394630551338196, -0.6490975022315979, 0.21231195330619812, -0.8640429377555847, 0.469379723072052, 1.5876632928848267, 0.813019335269928, -1.2689772844314575, 0.14312298595905304, 0.7510524392127991, -2.0299551486968994, -1.118262767791748, -2.062974214553833, 0.5400069355964661, -0.6291850209236145, 0.4399167597293854, 0.15984955430030823, 0.3881300687789917, 0.5667953491210938, -0.15182919800281525, 1.1332385540008545, -1.0114370584487915, 0.407143771648407, 0.0, 2.030656337738037, -0.252786785364151, 1.471670150756836, -1.8260318040847778, 1.7738840579986572, -1.1361514329910278, -1.5871145725250244, 0.7881421446800232, -0.4645939767360687, 1.0689646005630493, -0.26794689893722534, -0.1148165911436081, -0.685295045375824, -0.05349047854542732, 1.0644704103469849, -0.7206065058708191, -1.1226963996887207, 0.20150214433670044, 0.30059677362442017, 0.5959253907203674, -0.017842909321188927, 2.019711971282959, 0.715336799621582, -1.0456100702285767, 0.6837994456291199, 1.6856242418289185, 0.3134949505329132, 0.13127368688583374, 1.5372099876403809, -1.9621607065200806, 0.4833222031593323]
}
},
"bias": { "shape": [32], "dtype": "float32", "data": { "kind": "constant", "value": -1.1483134031295776 } }
},
"outputs": { "Y": { "shape": [64, 32], "dtype": "float32", "tolerance": 0.00002, "relTolerance": 0.0002 } }
},
{
"name": "matrix_f32_cancellation_m64_k1024_n32",
"provenance": {
"notes": "Preserves a cancellation-sensitive dot product from gemmfastgelu-bert-large-b4-s512-h1024-i4096, output row 133, column 2544. A K+1 weight cycle maps it to column zero of a complete matrix tile. Four K streams and pairwise publication must meet the existing f32 tolerance."
},
"inputs": {
"X": {
"shape": [64, 1024],
"dtype": "float32",
"data": {
"kind": "cycle",
"values": [-0.4390449523925781, 0.4578593671321869, -1.9082304239273071, 0.20048534870147705, 1.0934422016143799, -1.6526402235031128, 0.2037719190120697, 2.054558277130127, 1.0579782724380493, 0.11779297888278961, -1.0576995611190796, -2.4516358375549316, 2.7896993160247803, 0.9682255387306213, 1.2608747482299805, -0.5670865774154663, -0.13715365529060364, 1.538578748703003, 2.208970546722412, 0.019518528133630753, -0.5479378700256348, -0.03153268247842789, -2.216197967529297, 0.38968831300735474, -1.268197774887085, 0.10209512710571289, 1.0500389337539673, -0.9956088662147522, -1.854233980178833, 0.17967431247234344, -0.31132015585899353, 1.0448895692825317, 1.1277061700820923, -0.5820652842521667, -0.6453109383583069, -0.12940452992916107, 0.007301886100322008, -1.2859200239181519, -0.4825427234172821, 1.0099014043807983, -0.5152175426483154, -0.7882548570632935, -0.5646405816078186, 0.04095747321844101, 0.41535285115242004, -1.1000412702560425, 0.9144860506057739, -0.05784488469362259, -1.1118501424789429, 1.2069662809371948, -0.914728045463562, 1.2787901163101196, 1.2374943494796753, -0.31638747453689575, 0.05276679992675781, 0.41316989064216614, -0.5742095708847046, -1.9612375497817993, -1.479305624961853, 2.0598766803741455, -0.9822801351547241, 0.19251488149166107, 0.831893801689148, -0.06835635006427765, -0.46651312708854675, 1.0177743434906006, 0.9072214365005493, -0.07300378382205963, -1.8611533641815186, 0.595057487487793, -0.08250119537115097, 1.0454829931259155, -1.2537710666656494, -0.6756707429885864, -0.7554843425750732, 1.3713150024414062, 0.022949611768126488, 1.6283395290374756, -1.019579529762268, -1.2610740661621094, 1.2593013048171997, 0.2639922797679901, -1.4647479057312012, -0.9731118679046631, -0.1476033478975296, 0.4392574429512024, -2.404478073120117, -0.5867781639099121, -1.7229723930358887, -0.6472306847572327, 0.4273086190223694, 0.21332447230815887, 0.026039496064186096, -0.9518368244171143, 0.45875829458236694, 0.44668707251548767, -0.5047950744628906, 0.14147841930389404, 0.5094079971313477, -0.6926630735397339, 1.3520936965942383, -0.008418730460107327, 0.06938816606998444, 0.13106033205986023, 0.6461202502250671, -0.17591187357902527, -0.1915716975927353, 0.8848995566368103, -0.35607975721359253, -1.4764939546585083, 0.8796610832214355, 0.35666921734809875, 0.9937613606452942, 0.32656872272491455, -2.262439489364624, 0.4921298623085022, -1.4913092851638794, 0.10127381980419159, -0.4953964650630951, 0.13644960522651672, 0.9551848769187927, -0.48842987418174744, 0.6583890318870544, 1.1861275434494019, -0.9057134389877319, 0.1036674752831459, 1.0327425003051758, 1.3703429698944092, -0.4017878770828247, 1.8098082542419434, -1.050066590309143, -0.24900192022323608, -0.5378965139389038, 1.610492467880249, 0.8366854190826416, -0.31299418210983276, -0.4205420911312103, -1.2937893867492676, -0.8914919495582581, 0.3995376229286194, 0.7960665225982666, 1.0827312469482422, 1.3653838634490967, 0.4964633882045746, -0.7962945699691772, -1.3379982709884644, -0.5773510336875916, 2.888180732727051, -0.16234037280082703, 0.28419366478919983, 1.1591134071350098, 0.7286837697029114, 0.2791430354118347, 1.2246490716934204, -2.6142849922180176, -0.16272912919521332, 0.4309428632259369, -1.336834192276001, -0.28081709146499634, -1.1367387771606445, 1.3407533168792725, -0.35416945815086365, -0.2502307593822479, 0.21227937936782837, -0.026070130988955498, -0.07928523421287537, 0.8146514296531677, -1.6661028861999512, 0.3643961250782013, -0.07513070106506348, -0.6268121600151062, -0.8468735814094543, 0.013839195482432842, -0.2576294541358948, -0.5143290162086487, 0.9486032128334045, -0.11894077062606812, 0.8313471674919128, -0.06040050461888313, 0.5108632445335388, 0.08705445379018784, 0.10573471337556839, 1.527756929397583, -0.05907360836863518, 0.23836329579353333, -1.2721055746078491, -0.47618886828422546, -1.8970831632614136, 1.1237624883651733, 1.8597575426101685, 0.7992780208587646, 0.4966773986816406, 1.8753936290740967, 0.3455692231655121, 0.6292749047279358, -0.2810533344745636, -0.7364094257354736, 0.7063794136047363, 1.0092073678970337, 0.7127305865287781, 0.5951760411262512, 0.11166021227836609, 1.5380194187164307, -0.7999170422554016, -1.2918492555618286, -0.22141195833683014, 0.9238612651824951, 0.8801859617233276, 0.06667086482048035, 0.28208473324775696, 0.7268404960632324, 0.056553129106760025, 0.6828601956367493, 0.16801489889621735, -0.9166112542152405, 0.3580338954925537, -0.6110641360282898, -0.1152690201997757, -1.0245089530944824, -0.5762565732002258, 0.3643874526023865, -1.6199707984924316, 0.05464227497577667, 1.1108747720718384, 1.3548634052276611, 1.3560463190078735, -0.5175734758377075, 0.24597012996673584, 1.128390908241272, 0.23956824839115143, -0.5142529010772705, -1.2505981922149658, -0.8104821443557739, -0.2954906225204468, -1.7207062244415283, -1.105440378189087, -0.661304235458374, -0.04587406665086746, -0.06071409210562706, -1.1073083877563477, 0.056832730770111084, 0.28468626737594604, 2.0531258583068848, 0.625700056552887, -0.08156391978263855, -0.1332257241010666, 0.5781481266021729, 0.2535783648490906, 0.48758888244628906, 0.2035021334886551, 0.8970362544059753, -0.3532654047012329, 0.06066964566707611, 1.4550697803497314, 0.25824397802352905, 0.7177714705467224, -0.7700801491737366, -1.5054854154586792, 1.2075073719024658, -1.3604663610458374, -0.47381463646888733, -0.36798906326293945, 0.361700177192688, -1.216645359992981, 1.1240330934524536, -1.530188798904419, 1.1179865598678589, 0.37754082679748535, -1.621819257736206, 1.3233259916305542, 0.14402657747268677, 1.8605705499649048, 0.2529210150241852, 1.2048850059509277, 1.2286759614944458, -0.3525753617286682, -0.2856387495994568, -1.1717523336410522, 0.9184089303016663, 2.0104317665100098, -1.1233136653900146, -0.9056358337402344, -0.1592082530260086, -1.7421650886535645, 0.9075419306755066, -1.2303593158721924, 0.4644774794578552, -0.3143843710422516, 0.1674731969833374, 0.01570250652730465, 0.2729869484901428, 0.010820223018527031, -0.2581636607646942, -0.956019937992096, 0.5542950630187988, -0.4145951271057129, -0.09648951888084412, 0.872512936592102, -0.8088514804840088, 0.42603662610054016, -0.6164386868476868, 0.9041747450828552, -2.309657335281372, 2.4359307289123535, 0.8309921026229858, 0.052391402423381805, -0.4560976028442383, -0.6719871759414673, -2.009946823120117, -0.32252591848373413, 1.7766027450561523, -0.16941042244434357, 1.4090898036956787, -1.6330454349517822, 0.7558287978172302, -1.9775272607803345, -0.7967908978462219, -1.3694876432418823, 1.1315360069274902, 0.5441145896911621, 0.04244190454483032, 0.5585454106330872, 0.13438355922698975, 0.7978125214576721, 1.415589690208435, 1.1833008527755737, -1.063401699066162, -0.5917341113090515, -1.1343624591827393, -0.46514663100242615, 0.991918683052063, 2.6646671295166016, -1.9521502256393433, -1.2111328840255737, 0.6772776246070862, 0.6285480856895447, 0.22901354730129242, -1.6859382390975952, 1.2932603359222412, 0.4746435284614563, 0.22067148983478546, 0.06931579113006592, -0.1790522187948227, 1.100738763809204, 0.6646274924278259, -0.4628852307796478, -3.0996992588043213, 0.6946662664413452, 0.10964863747358322, 0.2882843613624573, -0.501373291015625, 2.208188533782959, 0.387285053730011, -0.40478888154029846, -0.06979026645421982, 0.457411527633667, -1.6600570678710938, 2.4696877002716064, -0.03468545898795128, -0.33064141869544983, -2.135211706161499, -0.30414634943008423, 0.1450977623462677, -1.3135160207748413, -1.4922280311584473, 0.6595475673675537, -1.8402067422866821, -0.08283215016126633, -0.13346058130264282, -1.542087435722351, -0.5534184575080872, 1.110975980758667, -2.0393407344818115, -0.29871508479118347, -0.24333123862743378, 2.4975457191467285, -1.2247649431228638, -1.8416284322738647, -0.6853077411651611, 0.822330892086029, -0.43054550886154175, 0.29430118203163147, 0.3230009973049164, -0.9084115624427795, -0.7302639484405518, -0.5753251314163208, 1.0334327220916748, 1.033567190170288, -1.2738922834396362, 1.1001169681549072, 1.132369041442871, 0.2264639139175415, -0.3732086718082428, 0.613735020160675, -0.6456764340400696, 0.8025223016738892, -2.1324524879455566, 0.6066908836364746, -0.889577329158783, 0.3790206015110016, 0.2232036143541336, 2.1650211811065674, 0.6725216507911682, 0.26515698432922363, 0.1689072549343109, 0.1643010675907135, 3.5472261905670166, 0.25065526366233826, 0.40886348485946655, -0.8949549794197083, 1.2986598014831543, -2.0548415184020996, -0.8001110553741455, 0.526810884475708, -0.3546132743358612, 0.31180834770202637, -2.789613723754883, -1.5460604429244995, 1.4884775876998901, -1.3555974960327148, 1.3273227214813232, -1.351338505744934, 0.20785699784755707, -0.6083062291145325, -1.3398871421813965, -0.38069209456443787, 0.32107242941856384, 0.30781078338623047, -0.7805135846138, 1.4882091283798218, -0.9017038345336914, 0.01871272176504135, -0.45617935061454773, -0.2943432629108429, 0.5805054903030396, 0.21129204332828522, -0.2600267827510834, 0.08043968677520752, -0.11394677311182022, -0.8518847823143005, 1.006891131401062, 0.37467652559280396, -0.39570292830467224, -1.5405683517456055, -0.9171997308731079, 0.2854865491390228, -1.2377960681915283, -0.15242896974086761, 1.1445906162261963, -0.1402343213558197, -1.291113018989563, 0.6564630270004272, -1.5414522886276245, 0.7210084199905396, 0.7450159788131714, 1.0066784620285034, -0.8125203847885132, -1.4234635829925537, -0.9351810216903687, -0.13527216017246246, 0.5748065710067749, -1.5819123983383179, 0.2571755647659302, -1.283014178276062, 1.749363899230957, -1.1799134016036987, -0.9826760292053223, 0.9448884129524231, -0.19476088881492615, -0.7274908423423767, -0.3540734052658081, -0.12956681847572327, -0.30470240116119385, 0.2043224722146988, -1.164790391921997, 0.11926058679819107, -2.1244466304779053, -1.4468631744384766, -0.05681171268224716, -0.65798020362854, 0.893171489238739, -0.8371981978416443, -0.0762968435883522, -0.8024131655693054, 0.22979383170604706, -0.3956544101238251, 0.25789716839790344, 0.6803559064865112, -0.943427562713623, -0.22850769758224487, 0.4091034531593323, 1.813409447669983, -0.7564865946769714, -1.4271962642669678, -0.4955710768699646, 0.20168639719486237, -0.23685529828071594, 0.7910938262939453, 1.5221095085144043, 1.8870611190795898, -0.6206229329109192, 0.5732155442237854, -1.2688568830490112, 0.04813774302601814, 1.2484406232833862, 0.4657142162322998, 0.3533395528793335, 0.7585102319717407, 0.9302514791488647, -0.8028684854507446, 0.10486545413732529, -0.24781158566474915, -0.03016345575451851, 0.04188348352909088, -1.728256344795227, 1.9024467468261719, -0.9808909296989441, -0.38628241419792175, 0.24724425375461578, 1.1027379035949707, -0.4943407475948334, -2.043137311935425, 0.5076162219047546, 0.6631451845169067, -2.1337709426879883, 0.09285237640142441, 0.4235441982746124, -0.019878685474395752, -0.3431539535522461, -0.37498199939727783, 0.5388070940971375, -0.863425612449646, 0.20420986413955688, 1.0992834568023682, -0.31861940026283264, -1.6834086179733276, -0.9018343687057495, 1.602209210395813, -0.41113561391830444, 0.3037055730819702, -0.10488013923168182, 0.2249065488576889, -1.1665016412734985, -1.0656050443649292, 0.8934797644615173, 0.09722696989774704, 0.4640912413597107, -0.03547357767820358, -1.7226519584655762, 1.0559784173965454, 0.0691399797797203, -1.1524838209152222, 0.33586516976356506, 1.9003101587295532, -0.08983036130666733, -0.7788056135177612, 1.0482189655303955, -0.08769520372152328, -0.48932573199272156, -0.06809496134519577, -0.356268048286438, 1.1602146625518799, 0.8860874772071838, -1.188490629196167, -0.9986705780029297, 1.1956485509872437, 0.13052773475646973, -1.5232155323028564, -1.2289977073669434, -1.118549108505249, -1.346514105796814, 0.8240634799003601, -2.3203039169311523, 1.2308529615402222, -0.949146032333374, 1.0792250633239746, 1.2932339906692505, 1.0937868356704712, -0.5991368889808655, -1.3694136142730713, 0.19584012031555176, 0.3550611138343811, 1.3113425970077515, 1.8717658519744873, -0.45046940445899963, 2.423215389251709, 0.8278030753135681, 0.4849054217338562, 1.1095689535140991, 0.18377070128917694, 0.9129244685173035, -2.2426576614379883, 2.329646110534668, -1.247118353843689, -1.722731113433838, 0.7267256379127502, -0.21749407052993774, -1.9337712526321411, 0.08491533249616623, 1.167306661605835, -1.6904526948928833, -0.5755226016044617, 0.1796204149723053, -1.620505452156067, -0.6610960364341736, 0.22823402285575867, 0.22213269770145416, -0.8076850175857544, 0.46082139015197754, 1.3634085655212402, 1.1484330892562866, 0.7326651811599731, 0.42145824432373047, -0.242427796125412, 0.9661123156547546, 1.50788152217865, 0.648362398147583, 0.8091520667076111, -0.6446389555931091, 0.7339139580726624, 0.32902151346206665, -0.8341042399406433, 0.8036097288131714, -0.19167502224445343, -0.79872727394104, -0.12086724489927292, -1.2579271793365479, -2.113445520401001, 0.9735541343688965, 0.572425365447998, 0.7064437866210938, -0.42563673853874207, -0.907877504825592, -1.5059975385665894, -0.9213101267814636, 0.4166634678840637, -0.7529929280281067, 0.15711373090744019, 0.2562642991542816, 0.6718980669975281, -0.23489393293857574, -2.350555896759033, -0.5715276002883911, -1.1108604669570923, -1.0084872245788574, -0.19425535202026367, 0.6787561178207397, 0.9882529973983765, 0.9234234690666199, 1.2668882608413696, -0.7668682932853699, 0.4182693064212799, -0.2886195182800293, -0.29804322123527527, -1.0509923696517944, 1.0560635328292847, 0.6699857711791992, -0.41846799850463867, 2.5157294273376465, 2.4734320640563965, -1.1092631816864014, 1.2048720121383667, 0.6492672562599182, -1.1772629022598267, -0.3373529016971588, 0.9141387939453125, -0.8681172728538513, 0.3102300763130188, -0.9596893787384033, 1.5819575786590576, 1.1552314758300781, -0.2541234791278839, 0.6965147852897644, -0.2016068547964096, -0.10071151703596115, -0.29853180050849915, -1.0038175582885742, 1.7011208534240723, -0.8100517392158508, 0.6922491788864136, 1.7151353359222412, 0.54633629322052, -1.3491626977920532, 1.8166179656982422, -0.3844129741191864, -0.4292525053024292, -1.2570688724517822, 0.6327447295188904, -1.8597997426986694, -1.0474497079849243, 1.2140098810195923, -1.4473779201507568, -0.13283854722976685, -0.492304265499115, 0.14333386719226837, -0.1333296000957489, -0.26011383533477783, 1.3051550388336182, 0.18518662452697754, -0.7999930381774902, -0.4859373867511749, 0.48660582304000854, -0.9540421366691589, 0.30392178893089294, -0.5760157108306885, -0.7557294368743896, -0.4067508280277252, 0.4494321942329407, 1.133857011795044, 1.7765610218048096, -0.7496927976608276, -0.5139769911766052, 0.6117793321609497, 1.8664122819900513, 0.6859534978866577, 1.7497063875198364, 0.6397337913513184, -0.6660550236701965, 1.4581372737884521, -1.0247024297714233, 0.4253670871257782, 2.4748923778533936, 1.789588212966919, -0.20108795166015625, 0.30176854133605957, -0.42197737097740173, 0.5228555798530579, -0.8174341917037964, -0.6238853931427002, -0.161124125123024, 1.0398887395858765, 0.3301776051521301, 0.8365090489387512, 0.4058687090873718, -0.2911580204963684, -2.652035713195801, -0.3030639588832855, -0.6423511505126953, 0.4265022873878479, -0.7947471737861633, 0.6849430203437805, 0.058502402156591415, -0.34462329745292664, -1.4680942296981812, 0.453345388174057, 0.13935159146785736, -0.8583120107650757, 0.5431737899780273, -0.7251757979393005, -0.35351282358169556, -0.7070931196212769, 0.11736205965280533, 1.6478363275527954, -1.6243820190429688, -0.6470739841461182, 0.5573428869247437, -0.49251240491867065, 1.8140314817428589, -0.7066953778266907, 0.6430141925811768, 0.9932474493980408, 0.3270227909088135, 1.6159083843231201, -0.5499474406242371, 1.170095682144165, 0.6144183278083801, -0.4650322496891022, 0.2933308184146881, 0.5205734968185425, 0.5847679376602173, -0.3770778775215149, 0.35136866569519043, -0.7384431958198547, 0.3226196765899658, -0.3825448155403137, -0.3794841468334198, -0.2721696197986603, -0.24670951068401337, 0.5414999127388, -0.40639349818229675, 0.241244837641716, -0.7227188348770142, 0.5891237854957581, 0.6537192463874817, 0.4471038579940796, 0.3698846399784088, -1.1333366632461548, 0.87086421251297, 0.07988748699426651, -1.291318416595459, -0.08624851703643799, -0.7611875534057617, 0.5394230484962463, 1.234084129333496, -0.5607163310050964, 0.1711314469575882, 0.5605337023735046, -1.1385523080825806, -2.875429630279541, 1.102595567703247, 0.8287355899810791, -0.2059948444366455, -0.2878708243370056, 0.7240510582923889, -2.4582066535949707, 0.7397540211677551, 1.0730875730514526, 0.6814654469490051, 0.12868396937847137, -0.9571152329444885, 2.851224899291992, 0.33994439244270325, 0.8518175482749939, -1.5412187576293945, 1.6565176248550415, -0.16907291114330292, -0.0524958111345768, -0.32847532629966736, -0.08066196739673615, 1.309217929840088, -1.291025996208191, -1.1166776418685913, -1.2159188985824585, -2.0063557624816895, -0.7809146046638489, 0.23445457220077515, 0.5637800097465515, 1.4294945001602173, 0.049158576875925064, 1.2196089029312134, 2.1938555240631104, -1.0720371007919312, -0.8218469023704529, 0.6280898451805115, 0.0430205874145031, 0.6211613416671753, 0.03751002624630928, 0.9452076554298401, -0.3103291690349579, -0.3983604311943054, -0.19944506883621216, -0.2754276692867279, 0.9214750528335571, -0.22038224339485168, -0.008543498814105988, 1.065897822380066, -1.096288800239563, 0.7120852470397949, 0.8074575662612915, 1.0632975101470947, -0.15480449795722961, -1.0268151760101318, 1.382562518119812, 0.516000509262085, -2.6684718132019043, -1.4732130765914917, 2.268096446990967, 0.1683693677186966, 2.2642054557800293, 0.0709059089422226, 0.19884297251701355, -0.29653239250183105, 0.0015111262910068035, -1.521423578262329, 0.24791289865970612, 0.8105970025062561, -1.6411648988723755, 1.5566248893737793, -0.8917908072471619, -1.4943444728851318, -0.05979491397738457, -0.12044426798820496, -1.2588648796081543, -0.5003945827484131, -0.9125747680664062, 0.614969789981842, -0.19918425381183624, -0.7343922853469849, -0.05452847108244896, 1.0120165348052979, -0.09365356713533401, -0.5503045320510864, -0.4939090311527252, -0.05039289966225624, -0.04877417907118797, -0.5604723691940308, 1.1984659433364868, 0.8731496334075928, 2.061896800994873, 0.5389264822006226, -0.7497500777244568, -0.21735714375972748, 1.3325591087341309, -0.8028469085693359, 0.16650840640068054, 0.686805009841919, -1.0887242555618286, -0.3641134798526764, 0.3203340768814087, 0.8104425072669983, 0.1659965068101883, 1.158190369606018, -0.6952397227287292, 1.0450609922409058, 0.44148772954940796, 0.625637412071228, -1.4906294345855713, 0.6868816614151001, -1.4785828590393066, -0.09569819271564484, -0.49627771973609924, -0.004115864634513855, -2.5510292053222656, -1.14696204662323, 0.28088051080703735, -0.325268417596817, -0.11399021744728088, -1.47939133644104, -2.049766778945923, -1.2405288219451904, 0.023791668936610222, 1.1180537939071655, 1.1154744625091553, 1.000454306602478, -0.5981010794639587, 0.2345358431339264, 0.6266506910324097, -0.18733082711696625, 0.8936261534690857, 0.9409686326980591, 0.5179328322410583, 1.7288795709609985, -0.6932452917098999, 0.18951591849327087, 0.2628488540649414, 0.03426350653171539, -1.9136146306991577, 0.6691701412200928, -0.5418149828910828, 0.4709836542606354, 0.766100287437439, 0.6527997851371765, 1.639771819114685, -0.6562944650650024, -0.7504593729972839, -0.5616392493247986, 1.4185988903045654, 0.8796340823173523, -1.8933041095733643, 0.38402408361434937, 1.5066404342651367, -0.16594325006008148, -0.5360496044158936, -1.1883035898208618, -0.8664161562919617, -1.184114694595337, 0.2176925390958786, 1.174725890159607, -1.2616357803344727, -1.344993233680725, -0.30750295519828796, -0.8730626702308655, -0.5804020762443542, -1.2979854345321655, -0.19788606464862823, 0.6040531992912292, 0.5999839305877686, -0.9942057132720947, -1.403210163116455, -0.22139693796634674, -0.4516730308532715, 0.9412407279014587, 1.2086195945739746, 0.4211587905883789, 0.01438202429562807, -0.7303425669670105, -0.3145166039466858, -0.8771759867668152, -1.4186227321624756, 0.09375886619091034, -0.2472442239522934, 1.7676836252212524, -0.30591651797294617, 1.1366560459136963, 0.565122663974762, 1.0444090366363525, -0.7260221838951111, -0.26312845945358276, -1.3732482194900513, 0.032974857836961746, -1.0825544595718384, 0.6615331768989563, -1.1952353715896606, 2.262660026550293, -1.680080533027649, 0.3472538888454437, -0.6064134240150452, 0.6637445092201233, -0.6603138446807861, 3.005392551422119, -0.9155724048614502, -0.050473641604185104, 0.46635645627975464, -0.4461624026298523, -0.9593437910079956, -0.32928040623664856, -0.23876333236694336, -0.6533202528953552, -0.4475998282432556, 0.6006292700767517, -0.002981230616569519, 1.828721284866333, 0.3436667025089264, 1.3162237405776978, -0.831800639629364, -0.8867538571357727, 0.5670043230056763, -1.8632159233093262, 0.7205451726913452, -2.214540958404541, -0.5459018349647522, 0.3649768531322479, 0.38830095529556274, 0.941007137298584]
}
},
"W": {
"shape": [1024, 32],
"dtype": "float32",
"data": {
"kind": "cycle",
"values": [-0.6036444902420044, 0.3870279788970947, -0.015722855925559998, 0.3870279788970947, -0.015722855925559998, 0.3870279788970947, -0.015722855925559998, 0.3870279788970947, -0.015722855925559998, 0.3870279788970947, -0.015722855925559998, 0.3870279788970947, -0.015722855925559998, 0.3870279788970947, -0.015722855925559998, 0.3870279788970947, -0.015722855925559998, 0.3870279788970947, -0.015722855925559998, 0.3870279788970947, -0.015722855925559998, 0.3870279788970947, -0.015722855925559998, 0.3870279788970947, -0.015722855925559998, 0.3870279788970947, -0.015722855925559998, 0.3870279788970947, -0.015722855925559998, 0.3870279788970947, -0.015722855925559998, 0.3870279788970947, -0.015722855925559998, 1.2014878988265991, -1.1594589948654175, 1.2014878988265991, -1.1594589948654175, 1.2014878988265991, -1.1594589948654175, 1.2014878988265991, -1.1594589948654175, 1.2014878988265991, -1.1594589948654175, 1.2014878988265991, -1.1594589948654175, 1.2014878988265991, -1.1594589948654175, 1.2014878988265991, -1.1594589948654175, 1.2014878988265991, -1.1594589948654175, 1.2014878988265991, -1.1594589948654175, 1.2014878988265991, -1.1594589948654175, 1.2014878988265991, -1.1594589948654175, 1.2014878988265991, -1.1594589948654175, 1.2014878988265991, -1.1594589948654175, 1.2014878988265991, -1.1594589948654175, 1.2014878988265991, -1.1594589948654175, 0.6915572285652161, -1.2067219018936157, 0.6915572285652161, -1.2067219018936157, 0.6915572285652161, -1.2067219018936157, 0.6915572285652161, -1.2067219018936157, 0.6915572285652161, -1.2067219018936157, 0.6915572285652161, -1.2067219018936157, 0.6915572285652161, -1.2067219018936157, 0.6915572285652161, -1.2067219018936157, 0.6915572285652161, -1.2067219018936157, 0.6915572285652161, -1.2067219018936157, 0.6915572285652161, -1.2067219018936157, 0.6915572285652161, -1.2067219018936157, 0.6915572285652161, -1.2067219018936157, 0.6915572285652161, -1.2067219018936157, 0.6915572285652161, -1.2067219018936157, 0.6915572285652161, -1.2067219018936157, 0.04086241126060486, -0.5796831250190735, 0.04086241126060486, -0.5796831250190735, 0.04086241126060486, -0.5796831250190735, 0.04086241126060486, -0.5796831250190735, 0.04086241126060486, -0.5796831250190735, 0.04086241126060486, -0.5796831250190735, 0.04086241126060486, -0.5796831250190735, 0.04086241126060486, -0.5796831250190735, 0.04086241126060486, -0.5796831250190735, 0.04086241126060486, -0.5796831250190735, 0.04086241126060486, -0.5796831250190735, 0.04086241126060486, -0.5796831250190735, 0.04086241126060486, -0.5796831250190735, 0.04086241126060486, -0.5796831250190735, 0.04086241126060486, -0.5796831250190735, 0.04086241126060486, -0.5796831250190735, -0.9735771417617798, -0.5552681088447571, -0.9735771417617798, -0.5552681088447571, -0.9735771417617798, -0.5552681088447571, -0.9735771417617798, -0.5552681088447571, -0.9735771417617798, -0.5552681088447571, -0.9735771417617798, -0.5552681088447571, -0.9735771417617798, -0.5552681088447571, -0.9735771417617798, -0.5552681088447571, -0.9735771417617798, -0.5552681088447571, -0.9735771417617798, -0.5552681088447571, -0.9735771417617798, -0.5552681088447571, -0.9735771417617798, -0.5552681088447571, -0.9735771417617798, -0.5552681088447571, -0.9735771417617798, -0.5552681088447571, -0.9735771417617798, -0.5552681088447571, -0.9735771417617798, -0.5552681088447571, 0.4729589819908142, 0.7946738004684448, 0.4729589819908142, 0.7946738004684448, 0.4729589819908142, 0.7946738004684448, 0.4729589819908142, 0.7946738004684448, 0.4729589819908142, 0.7946738004684448, 0.4729589819908142, 0.7946738004684448, 0.4729589819908142, 0.7946738004684448, 0.4729589819908142, 0.7946738004684448, 0.4729589819908142, 0.7946738004684448, 0.4729589819908142, 0.7946738004684448, 0.4729589819908142, 0.7946738004684448, 0.4729589819908142, 0.7946738004684448, 0.4729589819908142, 0.7946738004684448, 0.4729589819908142, 0.7946738004684448, 0.4729589819908142, 0.7946738004684448, 0.4729589819908142, 0.7946738004684448, 0.43994107842445374, 0.270794153213501, 0.43994107842445374, 0.270794153213501, 0.43994107842445374, 0.270794153213501, 0.43994107842445374, 0.270794153213501, 0.43994107842445374, 0.270794153213501, 0.43994107842445374, 0.270794153213501, 0.43994107842445374, 0.270794153213501, 0.43994107842445374, 0.270794153213501, 0.43994107842445374, 0.270794153213501, 0.43994107842445374, 0.270794153213501, 0.43994107842445374, 0.270794153213501, 0.43994107842445374, 0.270794153213501, 0.43994107842445374, 0.270794153213501, 0.43994107842445374, 0.270794153213501, 0.43994107842445374, 0.270794153213501, 0.43994107842445374, 0.270794153213501, 0.6166817545890808, -0.24430584907531738, 0.6166817545890808, -0.24430584907531738, 0.6166817545890808, -0.24430584907531738, 0.6166817545890808, -0.24430584907531738, 0.6166817545890808, -0.24430584907531738, 0.6166817545890808, -0.24430584907531738, 0.6166817545890808, -0.24430584907531738, 0.6166817545890808, -0.24430584907531738, 0.6166817545890808, -0.24430584907531738, 0.6166817545890808, -0.24430584907531738, 0.6166817545890808, -0.24430584907531738, 0.6166817545890808, -0.24430584907531738, 0.6166817545890808, -0.24430584907531738, 0.6166817545890808, -0.24430584907531738, 0.6166817545890808, -0.24430584907531738, 0.6166817545890808, -0.24430584907531738, 0.07140959799289703, -0.22107550501823425, 0.07140959799289703, -0.22107550501823425, 0.07140959799289703, -0.22107550501823425, 0.07140959799289703, -0.22107550501823425, 0.07140959799289703, -0.22107550501823425, 0.07140959799289703, -0.22107550501823425, 0.07140959799289703, -0.22107550501823425, 0.07140959799289703, -0.22107550501823425, 0.07140959799289703, -0.22107550501823425, 0.07140959799289703, -0.22107550501823425, 0.07140959799289703, -0.22107550501823425, 0.07140959799289703, -0.22107550501823425, 0.07140959799289703, -0.22107550501823425, 0.07140959799289703, -0.22107550501823425, 0.07140959799289703, -0.22107550501823425, 0.07140959799289703, -0.22107550501823425, 0.6598288416862488, -0.7258415222167969, 0.6598288416862488, -0.7258415222167969, 0.6598288416862488, -0.7258415222167969, 0.6598288416862488, -0.7258415222167969, 0.6598288416862488, -0.7258415222167969, 0.6598288416862488, -0.7258415222167969, 0.6598288416862488, -0.7258415222167969, 0.6598288416862488, -0.7258415222167969, 0.6598288416862488, -0.7258415222167969, 0.6598288416862488, -0.7258415222167969, 0.6598288416862488, -0.7258415222167969, 0.6598288416862488, -0.7258415222167969, 0.6598288416862488, -0.7258415222167969, 0.6598288416862488, -0.7258415222167969, 0.6598288416862488, -0.7258415222167969, 0.6598288416862488, -0.7258415222167969, 0.23199792206287384, -0.5380500555038452, 0.23199792206287384, -0.5380500555038452, 0.23199792206287384, -0.5380500555038452, 0.23199792206287384, -0.5380500555038452, 0.23199792206287384, -0.5380500555038452, 0.23199792206287384, -0.5380500555038452, 0.23199792206287384, -0.5380500555038452, 0.23199792206287384, -0.5380500555038452, 0.23199792206287384, -0.5380500555038452, 0.23199792206287384, -0.5380500555038452, 0.23199792206287384, -0.5380500555038452, 0.23199792206287384, -0.5380500555038452, 0.23199792206287384, -0.5380500555038452, 0.23199792206287384, -0.5380500555038452, 0.23199792206287384, -0.5380500555038452, 0.23199792206287384, -0.5380500555038452, 0.042672015726566315, 0.06454108655452728, 0.042672015726566315, 0.06454108655452728, 0.042672015726566315, 0.06454108655452728, 0.042672015726566315, 0.06454108655452728, 0.042672015726566315, 0.06454108655452728, 0.042672015726566315, 0.06454108655452728, 0.042672015726566315, 0.06454108655452728, 0.042672015726566315, 0.06454108655452728, 0.042672015726566315, 0.06454108655452728, 0.042672015726566315, 0.06454108655452728, 0.042672015726566315, 0.06454108655452728, 0.042672015726566315, 0.06454108655452728, 0.042672015726566315, 0.06454108655452728, 0.042672015726566315, 0.06454108655452728, 0.042672015726566315, 0.06454108655452728, 0.042672015726566315, 0.06454108655452728, 0.343997985124588, -1.1490201950073242, 0.343997985124588, -1.1490201950073242, 0.343997985124588, -1.1490201950073242, 0.343997985124588, -1.1490201950073242, 0.343997985124588, -1.1490201950073242, 0.343997985124588, -1.1490201950073242, 0.343997985124588, -1.1490201950073242, 0.343997985124588, -1.1490201950073242, 0.343997985124588, -1.1490201950073242, 0.343997985124588, -1.1490201950073242, 0.343997985124588, -1.1490201950073242, 0.343997985124588, -1.1490201950073242, 0.343997985124588, -1.1490201950073242, 0.343997985124588, -1.1490201950073242, 0.343997985124588, -1.1490201950073242, 0.343997985124588, -1.1490201950073242, -0.7391527891159058, -1.2345582246780396, -0.7391527891159058, -1.2345582246780396, -0.7391527891159058, -1.2345582246780396, -0.7391527891159058, -1.2345582246780396, -0.7391527891159058, -1.2345582246780396, -0.7391527891159058, -1.2345582246780396, -0.7391527891159058, -1.2345582246780396, -0.7391527891159058, -1.2345582246780396, -0.7391527891159058, -1.2345582246780396, -0.7391527891159058, -1.2345582246780396, -0.7391527891159058, -1.2345582246780396, -0.7391527891159058, -1.2345582246780396, -0.7391527891159058, -1.2345582246780396, -0.7391527891159058, -1.2345582246780396, -0.7391527891159058, -1.2345582246780396, -0.7391527891159058, -1.2345582246780396, 0.6565755605697632, -0.47634729743003845, 0.6565755605697632, -0.47634729743003845, 0.6565755605697632, -0.47634729743003845, 0.6565755605697632, -0.47634729743003845, 0.6565755605697632, -0.47634729743003845, 0.6565755605697632, -0.47634729743003845, 0.6565755605697632, -0.47634729743003845, 0.6565755605697632, -0.47634729743003845, 0.6565755605697632, -0.47634729743003845, 0.6565755605697632, -0.47634729743003845, 0.6565755605697632, -0.47634729743003845, 0.6565755605697632, -0.47634729743003845, 0.6565755605697632, -0.47634729743003845, 0.6565755605697632, -0.47634729743003845, 0.6565755605697632, -0.47634729743003845, 0.6565755605697632, -0.47634729743003845, -0.2817380428314209, -0.5669140815734863, -0.2817380428314209, -0.5669140815734863, -0.2817380428314209, -0.5669140815734863, -0.2817380428314209, -0.5669140815734863, -0.2817380428314209, -0.5669140815734863, -0.2817380428314209, -0.5669140815734863, -0.2817380428314209, -0.5669140815734863, -0.2817380428314209, -0.5669140815734863, -0.2817380428314209, -0.5669140815734863, -0.2817380428314209, -0.5669140815734863, -0.2817380428314209, -0.5669140815734863, -0.2817380428314209, -0.5669140815734863, -0.2817380428314209, -0.5669140815734863, -0.2817380428314209, -0.5669140815734863, -0.2817380428314209, -0.5669140815734863, -0.2817380428314209, -0.5669140815734863, 0.803704559803009, -0.07274369895458221, 0.803704559803009, -0.07274369895458221, 0.803704559803009, -0.07274369895458221, 0.803704559803009, -0.07274369895458221, 0.803704559803009, -0.07274369895458221, 0.803704559803009, -0.07274369895458221, 0.803704559803009, -0.07274369895458221, 0.803704559803009, -0.07274369895458221, 0.803704559803009, -0.07274369895458221, 0.803704559803009, -0.07274369895458221, 0.803704559803009, -0.07274369895458221, 0.803704559803009, -0.07274369895458221, 0.803704559803009, -0.07274369895458221, 0.803704559803009, -0.07274369895458221, 0.803704559803009, -0.07274369895458221, 0.803704559803009, -0.07274369895458221, -0.5434994697570801, -0.9788584113121033, -0.5434994697570801, -0.9788584113121033, -0.5434994697570801, -0.9788584113121033, -0.5434994697570801, -0.9788584113121033, -0.5434994697570801, -0.9788584113121033, -0.5434994697570801, -0.9788584113121033, -0.5434994697570801, -0.9788584113121033, -0.5434994697570801, -0.9788584113121033, -0.5434994697570801, -0.9788584113121033, -0.5434994697570801, -0.9788584113121033, -0.5434994697570801, -0.9788584113121033, -0.5434994697570801, -0.9788584113121033, -0.5434994697570801, -0.9788584113121033, -0.5434994697570801, -0.9788584113121033, -0.5434994697570801, -0.9788584113121033, -0.5434994697570801, -0.9788584113121033, 1.7443095445632935, 0.30160799622535706, 1.7443095445632935, 0.30160799622535706, 1.7443095445632935, 0.30160799622535706, 1.7443095445632935, 0.30160799622535706, 1.7443095445632935, 0.30160799622535706, 1.7443095445632935, 0.30160799622535706, 1.7443095445632935, 0.30160799622535706, 1.7443095445632935, 0.30160799622535706, 1.7443095445632935, 0.30160799622535706, 1.7443095445632935, 0.30160799622535706, 1.7443095445632935, 0.30160799622535706, 1.7443095445632935, 0.30160799622535706, 1.7443095445632935, 0.30160799622535706, 1.7443095445632935, 0.30160799622535706, 1.7443095445632935, 0.30160799622535706, 1.7443095445632935, 0.30160799622535706, -1.2192684412002563, 0.5923324823379517, -1.2192684412002563, 0.5923324823379517, -1.2192684412002563, 0.5923324823379517, -1.2192684412002563, 0.5923324823379517, -1.2192684412002563, 0.5923324823379517, -1.2192684412002563, 0.5923324823379517, -1.2192684412002563, 0.5923324823379517, -1.2192684412002563, 0.5923324823379517, -1.2192684412002563, 0.5923324823379517, -1.2192684412002563, 0.5923324823379517, -1.2192684412002563, 0.5923324823379517, -1.2192684412002563, 0.5923324823379517, -1.2192684412002563, 0.5923324823379517, -1.2192684412002563, 0.5923324823379517, -1.2192684412002563, 0.5923324823379517, -1.2192684412002563, 0.5923324823379517, -0.43178969621658325, -0.9958613514900208, -0.43178969621658325, -0.9958613514900208, -0.43178969621658325, -0.9958613514900208, -0.43178969621658325, -0.9958613514900208, -0.43178969621658325, -0.9958613514900208, -0.43178969621658325, -0.9958613514900208, -0.43178969621658325, -0.9958613514900208, -0.43178969621658325, -0.9958613514900208, -0.43178969621658325, -0.9958613514900208, -0.43178969621658325, -0.9958613514900208, -0.43178969621658325, -0.9958613514900208, -0.43178969621658325, -0.9958613514900208, -0.43178969621658325, -0.9958613514900208, -0.43178969621658325, -0.9958613514900208, -0.43178969621658325, -0.9958613514900208, -0.43178969621658325, -0.9958613514900208, -1.9403586387634277, -0.686921238899231, -1.9403586387634277, -0.686921238899231, -1.9403586387634277, -0.686921238899231, -1.9403586387634277, -0.686921238899231, -1.9403586387634277, -0.686921238899231, -1.9403586387634277, -0.686921238899231, -1.9403586387634277, -0.686921238899231, -1.9403586387634277, -0.686921238899231, -1.9403586387634277, -0.686921238899231, -1.9403586387634277, -0.686921238899231, -1.9403586387634277, -0.686921238899231, -1.9403586387634277, -0.686921238899231, -1.9403586387634277, -0.686921238899231, -1.9403586387634277, -0.686921238899231, -1.9403586387634277, -0.686921238899231, -1.9403586387634277, -0.686921238899231, -1.122006893157959, -0.41825905442237854, -1.122006893157959, -0.41825905442237854, -1.122006893157959, -0.41825905442237854, -1.122006893157959, -0.41825905442237854, -1.122006893157959, -0.41825905442237854, -1.122006893157959, -0.41825905442237854, -1.122006893157959, -0.41825905442237854, -1.122006893157959, -0.41825905442237854, -1.122006893157959, -0.41825905442237854, -1.122006893157959, -0.41825905442237854, -1.122006893157959, -0.41825905442237854, -1.122006893157959, -0.41825905442237854, -1.122006893157959, -0.41825905442237854, -1.122006893157959, -0.41825905442237854, -1.122006893157959, -0.41825905442237854, -1.122006893157959, -0.41825905442237854, -1.2768306732177734, 1.5603694915771484, -1.2768306732177734, 1.5603694915771484, -1.2768306732177734, 1.5603694915771484, -1.2768306732177734, 1.5603694915771484, -1.2768306732177734, 1.5603694915771484, -1.2768306732177734, 1.5603694915771484, -1.2768306732177734, 1.5603694915771484, -1.2768306732177734, 1.5603694915771484, -1.2768306732177734, 1.5603694915771484, -1.2768306732177734, 1.5603694915771484, -1.2768306732177734, 1.5603694915771484, -1.2768306732177734, 1.5603694915771484, -1.2768306732177734, 1.5603694915771484, -1.2768306732177734, 1.5603694915771484, -1.2768306732177734, 1.5603694915771484, -1.2768306732177734, 1.5603694915771484, 0.9239911437034607, 1.9807827472686768, 0.9239911437034607, 1.9807827472686768, 0.9239911437034607, 1.9807827472686768, 0.9239911437034607, 1.9807827472686768, 0.9239911437034607, 1.9807827472686768, 0.9239911437034607, 1.9807827472686768, 0.9239911437034607, 1.9807827472686768, 0.9239911437034607, 1.9807827472686768, 0.9239911437034607, 1.9807827472686768, 0.9239911437034607, 1.9807827472686768, 0.9239911437034607, 1.9807827472686768, 0.9239911437034607, 1.9807827472686768, 0.9239911437034607, 1.9807827472686768, 0.9239911437034607, 1.9807827472686768, 0.9239911437034607, 1.9807827472686768, 0.9239911437034607, 1.9807827472686768, -0.45168164372444153, 0.09208112210035324, -0.45168164372444153, 0.09208112210035324, -0.45168164372444153, 0.09208112210035324, -0.45168164372444153, 0.09208112210035324, -0.45168164372444153, 0.09208112210035324, -0.45168164372444153, 0.09208112210035324, -0.45168164372444153, 0.09208112210035324, -0.45168164372444153, 0.09208112210035324, -0.45168164372444153, 0.09208112210035324, -0.45168164372444153, 0.09208112210035324, -0.45168164372444153, 0.09208112210035324, -0.45168164372444153, 0.09208112210035324, -0.45168164372444153, 0.09208112210035324, -0.45168164372444153, 0.09208112210035324, -0.45168164372444153, 0.09208112210035324, -0.45168164372444153, 0.09208112210035324, 0.08079543709754944, 0.11090774834156036, 0.08079543709754944, 0.11090774834156036, 0.08079543709754944, 0.11090774834156036, 0.08079543709754944, 0.11090774834156036, 0.08079543709754944, 0.11090774834156036, 0.08079543709754944, 0.11090774834156036, 0.08079543709754944, 0.11090774834156036, 0.08079543709754944, 0.11090774834156036, 0.08079543709754944, 0.11090774834156036, 0.08079543709754944, 0.11090774834156036, 0.08079543709754944, 0.11090774834156036, 0.08079543709754944, 0.11090774834156036, 0.08079543709754944, 0.11090774834156036, 0.08079543709754944, 0.11090774834156036, 0.08079543709754944, 0.11090774834156036, 0.08079543709754944, 0.11090774834156036, -0.1462530940771103, 0.1386735886335373, -0.1462530940771103, 0.1386735886335373, -0.1462530940771103, 0.1386735886335373, -0.1462530940771103, 0.1386735886335373, -0.1462530940771103, 0.1386735886335373, -0.1462530940771103, 0.1386735886335373, -0.1462530940771103, 0.1386735886335373, -0.1462530940771103, 0.1386735886335373, -0.1462530940771103, 0.1386735886335373, -0.1462530940771103, 0.1386735886335373, -0.1462530940771103, 0.1386735886335373, -0.1462530940771103, 0.1386735886335373, -0.1462530940771103, 0.1386735886335373, -0.1462530940771103, 0.1386735886335373, -0.1462530940771103, 0.1386735886335373, -0.1462530940771103, 0.1386735886335373, -0.34344667196273804, 1.0773637294769287, -0.34344667196273804, 1.0773637294769287, -0.34344667196273804, 1.0773637294769287, -0.34344667196273804, 1.0773637294769287, -0.34344667196273804, 1.0773637294769287, -0.34344667196273804, 1.0773637294769287, -0.34344667196273804, 1.0773637294769287, -0.34344667196273804, 1.0773637294769287, -0.34344667196273804, 1.0773637294769287, -0.34344667196273804, 1.0773637294769287, -0.34344667196273804, 1.0773637294769287, -0.34344667196273804, 1.0773637294769287, -0.34344667196273804, 1.0773637294769287, -0.34344667196273804, 1.0773637294769287, -0.34344667196273804, 1.0773637294769287, -0.34344667196273804, 1.0773637294769287, -1.1428471803665161, 0.9862191081047058, -1.1428471803665161, 0.9862191081047058, -1.1428471803665161, 0.9862191081047058, -1.1428471803665161, 0.9862191081047058, -1.1428471803665161, 0.9862191081047058, -1.1428471803665161, 0.9862191081047058, -1.1428471803665161, 0.9862191081047058, -1.1428471803665161, 0.9862191081047058, -1.1428471803665161, 0.9862191081047058, -1.1428471803665161, 0.9862191081047058, -1.1428471803665161, 0.9862191081047058, -1.1428471803665161, 0.9862191081047058, -1.1428471803665161, 0.9862191081047058, -1.1428471803665161, 0.9862191081047058, -1.1428471803665161, 0.9862191081047058, -1.1428471803665161, 0.9862191081047058, 0.2548973560333252, -1.5608757734298706, 0.2548973560333252, -1.5608757734298706, 0.2548973560333252, -1.5608757734298706, 0.2548973560333252, -1.5608757734298706, 0.2548973560333252, -1.5608757734298706, 0.2548973560333252, -1.5608757734298706, 0.2548973560333252, -1.5608757734298706, 0.2548973560333252, -1.5608757734298706, 0.2548973560333252, -1.5608757734298706, 0.2548973560333252, -1.5608757734298706, 0.2548973560333252, -1.5608757734298706, 0.2548973560333252, -1.5608757734298706, 0.2548973560333252, -1.5608757734298706, 0.2548973560333252, -1.5608757734298706, 0.2548973560333252, -1.5608757734298706, 0.2548973560333252, -1.5608757734298706, 0.0, 2.747814893722534, -0.6036444902420044, 2.747814893722534, -0.6036444902420044, 2.747814893722534, -0.6036444902420044, 2.747814893722534, -0.6036444902420044, 2.747814893722534, -0.6036444902420044, 2.747814893722534, -0.6036444902420044, 2.747814893722534, -0.6036444902420044, 2.747814893722534, -0.6036444902420044, 2.747814893722534, -0.6036444902420044, 2.747814893722534, -0.6036444902420044, 2.747814893722534, -0.6036444902420044, 2.747814893722534, -0.6036444902420044, 2.747814893722534, -0.6036444902420044, 2.747814893722534, -0.6036444902420044, 2.747814893722534, -0.6036444902420044, 2.747814893722534]
}
},
"bias": { "shape": [32], "dtype": "float32", "data": { "kind": "constant", "value": 0.5819082856178284 } }
},
"outputs": { "Y": { "shape": [64, 32], "dtype": "float32", "tolerance": 0.00002, "relTolerance": 0.0002 } }
}
]
}
|