File size: 22,669 Bytes
712dbf0 |
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 |
// Copyright © 2023-2024 Apple Inc.
// Required for using M_SQRT2 in MSVC.
#define _USE_MATH_DEFINES
#include "doctest/doctest.h"
#include "mlx/mlx.h"
#include "mlx/primitives.h"
using namespace mlx::core;
std::vector<array> simple_fun(const std::vector<array>& inputs) {
return std::vector<array>{inputs[0] + inputs[1]};
}
TEST_CASE("test simple compile") {
auto compfn = compile(simple_fun);
auto out = compfn({array(1.0f), array(2.0f)})[0];
CHECK_EQ(out.item<float>(), 3.0f);
out = compfn({array(1.0f), array(2.0f)})[0];
CHECK_EQ(out.item<float>(), 3.0f);
// Change the shapes
out = compfn({array({1.0f, 2.0f}), array(2.0f)})[0];
CHECK(array_equal(out, array({3.0f, 4.0f})).item<bool>());
out = compfn({array(2.0f), array({1.0f, 2.0f})})[0];
CHECK(array_equal(out, array({3.0f, 4.0f})).item<bool>());
// Change the types
out = compfn({array(2, int32), array({1.0f, 2.0f})})[0];
CHECK(array_equal(out, array({3.0f, 4.0f})).item<bool>());
out = compfn({array(2.0f), array({1, 2}, int32)})[0];
CHECK(array_equal(out, array({3.0f, 4.0f})).item<bool>());
}
std::vector<array> grad_fun(const std::vector<array>& inputs) {
auto loss = [](std::vector<array> ins) { return exp(ins[0] + ins[1]); };
return grad(loss, {0, 1})(inputs);
}
TEST_CASE("test compile with grad") {
auto x = array(1.0f);
auto y = array(1.0f);
auto grads_expected = grad_fun({x, y});
auto grads_compile = compile(grad_fun)({x, y});
CHECK(allclose(grads_compile[0], grads_expected[0]).item<bool>());
CHECK(allclose(grads_compile[1], grads_expected[1]).item<bool>());
}
TEST_CASE("test compile inputs with primitive") {
auto [k1, k2] = random::split(random::key(0));
auto x = random::uniform({5, 5}, k1);
auto y = random::uniform({5, 5}, k2);
auto expected = simple_fun({x, y})[0];
x = random::uniform({5, 5}, k1);
y = random::uniform({5, 5}, k2);
auto out = compile(simple_fun)({x, y})[0];
CHECK(array_equal(expected, out).item<bool>());
// Same thing twice
out = compile(simple_fun)({x, y})[0];
CHECK(array_equal(expected, out).item<bool>());
}
std::vector<array> fun_creats_array(const std::vector<array>& inputs) {
return {inputs[0] + array(1.0f)};
}
TEST_CASE("test compile with created array") {
auto cfun = compile(fun_creats_array);
auto out = cfun({array(2.0f)});
CHECK_EQ(out[0].item<float>(), 3.0f);
// Try again
out = cfun({array(2.0f)});
CHECK_EQ(out[0].item<float>(), 3.0f);
}
std::vector<array> inner_fun(const std::vector<array>& inputs) {
return {array(2) * inputs[0]};
}
std::vector<array> outer_fun(const std::vector<array>& inputs) {
auto x = inputs[0] + inputs[1];
auto y = compile(inner_fun)({x})[0];
return {x + y};
}
TEST_CASE("test nested compile") {
auto cfun = compile(outer_fun);
auto out = cfun({array(1), array(2)})[0];
CHECK_EQ(out.item<int>(), 9);
// Try again
out = cfun({array(1), array(2)})[0];
CHECK_EQ(out.item<int>(), 9);
}
TEST_CASE("test enable and disable compile") {
CHECK_THROWS(compile(nullptr));
disable_compile();
compile(nullptr);
enable_compile();
CHECK_THROWS(compile(nullptr));
}
auto add_scalars(const std::vector<array>&) {
auto a = array(-1.0f);
auto b = array(-1.0f);
return std::vector<array>{abs(a), abs(b)};
};
auto max_scalars(const std::vector<array>&) {
auto a = array({-1.0f, 2.0f});
auto b = maximum(a, array(0.0f));
auto c = maximum(-a, array(0.0f));
auto d = b + c;
return std::vector<array>{b, c, d};
};
TEST_CASE("test simplify scalars") {
set_compile_mode(CompileMode::no_fuse);
{
auto cfun = compile(add_scalars);
auto out = cfun({});
auto c = out[0];
auto d = out[1];
CHECK(c.inputs()[0].id() == d.inputs()[0].id());
}
{
auto a = array({-1.0f, 2.0f});
auto out = compile(max_scalars)({a});
auto b = out[0];
auto c = out[1];
auto d = out[2];
CHECK(b.inputs()[1].id() == c.inputs()[1].id());
}
set_compile_mode(CompileMode::enabled);
}
auto exp_two(const std::vector<array>& inputs) {
auto a = inputs[0];
return std::vector<array>{exp(a) + exp(a)};
};
TEST_CASE("test simplify") {
set_compile_mode(CompileMode::no_fuse);
auto a = array({1.0f, 2.0f});
auto b = compile(exp_two)({a})[0];
CHECK(b.inputs()[0].id() == b.inputs()[1].id());
set_compile_mode(CompileMode::enabled);
}
TEST_CASE("test simplify noops") {
set_compile_mode(CompileMode::no_fuse);
auto a = array({1.0f, 2.0f});
auto fun = [](const std::vector<array>& inputs) -> std::vector<array> {
return {copy(stop_gradient(exp(stop_gradient(inputs[0]))))};
};
auto b = compile(fun)({a})[0];
CHECK(b.inputs()[0].id() == a.id());
set_compile_mode(CompileMode::enabled);
}
auto add_diff(const std::vector<array>& inputs) {
auto a = inputs[0];
return std::vector<array>{cos(a) + sin(a)};
};
TEST_CASE("test no simplify") {
set_compile_mode(CompileMode::no_fuse);
auto a = array({1.0f, 2.0f});
auto b = compile(add_diff)({a})[0];
CHECK(b.inputs()[0].id() != b.inputs()[1].id());
set_compile_mode(CompileMode::enabled);
}
auto multi_one(const std::vector<array>&) {
auto a = array(1.0);
auto b = array(2.0);
auto c = divmod(a, b);
auto d = divmod(a, b);
auto e = c[0] + d[0];
auto f = c[1] + d[1];
return std::vector<array>{e, f};
}
auto multi_two(const std::vector<array>&) {
auto a = array(1.0);
auto b = array(1.0);
auto c = divmod(a, b);
return std::vector<array>{c};
}
auto multi_three(const std::vector<array>&) {
auto a = array(1.0);
auto b = array(2.0);
auto c = divmod(a, b);
auto d = divmod(a, b);
auto e = stack({c[0], c[1], d[0], d[1]});
return std::vector<array>{e};
}
TEST_CASE("test simplify multi output") {
set_compile_mode(CompileMode::no_fuse);
{
auto out = compile(multi_one)({});
auto e = out[0];
auto f = out[1];
CHECK_EQ(e.inputs()[0].id(), e.inputs()[1].id());
CHECK_EQ(f.inputs()[0].id(), f.inputs()[1].id());
}
{
auto c = compile(multi_two)({});
CHECK_EQ(c[0].inputs()[0].id(), c[0].inputs()[1].id());
CHECK_EQ(c[0].inputs()[0].id(), c[1].inputs()[0].id());
CHECK_EQ(c[1].inputs()[0].id(), c[1].inputs()[1].id());
}
// Make sure the output order of multi-output primitives
// is respected in simplification
{
auto e = compile(multi_three)({})[0];
CHECK_EQ(e.inputs().size(), 4);
CHECK_EQ(e.inputs().at(0).id(), e.inputs().at(2).id());
CHECK_EQ(e.inputs().at(1).id(), e.inputs().at(3).id());
CHECK(array_equal(e, array({0.0f, 1.0f, 0.0f, 1.0f})).item<bool>());
}
set_compile_mode(CompileMode::enabled);
}
// No fusion
auto unary_fused_0(const std::vector<array>& inputs) {
return std::vector<array>{exp(inputs[0])};
}
// All compilable
auto unary_fused_1(const std::vector<array>& inputs) {
return std::vector<array>{abs(negative(exp(inputs[0])))};
}
auto unary_fused_1_copy(const std::vector<array>& inputs) {
return std::vector<array>{abs(negative(exp(inputs[0])))};
}
auto unary_fused_1_diff(const std::vector<array>& inputs) {
return std::vector<array>{abs(exp(negative(inputs[0])))};
}
// Output into un-compilable primitive
auto unary_fused_2(const std::vector<array>& inputs) {
return std::vector<array>{sum(abs(negative(exp(inputs[0]))), true)};
}
// Input from un-compilable primitive
auto unary_fused_3(const std::vector<array>& inputs) {
return std::vector<array>{exp(abs(negative(sum(inputs[0], true))))};
}
TEST_CASE("test compile unary fused") {
// NB: some of these tests are brittle and may need to be
// updated if we change compile conditions
{
auto cfun = compile(unary_fused_0);
auto x = array(2.0);
auto out = cfun({x})[0];
auto& p = out.primitive();
CHECK_EQ(typeid(p), typeid(Exp));
CHECK_EQ(out.inputs()[0].id(), x.id());
}
{
auto cfun = compile(unary_fused_1);
auto x = array(2.0);
auto out = cfun({x})[0];
auto& p = out.primitive();
CHECK_EQ(typeid(p), typeid(Compiled));
CHECK_EQ(out.inputs()[0].id(), x.id());
auto expected_out = unary_fused_1({array(2.0)})[0];
CHECK(allclose(out, expected_out).item<bool>());
}
{
auto cfun = compile(unary_fused_2);
auto x = array({1.0, 2.0});
auto out = cfun({x});
CHECK_EQ(out.size(), 1);
auto& p = out[0].primitive();
// NB: this test is brittle, will need to update
// it if we change compile conditions
CHECK_EQ(typeid(p), typeid(Reduce));
auto cout = out[0].inputs()[0];
auto& cp = cout.primitive();
CHECK_EQ(typeid(cp), typeid(Compiled));
CHECK_EQ(cout.inputs()[0].id(), x.id());
}
{
auto cfun = compile(unary_fused_3);
auto x = array({1.0, 2.0});
auto out = cfun({x});
auto& p = out[0].primitive();
CHECK_EQ(typeid(p), typeid(Compiled));
auto sout = out[0].inputs()[0];
CHECK_EQ(out[0].inputs().size(), 1);
auto& sp = sout.primitive();
CHECK_EQ(typeid(sp), typeid(Reduce));
CHECK_EQ(sout.inputs()[0].id(), x.id());
}
// Is equivalent works
{
auto out1 = compile(unary_fused_1)({array(1.0)});
auto out2 = compile(unary_fused_1_copy)({array(1.0)});
CHECK(out1[0].primitive().is_equivalent(out2[0].primitive()));
auto out3 = compile(unary_fused_1_diff)({array(1.0)});
CHECK(!out1[0].primitive().is_equivalent(out3[0].primitive()));
}
}
// All compilable
auto binary_fused_0(const std::vector<array>& inputs) {
return std::vector<array>{inputs[0] + inputs[1]};
}
// Binary into unary
auto binary_fused_1(const std::vector<array>& inputs) {
return std::vector<array>{abs(inputs[0] + inputs[1])};
}
// Binary into binary
auto binary_fused_2(const std::vector<array>& inputs) {
auto x = inputs[0] + inputs[1];
return std::vector<array>{x + inputs[0]};
}
// Binary into unary into un-compilable
auto binary_fused_3(const std::vector<array>& inputs) {
return std::vector<array>{sum(abs(inputs[0] + inputs[1]), true)};
}
TEST_CASE("test compile binary fused") {
{
auto cfun = compile(binary_fused_0);
auto x = array(2.0);
auto y = array(2.0);
auto out = cfun({x, y})[0];
auto& p = out.primitive();
CHECK_EQ(typeid(p), typeid(Add));
CHECK_EQ(out.inputs()[0].id(), x.id());
}
{
auto cfun = compile(binary_fused_1);
auto x = array(2.0);
auto y = array(2.0);
auto out = cfun({x, y})[0];
auto& p = out.primitive();
CHECK_EQ(typeid(p), typeid(Compiled));
CHECK_EQ(out.inputs()[0].id(), x.id());
CHECK_EQ(out.inputs()[1].id(), y.id());
auto expected_out = binary_fused_1({x, y})[0];
CHECK_EQ(out.item<float>(), expected_out.item<float>());
}
{
auto cfun = compile(binary_fused_2);
auto x = array(2.0);
auto y = array(2.0);
auto out = cfun({x, y})[0];
auto& p = out.primitive();
CHECK_EQ(typeid(p), typeid(Compiled));
CHECK_EQ(out.inputs()[0].id(), x.id());
CHECK_EQ(out.inputs()[1].id(), y.id());
}
{
auto cfun = compile(binary_fused_3);
auto x = array({1.0, 2.0});
auto y = array({1.0, 2.0});
auto out = cfun({x, y})[0];
auto& p = out.primitive();
CHECK_EQ(typeid(p), typeid(Reduce));
auto cout = out.inputs()[0];
auto& cp = cout.primitive();
CHECK_EQ(typeid(cp), typeid(Compiled));
CHECK_EQ(cout.inputs()[0].id(), x.id());
CHECK_EQ(cout.inputs()[1].id(), y.id());
}
}
auto gelu_1(const std::vector<array>& inputs) {
auto& x = inputs[0];
auto out = x * (1.0f + erf(x / M_SQRT2)) / 2.0f;
return std::vector<array>{out};
}
TEST_CASE("test compile gelu") {
{
auto cfun = compile(gelu_1);
auto x = array(1.0);
auto out = cfun({x})[0];
auto& p = out.primitive();
CHECK_EQ(typeid(p), typeid(Compiled));
CHECK_EQ(out.inputs().size(), 4);
for (auto& in : out.inputs()) {
CHECK(in.inputs().empty());
}
auto expected_out = gelu_1({x})[0];
CHECK(allclose(out, expected_out).item<bool>());
}
{
auto cfun = compile(gelu_1);
auto x = array({1.0, 0.5});
auto out = cfun({x})[0];
auto& p = out.primitive();
CHECK_EQ(typeid(p), typeid(Compiled));
CHECK_EQ(out.inputs().size(), 4);
for (auto& in : out.inputs()) {
CHECK(in.inputs().empty());
}
auto expected_out = gelu_1({x})[0];
CHECK(allclose(out, expected_out).item<bool>());
}
}
// Uncompilable input outside fused tape
auto unary_with_two_outputs(const std::vector<array>& inputs) {
auto x = exp(inputs[0]);
return std::vector<array>{exp(x), sum(x, true)};
}
auto uncompilable_inputs(const std::vector<array>& inputs) {
auto& x = inputs[0];
auto& y = inputs[1];
return std::vector<array>{x * abs(exp(y)), sum(x, true)};
}
auto uncompilable_inputs_order_matters(const std::vector<array>& inputs) {
auto& x = inputs[0];
auto& y = inputs[1];
return std::vector<array>{x / abs(exp(y)), sum(x, true)};
}
TEST_CASE("test compile tape with outside parents") {
{
auto cfun = compile(unary_with_two_outputs);
auto x = array({2.0, 2.0});
auto out = cfun({x});
auto& p1 = out[0].primitive();
CHECK_EQ(typeid(p1), typeid(Exp));
auto& p2 = out[1].primitive();
CHECK_EQ(typeid(p2), typeid(Reduce));
}
{
auto cfun = compile(uncompilable_inputs);
auto x = array({2.0, 2.0});
auto y = array({1.6, 0.6});
auto outs = cfun({x, y});
auto& p1 = outs[0].primitive();
CHECK_EQ(typeid(p1), typeid(Compiled));
auto& p2 = outs[1].primitive();
CHECK_EQ(typeid(p2), typeid(Reduce));
CHECK_EQ(outs[0].inputs().size(), 2);
auto expected_outs = uncompilable_inputs({x, y});
CHECK(allclose(outs[0], expected_outs[0]).item<bool>());
CHECK(allclose(outs[1], expected_outs[1]).item<bool>());
}
{
auto cfun = compile(uncompilable_inputs_order_matters);
auto x = array({2.0, 2.0});
auto y = array({1.6, 0.6});
auto outs = cfun({x, y});
auto& p1 = outs[0].primitive();
CHECK_EQ(typeid(p1), typeid(Compiled));
auto& p2 = outs[1].primitive();
CHECK_EQ(typeid(p2), typeid(Reduce));
CHECK_EQ(outs[0].inputs().size(), 2);
auto expected_outs = uncompilable_inputs_order_matters({x, y});
CHECK(allclose(outs[0], expected_outs[0]).item<bool>());
CHECK(allclose(outs[1], expected_outs[1]).item<bool>());
}
}
auto compile_across_streams(const std::vector<array>& inputs) {
auto s2 = new_stream(default_device());
auto x = exp(abs(inputs[0]));
auto y = exp(abs(x, s2), s2);
return std::vector<array>{y};
}
TEST_CASE("test compile across streams") {
auto cfun = compile(compile_across_streams);
auto x = array({2.0f});
auto out = cfun({x})[0];
auto& p1 = out.primitive();
CHECK_EQ(typeid(p1), typeid(Compiled));
CHECK_EQ(out.inputs().size(), 1);
auto child = out.inputs()[0];
auto& p2 = child.primitive();
CHECK_EQ(typeid(p2), typeid(Compiled));
CHECK_EQ(child.inputs()[0].id(), x.id());
}
auto unary_compile_outputs(const std::vector<array>& inputs) {
auto x = abs(inputs[0]);
auto y = square(x);
return std::vector<array>{x, y};
}
auto binary_compile_outputs(const std::vector<array>& inputs) {
auto x = inputs[0];
auto y = inputs[1];
x = x + y;
y = x + y;
return std::vector<array>{x, y};
}
TEST_CASE("test compile internal output") {
{
auto cfun = compile(unary_compile_outputs);
auto x = array({3, -2});
auto outs = cfun({x});
auto& p1 = outs[0].primitive();
CHECK_EQ(typeid(p1), typeid(Compiled));
auto& p2 = outs[1].primitive();
CHECK_EQ(typeid(p2), typeid(Compiled));
CHECK_EQ(outs[0].siblings()[0].id(), outs[1].id());
auto expected_outs = unary_compile_outputs({x});
CHECK(array_equal(outs[0], expected_outs[0]).item<bool>());
CHECK(array_equal(outs[1], expected_outs[1]).item<bool>());
}
{
auto cfun = compile(binary_compile_outputs);
auto x = array({3, -2});
auto y = array({1, -1});
auto outs = cfun({x, y});
auto& p1 = outs[0].primitive();
CHECK_EQ(typeid(p1), typeid(Compiled));
auto& p2 = outs[1].primitive();
CHECK_EQ(typeid(p2), typeid(Compiled));
auto expected_outs = binary_compile_outputs({x, y});
CHECK(array_equal(outs[0], expected_outs[0]).item<bool>());
CHECK(array_equal(outs[1], expected_outs[1]).item<bool>());
}
}
auto deep_unary_compile(const std::vector<array>& inputs) {
auto x = inputs[0];
for (int i = 0; i < 10; ++i) {
x = cos(sin(x));
}
return std::vector<array>{x};
}
TEST_CASE("test compile deep graph") {
auto cfun = compile(deep_unary_compile);
auto x = array({3.0f, -2.0f});
auto out = cfun({x})[0];
auto expected_out = deep_unary_compile({x})[0];
CHECK(allclose(out, expected_out).item<bool>());
}
auto repeat_input_to_compiled(const std::vector<array>& inputs) {
auto x = abs(exp(inputs[0]));
auto y = abs(exp(sum(x)));
return std::vector<array>{x + y};
}
TEST_CASE("test compile repeat input") {
auto cfun = compile(repeat_input_to_compiled);
auto x = array({3.0f, -2.0f});
auto out = cfun({x})[0];
auto expected_out = repeat_input_to_compiled({x})[0];
CHECK(allclose(out, expected_out).item<bool>());
}
auto compile_unary_inner(const std::vector<array>& inputs) {
auto x = inputs[0];
return std::vector<array>{exp(exp(x))};
}
auto compile_unary_outer(const std::vector<array>& inputs) {
auto cfun = compile(compile_unary_inner);
return cfun(cfun(inputs));
}
TEST_CASE("test compile compiled function") {
auto cfun = compile(compile_unary_outer);
auto x = array({1.0f});
auto out = cfun({x})[0];
auto& p = out.primitive();
CHECK_EQ(typeid(p), typeid(Compiled));
CHECK_EQ(out.inputs()[0].id(), x.id());
}
auto grad_unary_compiled(const std::vector<array>& inputs) {
auto gradfn = value_and_grad(compile(compile_unary_inner));
auto [out, grad] = gradfn(inputs);
return std::vector{out[0], grad[0]};
}
TEST_CASE("test transform compiled function") {
auto cfun = compile(grad_unary_compiled);
auto x = array(1.0f);
auto outs = cfun({x});
auto& p = outs[0].primitive();
CHECK_EQ(typeid(p), typeid(Compiled));
CHECK_EQ(outs[0].siblings()[0].id(), outs[1].id());
CHECK(!outs[0].inputs()[0].has_primitive());
CHECK(!outs[0].inputs()[1].has_primitive());
}
TEST_CASE("test fusion kernel reuse") {
auto cfun = compile(gelu_1);
auto x = array({2.0f, -2.0f});
auto y = cfun({x})[0];
auto p = std::dynamic_pointer_cast<Compiled>(y.primitive_ptr());
eval(y);
std::string lib_name = p->lib_name();
CHECK(!lib_name.empty());
x = astype(reshape(arange(10), {2, 5}), float32);
auto z = cfun({x})[0];
auto pz = std::dynamic_pointer_cast<Compiled>(z.primitive_ptr());
eval(z);
std::string lib_name_z = pz->lib_name();
CHECK(!lib_name_z.empty());
CHECK_EQ(lib_name, lib_name_z);
}
auto add3(const std::vector<array>& xs) {
return std::vector<array>{xs[0] + xs[0] + xs[0]};
}
TEST_CASE("test fusion types") {
auto cfun = compile(add3);
auto x = array({2.0f, -2.0f});
auto y = cfun({x})[0];
auto p = std::dynamic_pointer_cast<Compiled>(y.primitive_ptr());
eval(y);
std::string lib_name = p->lib_name();
CHECK(!lib_name.empty());
x = array({2, -2}, int32);
auto z = cfun({x})[0];
auto pz = std::dynamic_pointer_cast<Compiled>(z.primitive_ptr());
eval(z);
std::string lib_name_z = pz->lib_name();
CHECK(!lib_name_z.empty());
}
auto compile_shapeless_not_ok(const std::vector<array>& inputs) {
auto x = reshape(inputs[0], {2, 2});
return std::vector<array>{x};
}
auto compile_shapeless_ok(const std::vector<array>& inputs) {
auto x = inputs[0] + array({2});
return std::vector<array>{x};
}
TEST_CASE("test shapeless compile") {
{
auto cfun = compile(compile_shapeless_not_ok, /* shapeless */ true);
cfun({array({1, 2, 3, 4})});
CHECK_THROWS(cfun({array({1, 2, 3, 4, 5})}));
}
{
auto cfun = compile(compile_shapeless_ok, /* shapeless */ true);
auto out = cfun({array({1, 2})})[0];
auto out2 = cfun({array({1, 2, 3, 4})})[0];
// Not making a new constant array since no recompile,
// hence the ids should be the same
CHECK_EQ(out.inputs()[1].id(), out2.inputs()[1].id());
CHECK(array_equal(out2, array({3, 4, 5, 6})).item<bool>());
// Recompile since type changes
out2 = cfun({array({1.0, 2.0})})[0];
CHECK_NE(out.inputs()[1].id(), out2.inputs()[1].id());
// Recompile since ndim changes
out2 = cfun({array({1.0, 2.0}, {1, 2})})[0];
CHECK_NE(out.inputs()[1].id(), out2.inputs()[1].id());
}
}
auto compile_broadcast_add(const std::vector<array>& inputs) {
auto b = zeros({8, 8});
return std::vector<array>{inputs[0] + b};
}
TEST_CASE("test compile strides") {
{
auto cfun = compile(compile_broadcast_add);
auto a = zeros({1, 8, 8});
auto out = cfun({a})[0];
eval(out);
CHECK_EQ(out.strides().size(), 3);
}
}
TEST_CASE("test compile change streams") {
auto cfun = compile(simple_fun);
auto out = cfun({array(1.0f), array(2.0f)})[0];
CHECK_EQ(out.primitive().stream(), default_stream(default_device()));
auto s = new_stream(default_device());
StreamContext sctx(s);
out = cfun({array(1.0f), array(2.0f)})[0];
CHECK_EQ(out.primitive().stream(), s);
}
TEST_CASE("test compile lambda") {
auto fun = [](const std::vector<array>& inputs) {
return std::vector<array>{abs(inputs[0])};
};
auto out = compile(fun)({array(-1)});
CHECK_EQ(out[0].item<int>(), 1);
decltype(compile(nullptr)) c_local_fun;
{
auto local_fun = [](const std::vector<array>& inputs) {
return std::vector<array>{abs(inputs[0])};
};
c_local_fun = compile(local_fun);
}
// This is ok even though local_fun is out of scope
out = c_local_fun({array(-1)});
CHECK_EQ(out[0].item<int>(), 1);
{
int x = 2;
auto local_fun = [x](const std::vector<array>& inputs) {
return std::vector<array>{inputs[0] + x};
};
c_local_fun = compile(local_fun);
}
// Also ok even though local_fun is out of scope.
out = c_local_fun({array(0)});
CHECK_EQ(out[0].item<int>(), 2);
int x = 2;
auto fun_with_capture = [&x](const std::vector<array>& inputs) {
return std::vector<array>{inputs[0] + x};
};
auto cfun = compile(fun_with_capture);
out = cfun({array(0)});
CHECK_EQ(out[0].item<int>(), 2);
// Doesn't recompile
x = 3;
out = cfun({array(0)});
CHECK_EQ(out[0].item<int>(), 2);
// Recompiles
auto cfun2 = compile(fun_with_capture);
out = cfun2({array(0)});
CHECK_EQ(out[0].item<int>(), 3);
}
TEST_CASE("test compile with no-ops") {
auto fun = [](const std::vector<array>& inputs) {
return std::vector<array>{abs(stop_gradient(abs(inputs[0])))};
};
auto in = array(1.0);
auto out = compile(fun)({in})[0];
CHECK_EQ(out.inputs()[0].id(), in.id());
}
|