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
|
#!/bin/bash
set -ex # Exit immediately on any error
# Default to gfortran if FC is not set
: "${FC:=gfortran}"
# Color definitions for pretty output
GREEN='\033[0;32m'
BLUE='\033[1;34m'
YELLOW='\033[1;33m'
NC='\033[0m' # No Color
# Helper functions for logging
print_section() {
echo -e "\n${BLUE}==============================="
echo -e "$1"
echo -e "===============================${NC}\n"
}
print_subsection() {
echo -e "${YELLOW}→ $1${NC}"
}
print_success() {
echo -e "${GREEN}✔ $1${NC}"
}
run_test() {
print_subsection "Running: $1"
./$1
print_success "Success: $1"
}
time_section() {
local LABEL="$1"
local BLOCK="$2"
local START=$(date +%s)
print_section "$LABEL"
eval "$BLOCK"
local END=$(date +%s)
print_subsection "⏱ Duration: $((END - START)) seconds"
}
# Setup a temporary workspace
TMP_DIR=$(mktemp -d)
cd "$TMP_DIR"
time_section "🧪 Testing assert" '
git clone https://github.com/pranavchiku/assert.git
cd assert
export PATH="$(pwd)/../src/bin:$PATH"
micromamba install -c conda-forge fpm
# To debug https://github.com/lfortran/lfortran/issues/7732:
which fpm
realpath $(which fpm)
ls -l $(dirname $(realpath $(which fpm)))/../lib
ls -l $CONDA_PREFIX/lib
fpm --version
git checkout -t origin/fix-test
git checkout 535434d2f44508aa06231c6c2fe95f9e11292769
git clean -dfx
fpm build --compiler=$FC --flag "--cpp" --verbose
fpm test --compiler=$FC --flag "--cpp"
git clean -dfx
print_subsection "Testing with assertions enabled"
fpm test --compiler=$FC --verbose --flag '--cpp -DASSERTIONS -DASSERT_PARALLEL_CALLBACKS'
cd ../
rm -rf assert
'
time_section "🧪 Testing splpak" '
git clone https://github.com/Pranavchiku/splpak.git
cd splpak
export PATH="$(pwd)/../src/bin:$PATH"
micromamba install -c conda-forge fpm
# To debug https://github.com/lfortran/lfortran/issues/7732:
which fpm
realpath $(which fpm)
ls -l $(dirname $(realpath $(which fpm)))/../lib
ls -l $CONDA_PREFIX/lib
fpm --version
git checkout lf-2
git checkout 460bd22f4ac716e5266412e8ed35ce07aa664f08
git clean -dfx
fpm build --compiler=$FC --profile release --flag "--cpp -DREAL32" --verbose
fpm test --compiler=$FC --profile release --flag "--cpp -DREAL32"
cd ../
rm -rf splpak
'
time_section "🧪 Testing fortran-regex" '
git clone https://github.com/perazz/fortran-regex.git
cd fortran-regex
export PATH="$(pwd)/../src/bin:$PATH"
micromamba install -c conda-forge fpm
git checkout 96ab33fe003862a28cec91ddd170ac0e86c26c87
fpm --compiler=$FC build
fpm --compiler=$FC test
print_success "Done with fortran-regex"
cd ..
'
time_section "🧪 Testing fortran-shlex" '
git clone https://github.com/perazz/fortran-shlex.git
cd fortran-shlex
export PATH="$(pwd)/../src/bin:$PATH"
micromamba install -c conda-forge fpm
git checkout e20b6f86c82e33fae78b54b074bab5369efde6a3
fpm --compiler=$FC build --flag "--realloc-lhs-arrays"
fpm --compiler=$FC test --flag "--realloc-lhs-arrays"
print_success "Done with fortran-shlex"
cd ..
'
time_section "🧪 Testing toml-f" '
git clone https://github.com/toml-f/toml-f.git
cd toml-f
export PATH="$(pwd)/../src/bin:$PATH"
micromamba install -c conda-forge fpm
git checkout 27abd768e79c7c790ffa58fe5ccfb105ba00883d
fpm --compiler=$FC build --flag "--cpp --realloc-lhs-arrays"
fpm --compiler=$FC test --flag "--cpp --realloc-lhs-arrays"
print_success "Done with toml-f"
cd ..
'
time_section "🧪 Testing jonquil" '
git clone https://github.com/jinangshah21/jonquil.git
cd jonquil
export PATH="$(pwd)/../src/bin:$PATH"
git checkout lf-7
micromamba install -c conda-forge fpm
git checkout 8aad5a901810bd669e851eead633c0df2bb7b423
fpm --compiler=$FC test --flag "--cpp --realloc-lhs-arrays --use-loop-variable-after-loop"
print_success "Done with jonquil"
cd ..
'
time_section "🧪 Testing M_CLI2" '
git clone https://github.com/jinangshah21/M_CLI2.git
cd M_CLI2
export PATH="$(pwd)/../src/bin:$PATH"
git checkout lf-8
micromamba install -c conda-forge fpm
git checkout 28c5718bc8b5066e023c628ac88f29bc4f10a0a9
fpm --compiler=$FC build --flag "--realloc-lhs-arrays"
fpm --compiler=$FC test --flag "--realloc-lhs-arrays"
print_success "Done with M_CLI2"
cd ..
'
time_section "🧪 Testing fortran_mpi" '
git clone https://github.com/lfortran/fortran_mpi.git
cd fortran_mpi
export PATH="$(pwd)/../src/bin:$PATH"
export OMPI_MCA_btl_tcp_if_include=lo0
git checkout 31033d3c8af32c4c99fac803c161e6731bc39a78
git clean -fdx
cd tests/
FC="$FC --cpp" ./run_tests.sh
print_success "Done with fortran_mpi"
cd ../
git clean -fdx
print_subsection "Building fortran_mpi with separate compilation"
cd tests/
FC="$FC --cpp --separate-compilation" ./run_tests.sh
print_success "Done with fortran_mpi"
cd ../../
rm -rf fortran_mpi
'
time_section "🧪 Testing POT3D with fortran_mpi" '
git clone https://github.com/parth121101/pot3d.git
cd pot3d
git checkout -t origin/lf_hdf5_fortranMPI_namelist_global_workarounds
git checkout 380669edd3a5947985674a51e0d65482d6fe68b3
git clone https://github.com/lfortran/fortran_mpi
cd fortran_mpi
git checkout 31033d3c8af32c4c99fac803c161e6731bc39a78
cp src/mpi.f90 ../src/
cp src/mpi_c_bindings.f90 ../src/
cp src/mpi_constants.c ../src/
cd ..
print_subsection "Building with default flags"
FC="$FC --cpp -DOPEN_MPI=yes" ./build_and_run_lfortran.sh
print_subsection "Building with optimization flags"
FC="$FC --cpp --fast --skip-pass=dead_code_removal -DOPEN_MPI=yes" ./build_and_run_lfortran.sh
print_subsection "Building POT3D in separate compilation mode"
FC="$FC --cpp --separate-compilation -DOPEN_MPI=yes" ./build_and_run_lfortran.sh
print_success "Done with POT3D"
cd ..
rm -rf pot3d
'
##########################
# Section 1: stdlib (Less Workarounds)
##########################
time_section "🧪 Testing stdlib (Less Workarounds)" '
git clone https://github.com/Pranavchiku/stdlib-fortran-lang.git
cd stdlib-fortran-lang
export PATH="$(pwd)/../src/bin:$PATH"
git checkout n-lf-22
git checkout ae4c42431b31f8ad8f6fdd40bcc9e08a88f8b373
micromamba install -c conda-forge fypp
git clean -fdx
FC=$FC cmake . \
-DTEST_DRIVE_BUILD_TESTING=OFF \
-DBUILD_EXAMPLE=ON -DCMAKE_Fortran_COMPILER_WORKS=TRUE \
-DCMAKE_Fortran_FLAGS="--cpp --realloc-lhs-arrays --no-warnings --use-loop-variable-after-loop -I$(pwd)/src -I$(pwd)/subprojects/test-drive/"
make -j8
ctest
git clean -dfx
git restore .
git checkout sc-lf-12
git checkout 4d832ce2f4c6629d5273651af20736e121d7abe0
FC=$FC cmake . \
-DTEST_DRIVE_BUILD_TESTING=OFF \
-DBUILD_EXAMPLE=ON -DCMAKE_Fortran_COMPILER_WORKS=TRUE \
-DCMAKE_Fortran_FLAGS="--cpp --separate-compilation --realloc-lhs-arrays --no-warnings --use-loop-variable-after-loop -I$(pwd)/src -I$(pwd)/subprojects/test-drive/"
make -j8
ctest
print_success "Done with stdlib (Less Workarounds)"
cd ..
rm -rf stdlib
'
##########################
# Section 2: FPM
##########################
time_section "🧪 Testing FPM" '
git clone https://github.com/jinangshah21/fpm.git
cd fpm
export PATH="$(pwd)/../src/bin:$PATH"
git checkout lf-17
micromamba install -c conda-forge fpm
git checkout 0321239b19291cbbf2c4e6597a2aa118b2cc6a4a
fpm --compiler=$FC build --flag "--cpp --realloc-lhs-arrays --use-loop-variable-after-loop"
fpm --compiler=$FC test --flag "--cpp --realloc-lhs-arrays --use-loop-variable-after-loop"
print_success "Done with FPM"
cd ..
'
##########################
# Section 3: Fortran-Primes
##########################
time_section "🧪 Testing Fortran-Primes" '
git clone https://github.com/jinangshah21/fortran-primes.git
cd fortran-primes
git checkout -t origin/lf-3
git checkout 923b468f79eee1ff07b77d9def67249f4d2efa21
print_subsection "Building and running Fortran-Primes"
FC=$FC ./build_and_run.sh
print_subsection "Building Fortran-Primes with separate compilation"
git clean -dfx
FC="$FC --separate-compilation" ./build_and_run.sh
print_success "Done with Fortran-Primes"
cd ..
rm -rf fortran-primes
'
########################################
# Section 4: Numerical Methods Fortran #
########################################
time_section "🧪 Testing Numerical Methods Fortran" '
git clone https://github.com/Pranavchiku/numerical-methods-fortran.git
cd numerical-methods-fortran
git checkout -t origin/lf6
git checkout a252989e64b3f8d5d2f930dca18411c104ea85f8
print_subsection "Building project"
FC="$FC --no-array-bounds-checking --realloc-lhs-arrays" make
run_test test_fix_point.exe
run_test test_integrate_one.exe
run_test test_linear.exe
run_test test_newton.exe
run_test test_ode.exe
run_test test_probability_distribution.exe
run_test test_sde.exe
run_test plot_bogdanov_takens.exe
run_test plot_bruinsma.exe
run_test plot_fun1.exe
run_test plot_lorenz.exe
run_test plot_lotka_volterra1.exe
run_test plot_lotka_volterra2.exe
run_test plot_pendulum.exe
run_test plot_transes_iso.exe
git clean -dfx
print_subsection "Building Numerical Methods Fortran with f23 standard"
FC="$FC --std=f23 --no-array-bounds-checking" make
run_test test_fix_point.exe
run_test test_integrate_one.exe
run_test test_linear.exe
run_test test_newton.exe
run_test test_ode.exe
run_test test_probability_distribution.exe
run_test test_sde.exe
run_test plot_bogdanov_takens.exe
run_test plot_bruinsma.exe
run_test plot_fun1.exe
run_test plot_lorenz.exe
run_test plot_lotka_volterra1.exe
run_test plot_lotka_volterra2.exe
run_test plot_pendulum.exe
run_test plot_transes_iso.exe
git clean -dfx
print_subsection "Building Numerical Methods Fortran with separate compilation"
FC="$FC --separate-compilation --no-array-bounds-checking --realloc-lhs-arrays" make
run_test test_fix_point.exe
run_test test_integrate_one.exe
run_test test_linear.exe
run_test test_newton.exe
run_test test_ode.exe
run_test test_probability_distribution.exe
run_test test_sde.exe
run_test plot_bogdanov_takens.exe
run_test plot_bruinsma.exe
run_test plot_fun1.exe
run_test plot_lorenz.exe
run_test plot_lotka_volterra1.exe
run_test plot_lotka_volterra2.exe
run_test plot_pendulum.exe
run_test plot_transes_iso.exe
git clean -dfx
print_subsection "Building Numerical Methods Fortran with separate compilation and f23 standard"
FC="$FC --separate-compilation --std=f23 --no-array-bounds-checking" make
run_test test_fix_point.exe
run_test test_integrate_one.exe
run_test test_linear.exe
run_test test_newton.exe
run_test test_ode.exe
run_test test_probability_distribution.exe
run_test test_sde.exe
run_test plot_bogdanov_takens.exe
run_test plot_bruinsma.exe
run_test plot_fun1.exe
run_test plot_lorenz.exe
run_test plot_lotka_volterra1.exe
run_test plot_lotka_volterra2.exe
run_test plot_pendulum.exe
run_test plot_transes_iso.exe
print_success "Done with Numerical Methods Fortran"
cd ..
rm -rf numerical-methods-fortran
'
#######################
# Section 5: PRIMA #
#######################
time_section "🧪 Testing PRIMA" '
git clone https://github.com/Pranavchiku/prima.git
cd prima
git checkout -t origin/lf-prima-12
git checkout e681eea9b3f27930c50cffd14dd566b39f01c642
git clean -dfx
# OS-specific env
if [[ "$RUNNER_OS" == "macos-latest" ]]; then
export LFORTRAN_RUNNER_OS="macos"
elif [[ "$RUNNER_OS" == "ubuntu-latest" ]]; then
export LFORTRAN_RUNNER_OS="linux"
fi
print_subsection "Building PRIMA"
FC="$FC --cpp" cmake -S . -B build \
-DCMAKE_INSTALL_PREFIX=$(pwd)/install \
-DCMAKE_Fortran_FLAGS="" \
-DCMAKE_SHARED_LIBRARY_CREATE_Fortran_FLAGS="" \
-DCMAKE_MACOSX_RPATH=OFF \
-DCMAKE_SKIP_INSTALL_RPATH=ON \
-DCMAKE_SKIP_RPATH=ON
cmake --build build --target install
run_test ./build/fortran/example_bobyqa_fortran_1_exe
run_test ./build/fortran/example_bobyqa_fortran_2_exe
run_test ./build/fortran/example_cobyla_fortran_1_exe
run_test ./build/fortran/example_cobyla_fortran_2_exe
run_test ./build/fortran/example_lincoa_fortran_1_exe
run_test ./build/fortran/example_lincoa_fortran_2_exe
run_test ./build/fortran/example_newuoa_fortran_1_exe
run_test ./build/fortran/example_newuoa_fortran_2_exe
run_test ./build/fortran/example_uobyqa_fortran_1_exe
run_test ./build/fortran/example_uobyqa_fortran_2_exe
if [[ "$RUNNER_OS" == "macos-latest" ]]; then
cd fortran
test_name=test_bobyqa.f90 FC="$FC" ./script.sh
test_name=test_newuoa.f90 FC="$FC" ./script.sh
test_name=test_uobyqa.f90 FC="$FC" ./script.sh
test_name=test_cobyla.f90 FC="$FC" ./script.sh
test_name=test_lincoa.f90 FC="$FC" ./script.sh
cd ..
fi
if [[ "$RUNNER_OS" == "ubuntu-latest" ]]; then
cd fortran
test_name=test_uobyqa.f90 FC="$FC" ./script.sh
cd ..
fi
print_subsection "Building PRIMA with f23 standard"
FC="$FC --cpp --std=f23" cmake -S . -B build \
-DCMAKE_INSTALL_PREFIX=$(pwd)/install \
-DCMAKE_Fortran_FLAGS="" \
-DCMAKE_SHARED_LIBRARY_CREATE_Fortran_FLAGS="" \
-DCMAKE_MACOSX_RPATH=OFF \
-DCMAKE_SKIP_INSTALL_RPATH=ON \
-DCMAKE_SKIP_RPATH=ON
cmake --build build --target install
run_test ./build/fortran/example_bobyqa_fortran_1_exe
run_test ./build/fortran/example_bobyqa_fortran_2_exe
run_test ./build/fortran/example_cobyla_fortran_1_exe
run_test ./build/fortran/example_cobyla_fortran_2_exe
run_test ./build/fortran/example_lincoa_fortran_1_exe
run_test ./build/fortran/example_lincoa_fortran_2_exe
run_test ./build/fortran/example_newuoa_fortran_1_exe
run_test ./build/fortran/example_newuoa_fortran_2_exe
run_test ./build/fortran/example_uobyqa_fortran_1_exe
run_test ./build/fortran/example_uobyqa_fortran_2_exe
if [[ "$RUNNER_OS" == "macos-latest" ]]; then
cd fortran
test_name=test_bobyqa.f90 FC="$FC --std=f23" ./script.sh
test_name=test_newuoa.f90 FC="$FC --std=f23" ./script.sh
test_name=test_uobyqa.f90 FC="$FC --std=f23" ./script.sh
test_name=test_cobyla.f90 FC="$FC --std=f23" ./script.sh
test_name=test_lincoa.f90 FC="$FC --std=f23" ./script.sh
cd ..
fi
if [[ "$RUNNER_OS" == "ubuntu-latest" ]]; then
cd fortran
test_name=test_uobyqa.f90 FC="$FC --std=f23" ./script.sh
cd ..
fi
print_subsection "Rebuilding PRIMA with optimization"
git clean -dfx
FC="$FC --cpp --fast" cmake -S . -B build \
-DCMAKE_INSTALL_PREFIX=$(pwd)/install \
-DCMAKE_Fortran_FLAGS="" \
-DCMAKE_SHARED_LIBRARY_CREATE_Fortran_FLAGS="" \
-DCMAKE_MACOSX_RPATH=OFF \
-DCMAKE_SKIP_INSTALL_RPATH=ON \
-DCMAKE_SKIP_RPATH=ON
cmake --build build --target install
run_test ./build/fortran/example_bobyqa_fortran_1_exe
run_test ./build/fortran/example_bobyqa_fortran_2_exe
run_test ./build/fortran/example_cobyla_fortran_1_exe
run_test ./build/fortran/example_cobyla_fortran_2_exe
run_test ./build/fortran/example_lincoa_fortran_1_exe
run_test ./build/fortran/example_lincoa_fortran_2_exe
run_test ./build/fortran/example_newuoa_fortran_1_exe
run_test ./build/fortran/example_newuoa_fortran_2_exe
run_test ./build/fortran/example_uobyqa_fortran_1_exe
run_test ./build/fortran/example_uobyqa_fortran_2_exe
print_subsection "Rebuilding PRIMA in separate compilation mode"
git clean -dfx
git restore --staged .
git restore .
git checkout -t origin/lf-prima-sc-1
git checkout 52b863fcd3bb694045e50884fbb689a1ca75298d
FC="$FC --separate-compilation --cpp" cmake -S . -B build \
-DCMAKE_INSTALL_PREFIX=$(pwd)/install \
-DCMAKE_Fortran_FLAGS="" \
-DCMAKE_SHARED_LIBRARY_CREATE_Fortran_FLAGS="" \
-DCMAKE_MACOSX_RPATH=OFF \
-DCMAKE_SKIP_INSTALL_RPATH=ON \
-DCMAKE_SKIP_RPATH=ON
cmake --build build --target install
run_test ./build/fortran/example_bobyqa_fortran_1_exe
run_test ./build/fortran/example_bobyqa_fortran_2_exe
run_test ./build/fortran/example_cobyla_fortran_1_exe
run_test ./build/fortran/example_cobyla_fortran_2_exe
run_test ./build/fortran/example_lincoa_fortran_1_exe
run_test ./build/fortran/example_lincoa_fortran_2_exe
run_test ./build/fortran/example_newuoa_fortran_1_exe
run_test ./build/fortran/example_newuoa_fortran_2_exe
run_test ./build/fortran/example_uobyqa_fortran_1_exe
run_test ./build/fortran/example_uobyqa_fortran_2_exe
if [[ "$RUNNER_OS" == "macos-latest" ]]; then
cd fortran
name=bobyqa test_name=test_bobyqa.f90 FC="$FC --separate-compilation" ./script_sc.sh
name=newuoa test_name=test_newuoa.f90 FC="$FC --separate-compilation" ./script_sc.sh
name=uobyqa test_name=test_uobyqa.f90 FC="$FC --separate-compilation" ./script_sc.sh
name=cobyla test_name=test_cobyla.f90 FC="$FC --separate-compilation" ./script_sc.sh
name=lincoa test_name=test_lincoa.f90 FC="$FC --separate-compilation" ./script_sc.sh
cd ..
fi
if [[ "$RUNNER_OS" == "ubuntu-latest" ]]; then
cd fortran
name=uobyqa test_name=test_uobyqa.f90 FC="$FC --separate-compilation" ./script_sc.sh
cd ..
fi
print_success "Done with PRIMA"
cd ..
'
##########################
# Section 6: Legacy Minpack
##########################
time_section "🧪 Testing Legacy Minpack (SciPy)" '
git clone https://github.com/pranavchiku/minpack.git
cd minpack
git checkout -t origin/scipy31
git checkout 45801cf882871ea8a668213e8cf90b5817877484
mkdir lf && cd lf
FC="$FC --intrinsic-mangling" cmake ..
make
run_test examples/example_hybrd
run_test examples/example_hybrd1
run_test examples/example_lmder1
run_test examples/example_lmdif1
run_test examples/example_primes
print_subsection "Running CTest"
ctest
cd ../
print_subsection "Testing with f23 standard"
git clean -dfx
mkdir lf && cd lf
FC="$FC --intrinsic-mangling --std=f23" cmake ..
make
run_test examples/example_hybrd
run_test examples/example_hybrd1
run_test examples/example_lmder1
run_test examples/example_lmdif1
run_test examples/example_primes
print_subsection "Running CTest"
ctest
cd ../
print_subsection "Testing with separate compilation"
git clean -dfx
mkdir lf && cd lf
FC="$FC --intrinsic-mangling --separate-compilation" cmake ..
make
run_test examples/example_hybrd
run_test examples/example_hybrd1
run_test examples/example_lmder1
run_test examples/example_lmdif1
run_test examples/example_primes
print_subsection "Running CTest"
ctest
cd ../
print_subsection "Testing with separate compilation and f23 standard"
git clean -dfx
mkdir lf && cd lf
FC="$FC --intrinsic-mangling --separate-compilation --std=f23" cmake ..
make
run_test examples/example_hybrd
run_test examples/example_hybrd1
run_test examples/example_lmder1
run_test examples/example_lmdif1
run_test examples/example_primes
print_subsection "Running CTest"
ctest
cd ../
print_success "Done with Legacy Minpack (SciPy)"
cd ../
rm -rf minpack
'
##########################
# Section 7: Modern Minpack
##########################
time_section "🧪 Testing Modern Minpack (Fortran-Lang)" '
git clone https://github.com/fortran-lang/minpack modern_minpack_01
cd modern_minpack_01
git checkout c0b5aea9fcd2b83865af921a7a7e881904f8d3c2
$FC ./src/minpack.f90 -c --legacy-array-sections
$FC ./examples/example_hybrd.f90 --legacy-array-sections
$FC ./examples/example_hybrd1.f90 --legacy-array-sections
$FC ./examples/example_lmdif1.f90 --legacy-array-sections
$FC ./examples/example_lmder1.f90 --legacy-array-sections
print_subsection "Testing with separate compilation"
git clean -dfx
$FC ./src/minpack.f90 -c --legacy-array-sections --separate-compilation
$FC ./examples/example_hybrd.f90 --legacy-array-sections --separate-compilation minpack.o
$FC ./examples/example_hybrd1.f90 --legacy-array-sections --separate-compilation minpack.o
$FC ./examples/example_lmdif1.f90 --legacy-array-sections --separate-compilation minpack.o
$FC ./examples/example_lmder1.f90 --legacy-array-sections --separate-compilation minpack.o
'
time_section "🧪 Testing Modern Minpack (Result Check)" '
git clone https://github.com/Pranavchiku/modern_minpack.git modern_minpack_02
cd modern_minpack_02
git checkout -t origin/w5
git checkout fcde66ca86348eb0c4012dbdf0f4d8dba61261d8
$FC ./src/minpack.f90 -c --legacy-array-sections
$FC ./examples/example_hybrd.f90 --legacy-array-sections
$FC ./examples/example_hybrd1.f90 --legacy-array-sections
$FC ./examples/example_lmdif1.f90 --legacy-array-sections
$FC ./examples/example_lmder1.f90 --legacy-array-sections
print_subsection "Testing with separate compilation"
git clean -dfx
$FC ./src/minpack.f90 -c --legacy-array-sections --separate-compilation
$FC ./examples/example_hybrd.f90 --legacy-array-sections --separate-compilation minpack.o
$FC ./examples/example_hybrd1.f90 --legacy-array-sections --separate-compilation minpack.o
$FC ./examples/example_lmdif1.f90 --legacy-array-sections --separate-compilation minpack.o
$FC ./examples/example_lmder1.f90 --legacy-array-sections --separate-compilation minpack.o
'
##########################
# Section 8: dftatom
##########################
time_section "🧪 Testing dftatom" '
git clone https://github.com/certik/dftatom.git
cd dftatom
git checkout 9b678177f67e350b8a32e08cb61f51e6e708e87a
make -f Makefile.manual F90=$FC F90FLAGS=-I../../src
make -f Makefile.manual quicktest
git clean -dfx
make -f Makefile.manual F90=$FC F90FLAGS="-I../../src --fast"
make -f Makefile.manual quicktest
git clean -dfx
make -f Makefile.manual F90=$FC F90FLAGS="-I../../src --separate-compilation"
make -f Makefile.manual quicktest
git clean -dfx
make -f Makefile.manual F90=$FC F90FLAGS="-I../../src --separate-compilation --fast"
make -f Makefile.manual quicktest
'
##########################
# Section 9: fastGPT
##########################
time_section "🧪 Testing fastGPT" '
if [[ "$RUNNER_OS" == "macos-latest" ]]; then
git clone https://github.com/certik/fastGPT.git
cd fastGPT
git clean -dfx
git checkout -t origin/namelist
git checkout d3eef520c1be8e2db98a3c2189740af1ae7c3e06
# NOTE: the release file link below would not necessarily
# need to be updated if the commit hash above is updated
curl -f -L -o model.dat \
https://github.com/certik/fastGPT/releases/download/v1.0.0/model_fastgpt_124M_v1.dat
echo "11f6f018794924986b2fdccfbe8294233bb5e8ba28d40ae971dec3adbdc81ad7 model.dat" | shasum -a 256 --check
mkdir lf
cd lf
FC="$FC --realloc-lhs-arrays" CMAKE_PREFIX_PATH=$CONDA_PREFIX cmake -DFASTGPT_BLAS=OpenBLAS -DCMAKE_BUILD_TYPE=Debug ..
make VERBOSE=1
ln -s ../model.dat .
./gpt2
./test_basic_input
./test_more_inputs
cd ..
# TODO: regression as of `struct refactoring`
# mkdir lf-goc
# cd lf-goc
# FC="$FC --separate-compilation --rtlib --realloc-lhs-arrays" CMAKE_PREFIX_PATH=$CONDA_PREFIX cmake -DFASTGPT_BLAS=OpenBLAS -DCMAKE_BUILD_TYPE=Debug ..
# make VERBOSE=1
# ln -s ../model.dat .
# ./gpt2
# ./test_basic_input
# ./test_more_inputs
# cd ..
elif [[ "$RUNNER_OS" == "ubuntu-latest" ]]; then
git clone https://github.com/certik/fastGPT.git
cd fastGPT
git checkout -t origin/lf6
git checkout bc04dbf476b6173b0bb945ff920119ffaf4a290d
echo $CONDA_PREFIX
FC="$FC --realloc-lhs-arrays" CMAKE_PREFIX_PATH=$CONDA_PREFIX cmake -DFASTGPT_BLAS=OpenBLAS .
make
ls -l ./gpt2 ./chat ./test_basic_input ./test_chat ./test_more_inputs
file ./gpt2 ./chat ./test_basic_input ./test_chat ./test_more_inputs
ldd ./gpt2
ldd ./chat
ldd ./test_basic_input
ldd ./test_chat
ldd ./test_more_inputs
git clean -dfx
git checkout -t origin/lf37run
git checkout 12885a08c9a34cd260f29edc68feddccbc624493
# NOTE: the release file link below would not necessarily
# need to be updated if the commit hash above is updated
curl -f -L -o model.dat \
https://github.com/certik/fastGPT/releases/download/v1.0.0/model_fastgpt_124M_v1.dat
echo "11f6f018794924986b2fdccfbe8294233bb5e8ba28d40ae971dec3adbdc81ad7 model.dat" | shasum -a 256 --check
mkdir lf
cd lf
FC="$FC --realloc-lhs-arrays" CMAKE_PREFIX_PATH=$CONDA_PREFIX cmake -DFASTGPT_BLAS=OpenBLAS -DCMAKE_BUILD_TYPE=Debug ..
make VERBOSE=1
ln -s ../model.dat .
./gpt2
./test_more_inputs
./test_chat
ctest -V
cd ..
mkdir lf-goc
cd lf-goc
FC="$FC --separate-compilation --rtlib --realloc-lhs-arrays" CMAKE_PREFIX_PATH=$CONDA_PREFIX cmake -DFASTGPT_BLAS=OpenBLAS -DCMAKE_BUILD_TYPE=Debug ..
make VERBOSE=1
ln -s ../model.dat .
./gpt2
./test_more_inputs
./test_chat
ctest -V
cd ..
mkdir lf-fast
cd lf-fast
FC="$FC --fast --realloc-lhs-arrays" CMAKE_PREFIX_PATH=$CONDA_PREFIX cmake -DFASTGPT_BLAS=OpenBLAS -DCMAKE_BUILD_TYPE=Release ..
make VERBOSE=1
ln -s ../model.dat .
./gpt2
./test_more_inputs
./test_chat
ctest -V
cd ..
git checkout -t origin/namelist
git checkout d3eef520c1be8e2db98a3c2189740af1ae7c3e06
cd lf
git clean -dfx
FC="$FC --realloc-lhs-arrays" CMAKE_PREFIX_PATH=$CONDA_PREFIX cmake -DFASTGPT_BLAS=OpenBLAS -DCMAKE_BUILD_TYPE=Debug ..
make VERBOSE=1
ln -s ../model.dat .
./gpt2
./test_basic_input
./test_more_inputs
cd ..
cd lf-fast
git clean -dfx
FC="$FC --fast --realloc-lhs-arrays" CMAKE_PREFIX_PATH=$CONDA_PREFIX cmake -DFASTGPT_BLAS=OpenBLAS -DCMAKE_BUILD_TYPE=Release ..
make VERBOSE=1
ln -s ../model.dat .
./gpt2
./test_basic_input
./test_more_inputs
cd ..
rm -rf fastGPT/
fi
'
##########################
# Section 10: stdlib
##########################
time_section "🧪 Testing stdlib" '
git clone https://github.com/czgdp1807/stdlib.git
cd stdlib
export PATH="$(pwd)/../../src/bin:$PATH"
git checkout lf-21
git checkout 176c7a28bbc7a8a9b63441f7dfa980aeafbddd0f
micromamba install -c conda-forge fypp
git clean -fdx
FC=$FC cmake . -DTEST_DRIVE_BUILD_TESTING=OFF -DBUILD_EXAMPLE=ON -DCMAKE_Fortran_COMPILER_WORKS=TRUE -DCMAKE_Fortran_FLAGS="--cpp --realloc-lhs-arrays"
make -j8
ctest
'
##########################
# Section 11: SNAP
##########################
time_section "🧪 Testing SNAP" '
git clone https://github.com/certik/SNAP.git
cd SNAP
git checkout lf11
git checkout 169a9216f2c922e94065a519efbb0a6c8b55149e
cd ./src
make -j8 FORTRAN=$FC FFLAGS= MPI=no OPENMP=no
./gsnap ../qasnap/sample/inp out
make clean
make -j8 FORTRAN=$FC FFLAGS="--separate-compilation" MPI=no OPENMP=no
./gsnap ../qasnap/sample/inp out
make clean
make -j8 FORTRAN=$FC FFLAGS="--fast" MPI=no OPENMP=no
./gsnap ../qasnap/sample/inp out
'
##########################
# Section 13: LAPACK
##########################
time_section "🧪 Testing LAPACK" '
micromamba install -y -n lf cmake=3.31.2 # bump-up CMAKE
export PATH="$(pwd)/../src/bin:$PATH"
git clone https://github.com/gxyd/lapack.git
cd lapack
git fetch origin lf_07
git checkout lf_07
git checkout 9d9e48987ca109d46b92d515b59cb591fab9859a
cd build
./build_lf.sh
micromamba install -y -n lf cmake=3.29.1 # Restore CMAKE
'
##########################
# Section 14: Reference-LAPACK with BUILD_TESTING
##########################
time_section "🧪 Testing Reference-LAPACK v3.12.1 with BUILD_TESTING" '
export PATH="$(pwd)/../src/bin:$PATH"
git clone --depth 1 --branch v3.12.1 https://github.com/Reference-LAPACK/lapack.git lapack-testing
cd lapack-testing
# Patch to skip FortranCInterface_VERIFY (requires mixed Fortran/C linking)
sed -i "/FortranCInterface_VERIFY/d" LAPACKE/include/CMakeLists.txt
# CMake < 3.31 needs CMAKE_Fortran_PREPROCESS_SOURCE for LFortran
CMAKE_VERSION=$(cmake --version | head -1 | grep -oE "[0-9]+\.[0-9]+")
TOOLCHAIN_OPT=""
if [ "$(printf "%s\n3.31" "$CMAKE_VERSION" | sort -V | head -1)" != "3.31" ]; then
echo "set(CMAKE_Fortran_PREPROCESS_SOURCE \"<CMAKE_Fortran_COMPILER> -E <SOURCE> > <PREPROCESSED_SOURCE>\")" > lfortran.cmake
TOOLCHAIN_OPT="-DCMAKE_TOOLCHAIN_FILE=lfortran.cmake"
fi
# Configure with LFortran and BUILD_TESTING=ON
cmake -S . -B build -G Ninja \
$TOOLCHAIN_OPT \
-DCMAKE_Fortran_COMPILER=lfortran \
-DCMAKE_Fortran_FLAGS="--fixed-form-infer --implicit-interface --implicit-typing --legacy-array-sections --separate-compilation --use-loop-variable-after-loop" \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_INDEX64=OFF \
-DBUILD_INDEX64_EXT_API=OFF \
-DBUILD_COMPLEX=OFF \
-DBUILD_COMPLEX16=OFF \
-DBUILD_TESTING=ON
# Build BLAS, LAPACK, and test executables
cmake --build build -j8
cd build
# Run xlintsts (single real linear equations) - the key test
print_subsection "Running xlintsts stest.in"
set +e
timeout 120 ./bin/xlintsts < ../TESTING/stest.in 2>&1 | tee xlintsts_stest.out
exit_code=$?
set -e
echo "xlintsts exit code: $exit_code"
# Check for failures
if [ "$exit_code" -ne 0 ]; then
echo "ERROR: xlintsts exited with non-zero status"
exit 1
fi
if grep -qE "failed to pass the threshold" xlintsts_stest.out; then
echo "ERROR: threshold failures detected"
grep "failed to pass the threshold" xlintsts_stest.out
exit 1
fi
# Check for error messages (non-zero count before "error messages recorded")
if grep -E "[1-9][0-9]* error messages recorded" xlintsts_stest.out; then
echo "ERROR: error messages recorded"
exit 1
fi
print_success "xlintsts stest.in passed"
cd ../..
'
##################################
# Final Summary and Cleanup
##################################
print_section "✅ All Third Party Code Tests Completed Successfully"
# Optional cleanup
# cd ../..
# rm -rf "$TMP_DIR"
|