islpy 2025.1.5__tar.gz → 2025.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- islpy-2025.2/.basedpyright/baseline.json +214 -0
- islpy-2025.2/.editorconfig +32 -0
- islpy-2025.2/.gitignore +65 -0
- islpy-2025.2/.gitlab-ci.yml +92 -0
- islpy-2025.2/.gitmodules +3 -0
- islpy-2025.2/CMakeLists.txt +249 -0
- islpy-2025.2/PKG-INFO +69 -0
- islpy-2025.2/README.rst +46 -0
- islpy-2025.2/build-with-barvinok.sh +83 -0
- islpy-2025.2/doc/.gitignore +1 -0
- islpy-2025.2/doc/conf.py +80 -0
- islpy-2025.2/doc/misc.rst +206 -0
- islpy-2025.2/doc/ref_fundamental.rst +224 -0
- islpy-2025.2/doc/reference.rst +195 -0
- islpy-2025.2/doc/upload-docs.sh +3 -0
- islpy-2025.2/examples/.gitignore +1 -0
- islpy-2025.2/examples/demo.py +85 -0
- islpy-2025.2/gen_wrap.py +1675 -0
- islpy-2025.2/isl/.gitignore +60 -0
- islpy-2025.2/isl/.gitmodules +3 -0
- islpy-2025.2/isl/AUTHORS +71 -0
- islpy-2025.2/isl/ChangeLog +277 -0
- islpy-2025.2/isl/Makefile.am +746 -0
- islpy-2025.2/isl/README +53 -0
- islpy-2025.2/isl/autogen.sh +2 -0
- islpy-2025.2/isl/bound_test.sh.in +36 -0
- islpy-2025.2/isl/codegen_test.sh.in +25 -0
- islpy-2025.2/isl/cp_if_different.sh +10 -0
- islpy-2025.2/isl/cpp/cpp-checked-conversion.h.bot +2 -0
- islpy-2025.2/isl/cpp/cpp-checked-conversion.h.top +14 -0
- islpy-2025.2/isl/cpp/cpp-checked.h.bot +2 -0
- islpy-2025.2/isl/cpp/cpp-checked.h.top +200 -0
- islpy-2025.2/isl/cpp/cpp.h.bot +2 -0
- islpy-2025.2/isl/cpp/cpp.h.top +267 -0
- islpy-2025.2/isl/cpp/typed_cpp.h.bot +5 -0
- islpy-2025.2/isl/cpp/typed_cpp.h.top +21 -0
- islpy-2025.2/isl/doc/CodingStyle +42 -0
- islpy-2025.2/isl/doc/Makefile.am +33 -0
- islpy-2025.2/isl/doc/SubmittingPatches +53 -0
- islpy-2025.2/isl/doc/implementation.tex +2049 -0
- islpy-2025.2/isl/doc/interface +27 -0
- islpy-2025.2/isl/doc/isl.bib +485 -0
- islpy-2025.2/isl/doc/manual.tex +95 -0
- islpy-2025.2/isl/doc/mypod2latex +14 -0
- islpy-2025.2/isl/doc/reading.tex +46 -0
- islpy-2025.2/isl/doc/user.pod +13133 -0
- islpy-2025.2/isl/flow_test.sh.in +18 -0
- islpy-2025.2/isl/imath/.dockerignore +12 -0
- islpy-2025.2/isl/imath/.gitattributes +1 -0
- islpy-2025.2/isl/imath/.travis.yml +14 -0
- islpy-2025.2/isl/imath/ChangeLog +563 -0
- islpy-2025.2/isl/imath/README.md +107 -0
- islpy-2025.2/isl/imath/contrib/Makefile.msvc +84 -0
- islpy-2025.2/isl/imath/contrib/README +3 -0
- islpy-2025.2/isl/imath/doc.md +1198 -0
- islpy-2025.2/isl/imath/doc.md.in +394 -0
- islpy-2025.2/isl/imath/examples/basecvt.c +117 -0
- islpy-2025.2/isl/imath/examples/findprime.c +67 -0
- islpy-2025.2/isl/imath/examples/imcalc.c +1134 -0
- islpy-2025.2/isl/imath/examples/input.c +116 -0
- islpy-2025.2/isl/imath/examples/pi.c +173 -0
- islpy-2025.2/isl/imath/examples/randprime.c +240 -0
- islpy-2025.2/isl/imath/examples/rounding.c +83 -0
- islpy-2025.2/isl/imath/examples/rsakey.c +304 -0
- islpy-2025.2/isl/imath/tests/add.tc +848 -0
- islpy-2025.2/isl/imath/tests/bigmul.tc +10 -0
- islpy-2025.2/isl/imath/tests/bigsqr.tc +11 -0
- islpy-2025.2/isl/imath/tests/bintest.c +104 -0
- islpy-2025.2/isl/imath/tests/bug-swap.c +22 -0
- islpy-2025.2/isl/imath/tests/compare.tc +31 -0
- islpy-2025.2/isl/imath/tests/conv.tc +228 -0
- islpy-2025.2/isl/imath/tests/div.tc +963 -0
- islpy-2025.2/isl/imath/tests/egcd.tc +752 -0
- islpy-2025.2/isl/imath/tests/emod.tc +756 -0
- islpy-2025.2/isl/imath/tests/emodv.tc +305 -0
- islpy-2025.2/isl/imath/tests/expt.tc +154 -0
- islpy-2025.2/isl/imath/tests/gcd.tc +761 -0
- islpy-2025.2/isl/imath/tests/imath-test.scm +172 -0
- islpy-2025.2/isl/imath/tests/init.tc +12 -0
- islpy-2025.2/isl/imath/tests/invmod.tc +452 -0
- islpy-2025.2/isl/imath/tests/isprime.tc +33 -0
- islpy-2025.2/isl/imath/tests/lcm.tc +780 -0
- islpy-2025.2/isl/imath/tests/linux/Dockerfile +14 -0
- islpy-2025.2/isl/imath/tests/mod.tc +754 -0
- islpy-2025.2/isl/imath/tests/mul.tc +864 -0
- islpy-2025.2/isl/imath/tests/neg.tc +9 -0
- islpy-2025.2/isl/imath/tests/pi1024.txt +1 -0
- islpy-2025.2/isl/imath/tests/pi1500-10.txt +1 -0
- islpy-2025.2/isl/imath/tests/pi1698-16.txt +1 -0
- islpy-2025.2/isl/imath/tests/qadd.tc +803 -0
- islpy-2025.2/isl/imath/tests/qaddz.tc +800 -0
- islpy-2025.2/isl/imath/tests/qdiv.tc +803 -0
- islpy-2025.2/isl/imath/tests/qdivz.tc +800 -0
- islpy-2025.2/isl/imath/tests/qmisc.tc +49 -0
- islpy-2025.2/isl/imath/tests/qmul.tc +803 -0
- islpy-2025.2/isl/imath/tests/qmulz.tc +800 -0
- islpy-2025.2/isl/imath/tests/qsub.tc +803 -0
- islpy-2025.2/isl/imath/tests/qsubz.tc +800 -0
- islpy-2025.2/isl/imath/tests/qtodec.tc +1303 -0
- islpy-2025.2/isl/imath/tests/root.tc +44 -0
- islpy-2025.2/isl/imath/tests/rtest.c +120 -0
- islpy-2025.2/isl/imath/tests/set.tc +12 -0
- islpy-2025.2/isl/imath/tests/sqr.tc +755 -0
- islpy-2025.2/isl/imath/tests/sub.tc +849 -0
- islpy-2025.2/isl/imath/tests/test.bc +155 -0
- islpy-2025.2/isl/imath/tests/test.sh +85 -0
- islpy-2025.2/isl/imath/tools/findthreshold.py +94 -0
- islpy-2025.2/isl/imath/tools/mkdoc.py +209 -0
- islpy-2025.2/isl/interface/Makefile.am +28 -0
- islpy-2025.2/isl/interface/configure.ac +31 -0
- islpy-2025.2/isl/interface/cpp.cc +1311 -0
- islpy-2025.2/isl/interface/cpp.h +212 -0
- islpy-2025.2/isl/interface/cpp_conversion.cc +86 -0
- islpy-2025.2/isl/interface/cpp_conversion.h +15 -0
- islpy-2025.2/isl/interface/extract_interface.cc +630 -0
- islpy-2025.2/isl/interface/extract_interface.h +3 -0
- islpy-2025.2/isl/interface/generator.cc +889 -0
- islpy-2025.2/isl/interface/generator.h +203 -0
- islpy-2025.2/isl/interface/isl.py.core +19097 -0
- islpy-2025.2/isl/interface/plain_cpp.cc +2098 -0
- islpy-2025.2/isl/interface/plain_cpp.h +174 -0
- islpy-2025.2/isl/interface/python.cc +1179 -0
- islpy-2025.2/isl/interface/python.h +68 -0
- islpy-2025.2/isl/interface/set_lang_defaults_arg4.h +16 -0
- islpy-2025.2/isl/isl_srcdir.c.in +1 -0
- islpy-2025.2/isl/isl_test2.cc +950 -0
- islpy-2025.2/isl/isl_test_cpp-checked-conversion.cc +99 -0
- islpy-2025.2/isl/isl_test_cpp-checked.cc +312 -0
- islpy-2025.2/isl/isl_test_cpp-generic.cc +374 -0
- islpy-2025.2/isl/isl_test_cpp.cc +381 -0
- islpy-2025.2/isl/isl_test_cpp17-checked.cc +41 -0
- islpy-2025.2/isl/isl_test_cpp17-generic.cc +68 -0
- islpy-2025.2/isl/isl_test_cpp17.cc +78 -0
- islpy-2025.2/isl/isl_test_cpp_failed.sh +8 -0
- islpy-2025.2/isl/isl_test_python.py +504 -0
- islpy-2025.2/isl/libisl-gdb.py +100 -0
- islpy-2025.2/isl/m4/ax_c___attribute__.m4 +66 -0
- islpy-2025.2/isl/m4/ax_cc_maxopt.m4 +206 -0
- islpy-2025.2/isl/m4/ax_cflags_warn_all.m4 +158 -0
- islpy-2025.2/isl/m4/ax_check_compile_flag.m4 +53 -0
- islpy-2025.2/isl/m4/ax_compiler_vendor.m4 +120 -0
- islpy-2025.2/isl/m4/ax_create_pkgconfig_info.m4 +351 -0
- islpy-2025.2/isl/m4/ax_create_stdint_h.m4 +716 -0
- islpy-2025.2/isl/m4/ax_cxx_compile_stdcxx.m4 +962 -0
- islpy-2025.2/isl/m4/ax_cxx_compile_stdcxx_11.m4 +39 -0
- islpy-2025.2/isl/m4/ax_cxx_compile_stdcxx_11_no_override.m4 +37 -0
- islpy-2025.2/isl/m4/ax_cxx_compile_stdcxx_17.m4 +35 -0
- islpy-2025.2/isl/m4/ax_detect_clang.m4 +297 -0
- islpy-2025.2/isl/m4/ax_detect_git_head.m4 +34 -0
- islpy-2025.2/isl/m4/ax_detect_gmp.m4 +47 -0
- islpy-2025.2/isl/m4/ax_detect_imath.m4 +16 -0
- islpy-2025.2/isl/m4/ax_gcc_archflag.m4 +267 -0
- islpy-2025.2/isl/m4/ax_gcc_warn_unused_result.m4 +37 -0
- islpy-2025.2/isl/m4/ax_gcc_x86_cpuid.m4 +89 -0
- islpy-2025.2/isl/m4/ax_prog_cc_for_build.m4 +187 -0
- islpy-2025.2/isl/m4/ax_prog_cxx_for_build.m4 +110 -0
- islpy-2025.2/isl/m4/ax_set_warning_flags.m4 +17 -0
- islpy-2025.2/isl/m4/ax_submodule.m4 +71 -0
- islpy-2025.2/isl/m4/isl_detect_diff_options.m4 +13 -0
- islpy-2025.2/isl/pip_test.sh.in +31 -0
- islpy-2025.2/isl/python/isl.py.top +49 -0
- islpy-2025.2/isl/schedule_test.sh.in +27 -0
- islpy-2025.2/isl/test_inputs/affine.polylib +9 -0
- islpy-2025.2/isl/test_inputs/affine2.polylib +9 -0
- islpy-2025.2/isl/test_inputs/affine3.polylib +7 -0
- islpy-2025.2/isl/test_inputs/application.omega +3 -0
- islpy-2025.2/isl/test_inputs/application2.omega +3 -0
- islpy-2025.2/isl/test_inputs/basicLinear.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/basicLinear2.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/basicTest.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/basicTestParameterPosNeg.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/boulet.pip +13 -0
- islpy-2025.2/isl/test_inputs/brisebarre.pip +34 -0
- islpy-2025.2/isl/test_inputs/cg1.pip +15 -0
- islpy-2025.2/isl/test_inputs/codegen/atomic.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/atomic.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/atomic.st +8 -0
- islpy-2025.2/isl/test_inputs/codegen/atomic2.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/atomic2.in +4 -0
- islpy-2025.2/isl/test_inputs/codegen/atomic3.c +9 -0
- islpy-2025.2/isl/test_inputs/codegen/atomic3.in +5 -0
- islpy-2025.2/isl/test_inputs/codegen/atomic4.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/atomic4.in +4 -0
- islpy-2025.2/isl/test_inputs/codegen/bilinear.c +9 -0
- islpy-2025.2/isl/test_inputs/codegen/bilinear.st +9 -0
- islpy-2025.2/isl/test_inputs/codegen/cholesky.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/cholesky.st +9 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/0D-1.c +1 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/0D-1.st +3 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/0D-2.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/0D-2.st +3 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/0D-3.c +1 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/0D-3.st +3 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/1point-1.c +1 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/1point-1.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/1point-2.c +1 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/1point-2.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/4-param.c +12 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/4-param.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/README +2 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/backtrack.c +1 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/backtrack.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-1.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-1.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-2.c +1 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-2.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-3.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-3.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-4.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-4.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-5.c +1 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-5.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-6.c +1 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-6.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/block.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/block.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/block2.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/block2.st +11 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/block3.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/block3.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/byu98-1-2-3.c +16 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/byu98-1-2-3.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/cholesky.c +12 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/cholesky.st +26 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/cholesky2.c +15 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/cholesky2.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/christian.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/christian.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/classen.c +63 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/classen.st +24 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/classen2.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/classen2.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/constant.c +16 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/constant.st +11 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/constbound.c +8 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/constbound.st +16 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/darte.c +14 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/darte.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/dealII.c +16 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/dealII.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/donotsimp.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/donotsimp.st +9 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/dot.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/dot.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/dot2.c +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/dot2.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/durbin_e_s.c +21 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/durbin_e_s.st +16 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/emploi.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/emploi.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/equality.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/equality.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/equality2.c +8 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/equality2.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/esced.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/esced.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/ex1.c +13 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/ex1.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/faber.c +147 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/faber.st +18 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/forwardsub-1-1-2.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/forwardsub-1-1-2.st +12 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/forwardsub-2-1-2-3.c +8 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/forwardsub-2-1-2-3.st +12 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/forwardsub-3-1-2.c +15 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/forwardsub-3-1-2.st +12 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/gauss.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/gauss.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/gesced.c +14 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/gesced.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/gesced2.c +18 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/gesced2.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/gesced3.c +8 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/gesced3.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/guide.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/guide.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/iftest.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/iftest.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/iftest2.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/iftest2.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/infinite2.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/infinite2.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/jacobi-shared.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/jacobi-shared.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/largeur.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/largeur.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/levenshtein-1-2-3.c +30 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/levenshtein-1-2-3.st +16 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/lex.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/lex.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/lineality-1-2.c +8 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/lineality-1-2.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/lineality-2-1-2.c +12 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/lineality-2-1-2.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/logo.c +15 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/logo.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/logopar.c +15 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/logopar.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/lu.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/lu.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/lu2.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/lu2.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/lux.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/lux.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/merge.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/merge.st +11 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/min-1-1.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/min-1-1.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/min-2-1.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/min-2-1.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/min-3-1.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/min-3-1.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/min-4-1.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/min-4-1.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/mod.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/mod.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/mod2.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/mod2.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/mod3.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/mod3.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/mod4.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/mod4.st +11 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/mode.c +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/mode.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/multi-mm-1.c +8 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/multi-mm-1.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/multi-stride.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/multi-stride2.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/multi-stride2.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/mxm-shared.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/mxm-shared.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/no_lindep.c +1 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/no_lindep.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/nul_basic1.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/nul_basic1.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/nul_basic2.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/nul_basic2.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/nul_complex1.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/nul_complex1.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/nul_lcpc.c +11 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/nul_lcpc.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/orc.c +14 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/orc.st +13 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/otl.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/otl.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/param-split.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/param-split.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/pouchet.c +12 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/pouchet.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/rectangle.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/rectangle.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-QR.c +54 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-QR.st +36 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-bastoul3.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-bastoul3.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-cholesky2.c +9 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-cholesky2.st +20 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-fusion1.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-fusion1.st +17 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-fusion2.c +12 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-fusion2.st +16 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-jacobi2.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-jacobi2.st +9 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-jacobi3.c +8 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-jacobi3.st +22 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam1.c +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam1.st +13 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam2.c +8 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam2.st +23 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam3.c +11 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam3.st +23 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam4.c +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam4.st +19 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam5.c +9 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam5.st +26 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam6.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam6.st +19 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-liu-zhuge1.c +19 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-liu-zhuge1.st +16 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-loechner3.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-loechner3.st +12 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-loechner4.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-loechner4.st +15 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-loechner5.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-loechner5.st +15 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-long.c +14 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-long.st +36 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-mg-interp.c +83 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-mg-interp.st +115 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-mg-interp2.c +16 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-mg-interp2.st +45 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-mg-psinv.c +9 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-mg-psinv.st +23 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-mg-resid.c +9 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-mg-resid.st +23 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-mg-rprj3.c +35 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-mg-rprj3.st +28 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali1.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali1.st +16 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali2.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali2.st +19 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali3.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali3.st +22 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali4.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali4.st +19 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali5.c +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali5.st +26 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali6.c +8 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali6.st +22 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-stride.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-stride.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-stride2.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-stride2.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-tang-xue1.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-tang-xue1.st +15 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-two.c +1 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-two.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/singleton.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/singleton.st +7 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/sor1d.c +13 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/sor1d.st +24 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/square+triangle-1-1-2-3.c +9 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/square+triangle-1-1-2-3.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/stride.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/stride.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/stride2.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/stride2.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/stride3.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/stride3.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/stride4.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/stride4.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/swim.c +159 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/swim.st +223 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/test.c +15 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/test.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/thomasset.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/thomasset.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/tiling.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/tiling.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/uday_scalars.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/uday_scalars.st +13 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/union.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/union.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/unroll.c +11 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/unroll.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/unroll2.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/unroll2.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/usvd_e_t.c +346 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/usvd_e_t.st +34 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/vasilache.c +22 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/vasilache.st +37 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/vivien.c +85 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/vivien.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/vivien2.c +76 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/vivien2.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/walters.c +14 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/walters.st +12 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/walters2.c +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/walters2.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/walters3.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/walters3.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/wavefront.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/wavefront.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/yosr.c +10 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/yosr.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/yosr2.c +11 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/yosr2.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/youcef.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/youcef.st +11 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/youcefn.c +8 -0
- islpy-2025.2/isl/test_inputs/codegen/cloog/youcefn.st +11 -0
- islpy-2025.2/isl/test_inputs/codegen/component0.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/component0.st +3 -0
- islpy-2025.2/isl/test_inputs/codegen/component1.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/component1.st +7 -0
- islpy-2025.2/isl/test_inputs/codegen/component2.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/component2.st +7 -0
- islpy-2025.2/isl/test_inputs/codegen/component3.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/component3.st +7 -0
- islpy-2025.2/isl/test_inputs/codegen/component4.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/component4.st +7 -0
- islpy-2025.2/isl/test_inputs/codegen/component5.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/component5.st +9 -0
- islpy-2025.2/isl/test_inputs/codegen/component6.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/component6.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/component7.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/component7.st +11 -0
- islpy-2025.2/isl/test_inputs/codegen/correlation.c +55 -0
- islpy-2025.2/isl/test_inputs/codegen/correlation.st +18 -0
- islpy-2025.2/isl/test_inputs/codegen/disjuncts.c +10 -0
- islpy-2025.2/isl/test_inputs/codegen/disjuncts.in +7 -0
- islpy-2025.2/isl/test_inputs/codegen/disjuncts2.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/disjuncts2.st +4 -0
- islpy-2025.2/isl/test_inputs/codegen/dwt.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/dwt.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/empty.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/empty.in +5 -0
- islpy-2025.2/isl/test_inputs/codegen/expansion.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/expansion.st +9 -0
- islpy-2025.2/isl/test_inputs/codegen/filter.c +9 -0
- islpy-2025.2/isl/test_inputs/codegen/filter.st +18 -0
- islpy-2025.2/isl/test_inputs/codegen/gemm.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/gemm.st +12 -0
- islpy-2025.2/isl/test_inputs/codegen/group.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/group.st +2 -0
- islpy-2025.2/isl/test_inputs/codegen/hoist.c +45 -0
- islpy-2025.2/isl/test_inputs/codegen/hoist.in +10 -0
- islpy-2025.2/isl/test_inputs/codegen/hoist2.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/hoist2.in +5 -0
- islpy-2025.2/isl/test_inputs/codegen/isolate1.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/isolate1.st +5 -0
- islpy-2025.2/isl/test_inputs/codegen/isolate2.c +9 -0
- islpy-2025.2/isl/test_inputs/codegen/isolate2.st +7 -0
- islpy-2025.2/isl/test_inputs/codegen/isolate3.c +15 -0
- islpy-2025.2/isl/test_inputs/codegen/isolate3.st +5 -0
- islpy-2025.2/isl/test_inputs/codegen/isolate4.c +11 -0
- islpy-2025.2/isl/test_inputs/codegen/isolate4.st +5 -0
- islpy-2025.2/isl/test_inputs/codegen/isolate5.c +27 -0
- islpy-2025.2/isl/test_inputs/codegen/isolate5.st +5 -0
- islpy-2025.2/isl/test_inputs/codegen/isolate6.c +24 -0
- islpy-2025.2/isl/test_inputs/codegen/isolate6.st +8 -0
- islpy-2025.2/isl/test_inputs/codegen/isolate7.c +27 -0
- islpy-2025.2/isl/test_inputs/codegen/isolate7.st +16 -0
- islpy-2025.2/isl/test_inputs/codegen/jacobi_kernel4.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/jacobi_kernel4.in +4 -0
- islpy-2025.2/isl/test_inputs/codegen/lu.c +18 -0
- islpy-2025.2/isl/test_inputs/codegen/lu.in +4 -0
- islpy-2025.2/isl/test_inputs/codegen/mod.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/mod.in +4 -0
- islpy-2025.2/isl/test_inputs/codegen/mod2.c +1 -0
- islpy-2025.2/isl/test_inputs/codegen/mod2.st +8 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/README +5 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/basics-0.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/basics-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/basics-1.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/basics-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/chosol-0.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/chosol-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/chosol-1.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/chosol-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/code_gen-0.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/code_gen-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/code_gen-1.c +16 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/code_gen-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/code_gen-2.c +15 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/code_gen-2.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/collard-0.c +14 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/collard-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/dagstuhl1-0.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/dagstuhl1-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/dagstuhl1-1.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/dagstuhl1-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/fc1-0.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/fc1-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/fc1-1.c +15 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/fc1-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/fc1-2.c +15 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/fc1-2.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/fc2-0.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/fc2-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/fc2-1.c +15 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/fc2-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-0.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-1.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-2.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-2.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-3.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-3.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-4.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-4.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-5.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-5.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-6.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-6.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/gc-0.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/gc-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/ge-0.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/ge-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/ge-1.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/ge-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/gist-0.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/gist-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/gist-1.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/gist-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/gist-2.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/gist-2.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/gist-3.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/gist-3.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/gist-4.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/gist-4.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/gist-5.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/gist-5.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/guard1-0.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/guard1-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/guard1-1.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/guard1-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/hpf-0.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/hpf-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/if_then-0.c +13 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/if_then-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/if_then-1.c +9 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/if_then-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/if_then-2.c +12 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/if_then-2.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/if_then-3.c +13 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/if_then-3.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/if_then-4.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/if_then-4.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/if_then-5.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/if_then-5.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/iter1-0.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/iter1-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/iter2-0.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/iter2-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/iter3-0.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/iter3-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/iter4-0.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/iter4-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/iter5-0.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/iter5-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/iter6-0.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/iter6-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/iter6-1.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/iter6-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/iter7-0.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/iter7-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/iter8-0.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/iter8-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/iter9-0.c +11 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/iter9-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lefur00-0.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lefur00-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lefur01-0.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lefur01-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lefur01-1.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lefur01-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lefur03-0.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lefur03-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lefur04-0.c +8 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lefur04-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift1-0.c +9 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift1-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift1-1.c +14 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift1-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift1-2.c +15 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift1-2.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift1-3.c +16 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift1-3.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift1-4.c +17 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift1-4.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift1-5.c +14 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift1-5.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift2-0.c +9 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift2-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift2-1.c +17 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift2-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift2-2.c +19 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift2-2.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift2-3.c +21 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift2-3.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift2-4.c +23 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift2-4.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift2-5.c +20 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lift2-5.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lu-0.c +10 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lu-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lu-1.c +10 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lu-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lu-2.c +10 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lu-2.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lu-3.c +14 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lu-3.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lu_ijk-0.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lu_ijk-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lu_ijk-1.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lu_ijk-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lu_ijk-2.c +11 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lu_ijk-2.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lu_spmd-0.c +13 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lu_spmd-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lu_spmd-1.c +13 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/lu_spmd-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m1-0.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m1-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m1-1.c +14 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m1-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m10-0.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m10-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m10-1.c +15 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m10-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m11-0.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m11-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m12-0.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m12-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m12-1.c +23 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m12-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m2-0.c +12 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m2-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m2-1.c +10 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m2-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m3-0.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m3-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m4-0.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m4-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m4-1.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m4-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m7-0.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m7-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m7-1.c +11 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m7-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m8-0.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m8-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m8-1.c +11 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m8-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m9-0.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m9-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m9-1.c +5 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/m9-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/olda-0.c +8 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/olda-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/olda-1.c +9 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/olda-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/p.delft-0.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/p.delft-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/p.delft2-0.c +11 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/p.delft2-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/p6-0.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/p6-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/p6-1.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/p6-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/stride1-0.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/stride1-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/stride2-0.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/stride2-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/stride3-0.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/stride3-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/stride4-0.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/stride4-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/stride5-0.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/stride5-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/stride6-0.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/stride6-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/stride6-1.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/stride6-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/stride6-2.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/stride6-2.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/stride7-0.c +15 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/stride7-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/stride7-1.c +12 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/stride7-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/substitution-0.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/substitution-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/substitution-1.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/substitution-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/substitution-2.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/substitution-2.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/substitution-3.c +1 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/substitution-3.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/substitution-4.c +1 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/substitution-4.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/syr2k-0.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/syr2k-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/syr2k-1.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/syr2k-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/syr2k-2.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/syr2k-2.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/syr2k-3.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/syr2k-3.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/ts1d-check-sblock-0.c +13 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/ts1d-check-sblock-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/ts1d-check0-0.c +11 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/ts1d-check0-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/ts1d-mp-i_ts-m_b-0.c +34 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/ts1d-mp-i_ts-m_b-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/ts1d-orig0-0.c +8 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/ts1d-orig0-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/wak1-0.c +25 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/wak1-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/wak1-1.c +53 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/wak1-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/wak2-0.c +25 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/wak2-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/wak2-1.c +34 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/wak2-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/wak3-0.c +8 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/wak3-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/wak3-1.c +19 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/wak3-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/wak4-0.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/wak4-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/wak4-1.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/wak4-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/x-0.c +14 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/x-0.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/x-1.c +14 -0
- islpy-2025.2/isl/test_inputs/codegen/omega/x-1.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/pldi2012/README +2 -0
- islpy-2025.2/isl/test_inputs/codegen/pldi2012/figure7_b.c +9 -0
- islpy-2025.2/isl/test_inputs/codegen/pldi2012/figure7_b.in +5 -0
- islpy-2025.2/isl/test_inputs/codegen/pldi2012/figure7_c.c +12 -0
- islpy-2025.2/isl/test_inputs/codegen/pldi2012/figure7_c.in +5 -0
- islpy-2025.2/isl/test_inputs/codegen/pldi2012/figure7_d.c +13 -0
- islpy-2025.2/isl/test_inputs/codegen/pldi2012/figure7_d.in +5 -0
- islpy-2025.2/isl/test_inputs/codegen/pldi2012/figure8_a.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/pldi2012/figure8_a.in +4 -0
- islpy-2025.2/isl/test_inputs/codegen/pldi2012/figure8_b.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/pldi2012/figure8_b.in +4 -0
- islpy-2025.2/isl/test_inputs/codegen/redundant.c +12 -0
- islpy-2025.2/isl/test_inputs/codegen/redundant.st +6 -0
- islpy-2025.2/isl/test_inputs/codegen/residue.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/residue.st +3 -0
- islpy-2025.2/isl/test_inputs/codegen/roman.c +30 -0
- islpy-2025.2/isl/test_inputs/codegen/roman.in +5 -0
- islpy-2025.2/isl/test_inputs/codegen/separate.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/separate.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/separate.st +8 -0
- islpy-2025.2/isl/test_inputs/codegen/separate2.c +8 -0
- islpy-2025.2/isl/test_inputs/codegen/separate2.in +4 -0
- islpy-2025.2/isl/test_inputs/codegen/separation_class.c +15 -0
- islpy-2025.2/isl/test_inputs/codegen/separation_class.in +6 -0
- islpy-2025.2/isl/test_inputs/codegen/separation_class2.c +13 -0
- islpy-2025.2/isl/test_inputs/codegen/separation_class2.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/separation_class3.c +31 -0
- islpy-2025.2/isl/test_inputs/codegen/separation_class3.in +4 -0
- islpy-2025.2/isl/test_inputs/codegen/separation_class4.c +22 -0
- islpy-2025.2/isl/test_inputs/codegen/separation_class4.in +10 -0
- islpy-2025.2/isl/test_inputs/codegen/shift.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/shift.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/shift2.c +51 -0
- islpy-2025.2/isl/test_inputs/codegen/shift2.in +5 -0
- islpy-2025.2/isl/test_inputs/codegen/shift_unroll.c +14 -0
- islpy-2025.2/isl/test_inputs/codegen/shift_unroll.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/single_valued.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/single_valued.in +5 -0
- islpy-2025.2/isl/test_inputs/codegen/sor1d-part.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/sor1d-part.st +10 -0
- islpy-2025.2/isl/test_inputs/codegen/stride.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/stride.in +6 -0
- islpy-2025.2/isl/test_inputs/codegen/stride5.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/stride5.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/stride6.c +4 -0
- islpy-2025.2/isl/test_inputs/codegen/stride6.in +3 -0
- islpy-2025.2/isl/test_inputs/codegen/stride7.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/stride7.in +7 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll.c +3 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll.in +5 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll10.c +29 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll10.in +4 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll10.st +7 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll11.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll11.in +10 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll2.c +9 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll2.in +5 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll3.c +2 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll3.in +6 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll4.c +14 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll4.in +5 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll6.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll6.in +7 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll7.c +8 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll7.in +5 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll8.c +6 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll8.st +5 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll9.c +7 -0
- islpy-2025.2/isl/test_inputs/codegen/unroll9.st +7 -0
- islpy-2025.2/isl/test_inputs/convex0.polylib +11 -0
- islpy-2025.2/isl/test_inputs/convex1.polylib +17 -0
- islpy-2025.2/isl/test_inputs/convex10.polylib +17 -0
- islpy-2025.2/isl/test_inputs/convex11.polylib +14 -0
- islpy-2025.2/isl/test_inputs/convex12.polylib +12 -0
- islpy-2025.2/isl/test_inputs/convex13.polylib +17 -0
- islpy-2025.2/isl/test_inputs/convex14.polylib +14 -0
- islpy-2025.2/isl/test_inputs/convex15.polylib +66 -0
- islpy-2025.2/isl/test_inputs/convex2.polylib +24 -0
- islpy-2025.2/isl/test_inputs/convex3.polylib +10 -0
- islpy-2025.2/isl/test_inputs/convex4.polylib +9 -0
- islpy-2025.2/isl/test_inputs/convex5.polylib +12 -0
- islpy-2025.2/isl/test_inputs/convex6.polylib +17 -0
- islpy-2025.2/isl/test_inputs/convex7.polylib +9 -0
- islpy-2025.2/isl/test_inputs/convex8.polylib +24 -0
- islpy-2025.2/isl/test_inputs/convex9.polylib +14 -0
- islpy-2025.2/isl/test_inputs/devos.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/equality1.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/equality2.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/equality3.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/equality4.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/equality5.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/esced.pip +27 -0
- islpy-2025.2/isl/test_inputs/ex.pip +9 -0
- islpy-2025.2/isl/test_inputs/ex2.pip +9 -0
- islpy-2025.2/isl/test_inputs/exist.pip +5 -0
- islpy-2025.2/isl/test_inputs/exist2.pip +5 -0
- islpy-2025.2/isl/test_inputs/faddeev.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/fimmel.pip +12 -0
- islpy-2025.2/isl/test_inputs/flow/kill_loop-tree.ai +11 -0
- islpy-2025.2/isl/test_inputs/flow/kill_loop-tree.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/kill_loop.ai +4 -0
- islpy-2025.2/isl/test_inputs/flow/kill_loop.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/kill_loop2-tree.ai +11 -0
- islpy-2025.2/isl/test_inputs/flow/kill_loop2-tree.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/kill_loop2.ai +4 -0
- islpy-2025.2/isl/test_inputs/flow/kill_loop2.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/kill_loop3-tree.ai +11 -0
- islpy-2025.2/isl/test_inputs/flow/kill_loop3-tree.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/kill_loop3.ai +4 -0
- islpy-2025.2/isl/test_inputs/flow/kill_loop3.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/kill_may_loop-tree.ai +11 -0
- islpy-2025.2/isl/test_inputs/flow/kill_may_loop-tree.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/kill_may_loop.ai +4 -0
- islpy-2025.2/isl/test_inputs/flow/kill_may_loop.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/kill_may_loop2-tree.ai +11 -0
- islpy-2025.2/isl/test_inputs/flow/kill_may_loop2-tree.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/kill_may_loop2.ai +4 -0
- islpy-2025.2/isl/test_inputs/flow/kill_may_loop2.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/kill_may_loop3-tree.ai +11 -0
- islpy-2025.2/isl/test_inputs/flow/kill_may_loop3-tree.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/kill_may_loop3.ai +4 -0
- islpy-2025.2/isl/test_inputs/flow/kill_may_loop3.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/loop-tree.ai +10 -0
- islpy-2025.2/isl/test_inputs/flow/loop-tree.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/loop.ai +3 -0
- islpy-2025.2/isl/test_inputs/flow/loop.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/may_loop-tree.ai +10 -0
- islpy-2025.2/isl/test_inputs/flow/may_loop-tree.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/may_loop.ai +3 -0
- islpy-2025.2/isl/test_inputs/flow/may_loop.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/mixed_loop-tree.ai +11 -0
- islpy-2025.2/isl/test_inputs/flow/mixed_loop-tree.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/mixed_loop.ai +4 -0
- islpy-2025.2/isl/test_inputs/flow/mixed_loop.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/multi.ai +10 -0
- islpy-2025.2/isl/test_inputs/flow/multi.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/multi_source-tree.ai +8 -0
- islpy-2025.2/isl/test_inputs/flow/multi_source-tree.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/multi_source.ai +3 -0
- islpy-2025.2/isl/test_inputs/flow/multi_source.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/multi_source2-tree.ai +9 -0
- islpy-2025.2/isl/test_inputs/flow/multi_source2-tree.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/multi_source2.ai +4 -0
- islpy-2025.2/isl/test_inputs/flow/multi_source2.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/multi_source3-tree.ai +13 -0
- islpy-2025.2/isl/test_inputs/flow/multi_source3-tree.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/multi_source3.ai +4 -0
- islpy-2025.2/isl/test_inputs/flow/multi_source3.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/multi_source4-tree.ai +13 -0
- islpy-2025.2/isl/test_inputs/flow/multi_source4-tree.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/multi_source4.ai +4 -0
- islpy-2025.2/isl/test_inputs/flow/multi_source4.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/no_source-tree.ai +3 -0
- islpy-2025.2/isl/test_inputs/flow/no_source-tree.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/no_source.ai +2 -0
- islpy-2025.2/isl/test_inputs/flow/no_source.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/no_source2-tree.ai +8 -0
- islpy-2025.2/isl/test_inputs/flow/no_source2-tree.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/no_source2.ai +3 -0
- islpy-2025.2/isl/test_inputs/flow/no_source2.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/single_may_source-tree.ai +8 -0
- islpy-2025.2/isl/test_inputs/flow/single_may_source-tree.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/single_may_source.ai +3 -0
- islpy-2025.2/isl/test_inputs/flow/single_may_source.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/single_source-tree.ai +8 -0
- islpy-2025.2/isl/test_inputs/flow/single_source-tree.flow +4 -0
- islpy-2025.2/isl/test_inputs/flow/single_source.ai +3 -0
- islpy-2025.2/isl/test_inputs/flow/single_source.flow +4 -0
- islpy-2025.2/isl/test_inputs/linearExample.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/max.pip +9 -0
- islpy-2025.2/isl/test_inputs/neg.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/negative.pip +9 -0
- islpy-2025.2/isl/test_inputs/philippe.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/philippe3vars.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/philippe3vars3pars.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/philippeNeg.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/philippePolynomialCoeff.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/philippePolynomialCoeff1P.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/product.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/schedule/bounded_coefficients.sc +12 -0
- islpy-2025.2/isl/test_inputs/schedule/bounded_coefficients.st +5 -0
- islpy-2025.2/isl/test_inputs/schedule/carry_bounded_coefficients.sc +19 -0
- islpy-2025.2/isl/test_inputs/schedule/carry_bounded_coefficients.st +5 -0
- islpy-2025.2/isl/test_inputs/schedule/disjunctive_domain.sc +4 -0
- islpy-2025.2/isl/test_inputs/schedule/disjunctive_domain.st +5 -0
- islpy-2025.2/isl/test_inputs/schedule/feautrier_compressed.sc +5 -0
- islpy-2025.2/isl/test_inputs/schedule/feautrier_compressed.st +7 -0
- islpy-2025.2/isl/test_inputs/schedule/flat1.sc +3 -0
- islpy-2025.2/isl/test_inputs/schedule/flat1.st +5 -0
- islpy-2025.2/isl/test_inputs/schedule/flat2.sc +3 -0
- islpy-2025.2/isl/test_inputs/schedule/flat2.st +5 -0
- islpy-2025.2/isl/test_inputs/schedule/flat3.sc +3 -0
- islpy-2025.2/isl/test_inputs/schedule/flat3.st +5 -0
- islpy-2025.2/isl/test_inputs/schedule/flat4.sc +3 -0
- islpy-2025.2/isl/test_inputs/schedule/flat4.st +5 -0
- islpy-2025.2/isl/test_inputs/schedule/flat5.sc +3 -0
- islpy-2025.2/isl/test_inputs/schedule/flat5.st +5 -0
- islpy-2025.2/isl/test_inputs/schedule/flat6.sc +3 -0
- islpy-2025.2/isl/test_inputs/schedule/flat6.st +5 -0
- islpy-2025.2/isl/test_inputs/schedule/fork1.sc +5 -0
- islpy-2025.2/isl/test_inputs/schedule/fork1.st +9 -0
- islpy-2025.2/isl/test_inputs/schedule/fork2.sc +5 -0
- islpy-2025.2/isl/test_inputs/schedule/fork2.st +6 -0
- islpy-2025.2/isl/test_inputs/schedule/fork3.sc +7 -0
- islpy-2025.2/isl/test_inputs/schedule/fork3.st +22 -0
- islpy-2025.2/isl/test_inputs/schedule/leyin1.sc +5 -0
- islpy-2025.2/isl/test_inputs/schedule/leyin1.st +10 -0
- islpy-2025.2/isl/test_inputs/schedule/leyin2a.sc +14 -0
- islpy-2025.2/isl/test_inputs/schedule/leyin2a.st +13 -0
- islpy-2025.2/isl/test_inputs/schedule/leyin2b.sc +14 -0
- islpy-2025.2/isl/test_inputs/schedule/leyin2b.st +10 -0
- islpy-2025.2/isl/test_inputs/schedule/max_coincidence.sc +7 -0
- islpy-2025.2/isl/test_inputs/schedule/max_coincidence.st +13 -0
- islpy-2025.2/isl/test_inputs/schedule/nana.sc +9 -0
- islpy-2025.2/isl/test_inputs/schedule/nana.st +13 -0
- islpy-2025.2/isl/test_inputs/schedule/niewang.sc +29 -0
- islpy-2025.2/isl/test_inputs/schedule/niewang.st +25 -0
- islpy-2025.2/isl/test_inputs/schedule/nomax_coincidence.sc +7 -0
- islpy-2025.2/isl/test_inputs/schedule/nomax_coincidence.st +9 -0
- islpy-2025.2/isl/test_inputs/schedule/poliwoda.sc +47 -0
- islpy-2025.2/isl/test_inputs/schedule/poliwoda.st +5 -0
- islpy-2025.2/isl/test_inputs/seghir-vd.pip +17 -0
- islpy-2025.2/isl/test_inputs/set.omega +1 -0
- islpy-2025.2/isl/test_inputs/small.pip +9 -0
- islpy-2025.2/isl/test_inputs/sor1d.pip +28 -0
- islpy-2025.2/isl/test_inputs/split.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/square.pip +9 -0
- islpy-2025.2/isl/test_inputs/sven.pip +7 -0
- islpy-2025.2/isl/test_inputs/test3Deg3Var.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/tobi.pip +15 -0
- islpy-2025.2/isl/test_inputs/toplas.pwqp +1 -0
- islpy-2025.2/isl/test_inputs/unexpanded.pwqp +1 -0
- islpy-2025.2/isl/testsets/pip/bouleti.pip +30 -0
- islpy-2025.2/isl/testsets/pip/cnt_sum2.pip +54 -0
- islpy-2025.2/isl/testsets/pip/difficult.pip +14 -0
- islpy-2025.2/isl/testsets/pip/jcomplex.pip +47 -0
- islpy-2025.2/isl/testsets/pip/phideo.pip +35 -0
- islpy-2025.2/isl/testsets/pip/seghir-e1.pip +20 -0
- islpy-2025.2/isl/testsets/pip/seghir-e3.pip +17 -0
- islpy-2025.2/isl/testsets/pip/seghir-e4.pip +18 -0
- islpy-2025.2/isl/testsets/pip/seghir-e5.pip +17 -0
- islpy-2025.2/isl/testsets/pip/seghir-e6.pip +17 -0
- islpy-2025.2/isl/testsets/pip/seghir-e7.pip +17 -0
- islpy-2025.2/isl/testsets/pip/seghir-e8.pip +19 -0
- islpy-2025.2/isl/testsets/pip/seghir-e9.pip +22 -0
- islpy-2025.2/isl/testsets/pip/seghir-vd.pip +17 -0
- islpy-2025.2/islpy/__init__.py +507 -0
- islpy-2025.2/islpy/_monkeypatch.py +1015 -0
- islpy-2025.2/islpy/py.typed +0 -0
- islpy-2025.2/islpy/version.py +11 -0
- islpy-2025.2/pyproject.toml +150 -0
- islpy-2025.2/src/wrapper/wrap_isl.cpp +247 -0
- islpy-2025.2/stubgen/stubgen.py +84 -0
- islpy-2025.1.5/CMakeLists.txt +0 -65
- islpy-2025.1.5/MANIFEST.in +0 -43
- islpy-2025.1.5/Makefile.in +0 -14
- islpy-2025.1.5/PKG-INFO +0 -84
- islpy-2025.1.5/README.rst +0 -46
- islpy-2025.1.5/README_SETUP.txt +0 -34
- islpy-2025.1.5/aksetup_helper.py +0 -1011
- islpy-2025.1.5/build-with-barvinok.sh +0 -88
- islpy-2025.1.5/configure.py +0 -6
- islpy-2025.1.5/doc/conf.py +0 -97
- islpy-2025.1.5/doc/misc.rst +0 -207
- islpy-2025.1.5/doc/ref_fundamental.rst +0 -226
- islpy-2025.1.5/doc/reference.rst +0 -186
- islpy-2025.1.5/examples/demo.py +0 -85
- islpy-2025.1.5/gen_wrap.py +0 -1612
- islpy-2025.1.5/isl-supplementary/isl/config.h +0 -1
- islpy-2025.1.5/isl-supplementary/isl/stdint.h +0 -1
- islpy-2025.1.5/isl-supplementary/isl_config.h +0 -9
- islpy-2025.1.5/islpy/__init__.py +0 -1271
- islpy-2025.1.5/islpy/version.py +0 -2
- islpy-2025.1.5/islpy.egg-info/PKG-INFO +0 -84
- islpy-2025.1.5/islpy.egg-info/SOURCES.txt +0 -451
- islpy-2025.1.5/islpy.egg-info/dependency_links.txt +0 -1
- islpy-2025.1.5/islpy.egg-info/requires.txt +0 -3
- islpy-2025.1.5/islpy.egg-info/top_level.txt +0 -1
- islpy-2025.1.5/pyproject.toml +0 -81
- islpy-2025.1.5/setup.cfg +0 -4
- islpy-2025.1.5/setup.py +0 -325
- islpy-2025.1.5/src/wrapper/wrap_isl.cpp +0 -242
- {islpy-2025.1.5 → islpy-2025.2}/CITATION.cff +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/doc/Makefile +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/doc/images/after-union.png +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/doc/images/before-union.png +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/doc/index.rst +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/doc/ref_ast.rst +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/doc/ref_containers.rst +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/doc/ref_expr.rst +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/doc/ref_flow.rst +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/doc/ref_geo.rst +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/doc/ref_schedule.rst +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/doc/ref_set.rst +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/LICENSE +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/all.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/basis_reduction_tab.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/basis_reduction_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/bound.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/bset_from_bmap.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/bset_to_bmap.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/cat.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/check_parse_fail_test_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/check_reparse_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/check_reparse_test_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/check_single_reference_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/check_type_range_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/closure.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/codegen.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/configure.ac +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/dep.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/extract_key.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/flow.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/flow_cmp.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/has_single_reference_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath/LICENSE +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath/gmp_compat.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath/gmp_compat.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath/imath.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath/imath.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath/imdrover.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath/imdrover.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath/imrat.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath/imrat.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath/imtest.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath/imtimer.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath/iprime.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath/iprime.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath/rsamath.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath/rsamath.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath_wrap/gmp_compat.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath_wrap/gmp_compat.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath_wrap/imath.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath_wrap/imath.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath_wrap/imrat.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath_wrap/imrat.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/imath_wrap/wrap.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/aff.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/aff_type.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/arg.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/ast.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/ast_build.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/ast_type.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/constraint.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/cpp-checked-conversion.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/cpp-checked.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/cpp.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/ctx.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/fixed_box.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/flow.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/hash.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/hmap.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/hmap_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/id.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/id_to_ast_expr.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/id_to_id.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/id_to_pw_aff.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/id_type.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/ilp.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/list.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/local_space.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/lp.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/map.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/map_to_basic_set.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/map_type.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/mat.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/maybe.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/maybe_ast_expr.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/maybe_basic_set.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/maybe_id.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/maybe_pw_aff.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/maybe_templ.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/multi.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/obj.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/options.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/point.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/polynomial.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/polynomial_type.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/printer.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/printer_type.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/schedule.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/schedule_node.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/schedule_type.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/set.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/set_type.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/space.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/space_type.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/stream.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/stride_info.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/typed_cpp.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/union_map.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/union_map_type.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/union_set.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/union_set_type.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/val.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/val_gmp.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/val_type.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/vec.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/version.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/vertices.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_aff.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_aff_lex_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_aff_map.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_aff_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_affine_hull.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_align_params_bin_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_align_params_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_arg.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ast.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ast_build.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ast_build_expr.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ast_build_expr.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ast_build_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ast_codegen.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ast_graft.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ast_graft_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ast_node_set_field_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ast_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_basis_reduction.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_bernstein.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_bernstein.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_bind_domain_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_blk.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_blk.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_bound.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_bound.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_box.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_check_named_params_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_coalesce.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_config_post.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_constraint.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_constraint_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_convex_hull.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_copy_tuple_id_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ctx.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ctx_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_deprecated.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_dim_map.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_dim_map.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_domain_factor_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_drop_unused_params_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_equalities.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_equalities.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_factorization.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_factorization.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_farkas.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ffs.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_flow.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_fold.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_from_range_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_gmp.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_hash.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_hash_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_id.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_id_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_id_to_ast_expr.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_id_to_id.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_id_to_pw_aff.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ilp.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ilp_opt_fn_val_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ilp_opt_multi_val_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ilp_opt_val_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ilp_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_imath.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_imath.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_input.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_insert_domain_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_int.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_int_gmp.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_int_imath.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_int_sioimath.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_int_sioimath.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_list_macro.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_list_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_list_read_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_list_read_yaml_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_list_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_list_templ.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_local.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_local.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_local_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_local_space.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_local_space_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_lp.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_lp_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_map.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_map_bound_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_map_lexopt_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_map_list.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_map_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_map_simplify.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_map_subtract.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_map_to_basic_set.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_mat.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_mat_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_maybe_aff.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_maybe_ast_graft_list.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_maybe_map.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_morph.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_morph.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_add_constant_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_align_set.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_align_union_set.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_apply_explicit_domain_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_apply_no_explicit_domain_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_apply_set_explicit_domain_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_apply_set_no_explicit_domain_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_apply_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_apply_union_set_explicit_domain_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_arith_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_bin_val_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_bind_domain_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_bind_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_check_domain_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_cmp.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_coalesce.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_dim_id_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_dims.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_domain_reverse_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_domain_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_explicit_domain.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_floor.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_from_base_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_from_tuple_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_gist.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_hash.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_identity_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_insert_domain_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_intersect.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_locals_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_macro.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_min_max_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_move_dims_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_nan_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_no_domain_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_no_explicit_domain.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_param_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_product_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_pw_aff_explicit_domain.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_pw_aff_pullback_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_read_no_explicit_domain_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_splice_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_templ.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_tuple_id_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_un_op_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_unbind_params_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_union_add_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_union_pw_aff_explicit_domain.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_zero_space_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_zero_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_obj.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_opt_mpa_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_options.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_options_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_output.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_output_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_point.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_point_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_polynomial.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_polynomial_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_power_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_printer.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_printer_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_project_out_all_params_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_project_out_param_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_add_constant_multi_val_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_add_constant_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_add_constant_val_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_add_disjoint_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_bind_domain_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_domain_reverse_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_eval.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_fix_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_from_range_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_hash.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_insert_dims_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_insert_domain_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_lift_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_locals_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_macro.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_morph_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_move_dims_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_neg_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_opt_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_print_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_pullback_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_range_tuple_id_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_scale_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_split_dims_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_sub_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_templ.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_un_op_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_union_opt.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_range.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_range.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_read_from_str_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_reordering.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_reordering.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_sample.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_sample.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_scan.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_scan.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule_band.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule_band.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule_constraints.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule_constraints.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule_node.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule_node_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule_read.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule_tree.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule_tree.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_scheduler.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_scheduler.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_scheduler_clustering.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_scheduler_clustering.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_scheduler_scc.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_scheduler_scc.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_seq.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_seq.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_set_list.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_set_to_ast_graft_list.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_set_to_ast_graft_list.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_sort.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_sort.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_space.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_space_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_stream.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_stream_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_stream_read_pw_with_params_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_stream_read_with_params_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_stride.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_tab.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_tab.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_tab_lexopt_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_tab_pip.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_tarjan.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_tarjan.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_test.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_test_imath.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_test_int.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_test_list_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_test_plain_equal_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_transitive_closure.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_type_check_equal_space_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_type_check_match_range_multi_val.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_type_has_equal_space_bin_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_type_has_equal_space_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_type_has_space_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_unbind_params_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_domain_reverse_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_eval.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_locals_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_macro.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_map.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_map_lex_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_map_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_multi.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_neg.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_print_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_pw_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_set_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_single.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_sub_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_val.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_val_gmp.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_val_imath.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_val_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_val_sioimath.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_vec.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_vec_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_version.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_vertices.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_vertices_private.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/isl_yaml.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/mp_get_memory_functions.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/opt_type.h +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/pip.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/polyhedron_detect_equalities.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/polyhedron_minimize.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/polyhedron_remove_redundant_equalities.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/polyhedron_sample.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/polytope_scan.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/print.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/print_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/print_templ_yaml.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/print_yaml_field_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/read_in_string_templ.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/schedule.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/schedule_cmp.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/set_from_map.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/set_list_from_map_list_inl.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/set_to_map.c +0 -0
- /islpy-2025.1.5/isl-supplementary/gitversion.h → /islpy-2025.2/isl/test_inputs/codegen/cloog/multi-stride.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/uset_from_umap.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/isl/uset_to_umap.c +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/src/wrapper/wrap_helpers.hpp +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/src/wrapper/wrap_isl.hpp +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/src/wrapper/wrap_isl_part1.cpp +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/src/wrapper/wrap_isl_part2.cpp +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/src/wrapper/wrap_isl_part3.cpp +0 -0
- {islpy-2025.1.5 → islpy-2025.2}/test/test_isl.py +0 -0
@@ -0,0 +1,214 @@
|
|
1
|
+
{
|
2
|
+
"files": {
|
3
|
+
"./islpy/_isl.pyi": [
|
4
|
+
{
|
5
|
+
"code": "reportAssignmentType",
|
6
|
+
"range": {
|
7
|
+
"startColumn": 13,
|
8
|
+
"endColumn": 15,
|
9
|
+
"lineCount": 1
|
10
|
+
}
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"code": "reportAssignmentType",
|
14
|
+
"range": {
|
15
|
+
"startColumn": 13,
|
16
|
+
"endColumn": 15,
|
17
|
+
"lineCount": 1
|
18
|
+
}
|
19
|
+
},
|
20
|
+
{
|
21
|
+
"code": "reportOverlappingOverload",
|
22
|
+
"range": {
|
23
|
+
"startColumn": 8,
|
24
|
+
"endColumn": 12,
|
25
|
+
"lineCount": 1
|
26
|
+
}
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"code": "reportOverlappingOverload",
|
30
|
+
"range": {
|
31
|
+
"startColumn": 8,
|
32
|
+
"endColumn": 12,
|
33
|
+
"lineCount": 1
|
34
|
+
}
|
35
|
+
},
|
36
|
+
{
|
37
|
+
"code": "reportOverlappingOverload",
|
38
|
+
"range": {
|
39
|
+
"startColumn": 8,
|
40
|
+
"endColumn": 12,
|
41
|
+
"lineCount": 1
|
42
|
+
}
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"code": "reportIncompatibleMethodOverride",
|
46
|
+
"range": {
|
47
|
+
"startColumn": 8,
|
48
|
+
"endColumn": 14,
|
49
|
+
"lineCount": 1
|
50
|
+
}
|
51
|
+
},
|
52
|
+
{
|
53
|
+
"code": "reportIncompatibleMethodOverride",
|
54
|
+
"range": {
|
55
|
+
"startColumn": 8,
|
56
|
+
"endColumn": 14,
|
57
|
+
"lineCount": 1
|
58
|
+
}
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"code": "reportOverlappingOverload",
|
62
|
+
"range": {
|
63
|
+
"startColumn": 8,
|
64
|
+
"endColumn": 12,
|
65
|
+
"lineCount": 1
|
66
|
+
}
|
67
|
+
},
|
68
|
+
{
|
69
|
+
"code": "reportOverlappingOverload",
|
70
|
+
"range": {
|
71
|
+
"startColumn": 8,
|
72
|
+
"endColumn": 12,
|
73
|
+
"lineCount": 1
|
74
|
+
}
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"code": "reportOverlappingOverload",
|
78
|
+
"range": {
|
79
|
+
"startColumn": 8,
|
80
|
+
"endColumn": 19,
|
81
|
+
"lineCount": 1
|
82
|
+
}
|
83
|
+
},
|
84
|
+
{
|
85
|
+
"code": "reportOverlappingOverload",
|
86
|
+
"range": {
|
87
|
+
"startColumn": 8,
|
88
|
+
"endColumn": 12,
|
89
|
+
"lineCount": 1
|
90
|
+
}
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"code": "reportOverlappingOverload",
|
94
|
+
"range": {
|
95
|
+
"startColumn": 8,
|
96
|
+
"endColumn": 12,
|
97
|
+
"lineCount": 1
|
98
|
+
}
|
99
|
+
},
|
100
|
+
{
|
101
|
+
"code": "reportOverlappingOverload",
|
102
|
+
"range": {
|
103
|
+
"startColumn": 8,
|
104
|
+
"endColumn": 38,
|
105
|
+
"lineCount": 1
|
106
|
+
}
|
107
|
+
},
|
108
|
+
{
|
109
|
+
"code": "reportOverlappingOverload",
|
110
|
+
"range": {
|
111
|
+
"startColumn": 8,
|
112
|
+
"endColumn": 37,
|
113
|
+
"lineCount": 1
|
114
|
+
}
|
115
|
+
},
|
116
|
+
{
|
117
|
+
"code": "reportOverlappingOverload",
|
118
|
+
"range": {
|
119
|
+
"startColumn": 8,
|
120
|
+
"endColumn": 37,
|
121
|
+
"lineCount": 1
|
122
|
+
}
|
123
|
+
},
|
124
|
+
{
|
125
|
+
"code": "reportOverlappingOverload",
|
126
|
+
"range": {
|
127
|
+
"startColumn": 8,
|
128
|
+
"endColumn": 36,
|
129
|
+
"lineCount": 1
|
130
|
+
}
|
131
|
+
},
|
132
|
+
{
|
133
|
+
"code": "reportOverlappingOverload",
|
134
|
+
"range": {
|
135
|
+
"startColumn": 8,
|
136
|
+
"endColumn": 23,
|
137
|
+
"lineCount": 1
|
138
|
+
}
|
139
|
+
},
|
140
|
+
{
|
141
|
+
"code": "reportOverlappingOverload",
|
142
|
+
"range": {
|
143
|
+
"startColumn": 8,
|
144
|
+
"endColumn": 22,
|
145
|
+
"lineCount": 1
|
146
|
+
}
|
147
|
+
},
|
148
|
+
{
|
149
|
+
"code": "reportOverlappingOverload",
|
150
|
+
"range": {
|
151
|
+
"startColumn": 8,
|
152
|
+
"endColumn": 12,
|
153
|
+
"lineCount": 1
|
154
|
+
}
|
155
|
+
},
|
156
|
+
{
|
157
|
+
"code": "reportOverlappingOverload",
|
158
|
+
"range": {
|
159
|
+
"startColumn": 8,
|
160
|
+
"endColumn": 38,
|
161
|
+
"lineCount": 1
|
162
|
+
}
|
163
|
+
},
|
164
|
+
{
|
165
|
+
"code": "reportOverlappingOverload",
|
166
|
+
"range": {
|
167
|
+
"startColumn": 8,
|
168
|
+
"endColumn": 37,
|
169
|
+
"lineCount": 1
|
170
|
+
}
|
171
|
+
},
|
172
|
+
{
|
173
|
+
"code": "reportOverlappingOverload",
|
174
|
+
"range": {
|
175
|
+
"startColumn": 8,
|
176
|
+
"endColumn": 37,
|
177
|
+
"lineCount": 1
|
178
|
+
}
|
179
|
+
},
|
180
|
+
{
|
181
|
+
"code": "reportOverlappingOverload",
|
182
|
+
"range": {
|
183
|
+
"startColumn": 8,
|
184
|
+
"endColumn": 36,
|
185
|
+
"lineCount": 1
|
186
|
+
}
|
187
|
+
},
|
188
|
+
{
|
189
|
+
"code": "reportOverlappingOverload",
|
190
|
+
"range": {
|
191
|
+
"startColumn": 8,
|
192
|
+
"endColumn": 23,
|
193
|
+
"lineCount": 1
|
194
|
+
}
|
195
|
+
},
|
196
|
+
{
|
197
|
+
"code": "reportOverlappingOverload",
|
198
|
+
"range": {
|
199
|
+
"startColumn": 8,
|
200
|
+
"endColumn": 22,
|
201
|
+
"lineCount": 1
|
202
|
+
}
|
203
|
+
},
|
204
|
+
{
|
205
|
+
"code": "reportOverlappingOverload",
|
206
|
+
"range": {
|
207
|
+
"startColumn": 8,
|
208
|
+
"endColumn": 12,
|
209
|
+
"lineCount": 1
|
210
|
+
}
|
211
|
+
}
|
212
|
+
]
|
213
|
+
}
|
214
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# https://editorconfig.org/
|
2
|
+
# https://github.com/editorconfig/editorconfig-vim
|
3
|
+
# https://github.com/editorconfig/editorconfig-emacs
|
4
|
+
|
5
|
+
root = true
|
6
|
+
|
7
|
+
[*]
|
8
|
+
indent_style = space
|
9
|
+
end_of_line = lf
|
10
|
+
charset = utf-8
|
11
|
+
trim_trailing_whitespace = true
|
12
|
+
insert_final_newline = true
|
13
|
+
|
14
|
+
[*.py]
|
15
|
+
indent_size = 4
|
16
|
+
|
17
|
+
[*.rst]
|
18
|
+
indent_size = 4
|
19
|
+
|
20
|
+
[*.cpp]
|
21
|
+
indent_size = 2
|
22
|
+
|
23
|
+
[*.hpp]
|
24
|
+
indent_size = 2
|
25
|
+
|
26
|
+
# There may be one in doc/
|
27
|
+
[Makefile]
|
28
|
+
indent_style = tab
|
29
|
+
|
30
|
+
# https://github.com/microsoft/vscode/issues/1679
|
31
|
+
[*.md]
|
32
|
+
trim_trailing_whitespace = false
|
islpy-2025.2/.gitignore
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
.pydevproject
|
2
|
+
.project
|
3
|
+
.settings
|
4
|
+
*~
|
5
|
+
.*.sw[po]
|
6
|
+
.sw[po]
|
7
|
+
*.dat
|
8
|
+
*.pyc
|
9
|
+
build
|
10
|
+
*.prof
|
11
|
+
siteconf.py
|
12
|
+
doc/hedge-notes.pdf
|
13
|
+
*.vtk
|
14
|
+
*.silo
|
15
|
+
*.session
|
16
|
+
dump.py
|
17
|
+
*.orig
|
18
|
+
/Makefile
|
19
|
+
tags
|
20
|
+
*.vtu
|
21
|
+
*.pvtu
|
22
|
+
*.pvd
|
23
|
+
doc/user-reference
|
24
|
+
doc/dev-reference
|
25
|
+
*.poly
|
26
|
+
*.node
|
27
|
+
*.bak
|
28
|
+
*.pdf
|
29
|
+
*.tif
|
30
|
+
*.so
|
31
|
+
*.pyd
|
32
|
+
*.mpeg
|
33
|
+
*-journal
|
34
|
+
visitlog.py
|
35
|
+
*.log
|
36
|
+
.figleaf
|
37
|
+
dist
|
38
|
+
*.egg*
|
39
|
+
MANIFEST
|
40
|
+
*.patch
|
41
|
+
*.LOCAL.[0-9]*
|
42
|
+
*.REMOTE.[0-9]*
|
43
|
+
*.BASE.[0-9]*
|
44
|
+
tmp
|
45
|
+
temp*
|
46
|
+
setuptools.pth
|
47
|
+
setuptools-*.tar.gz
|
48
|
+
core
|
49
|
+
src/wrapper/gen-*
|
50
|
+
.dirty-git-ok
|
51
|
+
|
52
|
+
# wheels
|
53
|
+
arch_tmp
|
54
|
+
archives
|
55
|
+
downloads
|
56
|
+
gmp-*
|
57
|
+
isl-*
|
58
|
+
wheelhouse
|
59
|
+
venv
|
60
|
+
|
61
|
+
_skbuild/
|
62
|
+
libnanobind-static.a
|
63
|
+
CMakeFiles/
|
64
|
+
|
65
|
+
preproc-headers
|
@@ -0,0 +1,92 @@
|
|
1
|
+
Python 3:
|
2
|
+
script: |
|
3
|
+
EXTRA_INSTALL="numpy"
|
4
|
+
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh
|
5
|
+
. ./build-and-test-py-project.sh
|
6
|
+
tags:
|
7
|
+
- python3
|
8
|
+
except:
|
9
|
+
- tags
|
10
|
+
artifacts:
|
11
|
+
reports:
|
12
|
+
junit: test/pytest.xml
|
13
|
+
|
14
|
+
Examples:
|
15
|
+
script: |
|
16
|
+
EXTRA_INSTALL="matplotlib numpy"
|
17
|
+
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/ci-support.sh
|
18
|
+
. ./ci-support.sh
|
19
|
+
build_py_project_in_venv
|
20
|
+
run_examples
|
21
|
+
tags:
|
22
|
+
- python3
|
23
|
+
except:
|
24
|
+
- tags
|
25
|
+
|
26
|
+
Python 3 without small-integer opt:
|
27
|
+
script: |
|
28
|
+
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh
|
29
|
+
export PROJECT_INSTALL_FLAGS="--config-settings=cmake.define.USE_IMATH_SIO=OFF"
|
30
|
+
. ./build-and-test-py-project.sh
|
31
|
+
tags:
|
32
|
+
- python3
|
33
|
+
except:
|
34
|
+
- tags
|
35
|
+
artifacts:
|
36
|
+
reports:
|
37
|
+
junit: test/pytest.xml
|
38
|
+
|
39
|
+
Python 3 + Barvinok:
|
40
|
+
script: |
|
41
|
+
git clean -fdx
|
42
|
+
python3 -m venv .env
|
43
|
+
source .env/bin/activate
|
44
|
+
python -m ensurepip
|
45
|
+
pip install pcpp numpy pytest
|
46
|
+
./build-with-barvinok.sh "$HOME/barvinok-build"
|
47
|
+
(cd test; LD_LIBRARY_PATH="$HOME/barvinok-build/lib" python -m pytest --tb=native -rxsw)
|
48
|
+
|
49
|
+
tags:
|
50
|
+
- python3
|
51
|
+
except:
|
52
|
+
- tags
|
53
|
+
artifacts:
|
54
|
+
reports:
|
55
|
+
junit: test/pytest.xml
|
56
|
+
|
57
|
+
PyPy3:
|
58
|
+
script:
|
59
|
+
- export PY_EXE=pypy3
|
60
|
+
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh
|
61
|
+
- ". ./build-and-test-py-project.sh"
|
62
|
+
allow_failure: true
|
63
|
+
tags:
|
64
|
+
- pypy
|
65
|
+
except:
|
66
|
+
- tags
|
67
|
+
artifacts:
|
68
|
+
reports:
|
69
|
+
junit: test/pytest.xml
|
70
|
+
|
71
|
+
Documentation:
|
72
|
+
script: |
|
73
|
+
curl -L -O -k https://tiker.net/ci-support-v0
|
74
|
+
. ci-support-v0
|
75
|
+
build_py_project_in_venv
|
76
|
+
|
77
|
+
build_docs
|
78
|
+
maybe_upload_docs
|
79
|
+
|
80
|
+
tags:
|
81
|
+
- python3
|
82
|
+
only:
|
83
|
+
- main
|
84
|
+
|
85
|
+
Ruff:
|
86
|
+
script:
|
87
|
+
- pipx install ruff
|
88
|
+
- ruff check
|
89
|
+
tags:
|
90
|
+
- docker-runner
|
91
|
+
except:
|
92
|
+
- tags
|
islpy-2025.2/.gitmodules
ADDED
@@ -0,0 +1,249 @@
|
|
1
|
+
# Useful setting for looking at build commands (passed to pip install):
|
2
|
+
# --config-settings=cmake.define.CMAKE_VERBOSE_MAKEFILE=ON
|
3
|
+
#
|
4
|
+
# To build with debug info: Run pip install with
|
5
|
+
# --config-settings=cmake.build-type=Debug
|
6
|
+
# Note that setting CMAKE_BUILD_TYPE to Debug here does not suffice:
|
7
|
+
# scikit build core will still silently strip the debug symbols:
|
8
|
+
# https://github.com/scikit-build/scikit-build-core/issues/875
|
9
|
+
|
10
|
+
cmake_minimum_required(VERSION 3.15...3.27)
|
11
|
+
project(islpy)
|
12
|
+
find_package(Python 3.10 COMPONENTS Interpreter Development.Module REQUIRED)
|
13
|
+
|
14
|
+
# Detect the installed nanobind package and import it into CMake
|
15
|
+
execute_process(
|
16
|
+
COMMAND "${Python_EXECUTABLE}" -m nanobind --cmake_dir
|
17
|
+
OUTPUT_STRIP_TRAILING_WHITESPACE OUTPUT_VARIABLE NB_DIR)
|
18
|
+
list(APPEND CMAKE_PREFIX_PATH "${NB_DIR}")
|
19
|
+
find_package(nanobind CONFIG REQUIRED)
|
20
|
+
|
21
|
+
option(USE_SHIPPED_ISL "Use shipped ISL" ON)
|
22
|
+
option(USE_SHIPPED_IMATH "Use shipped IMATH" ON)
|
23
|
+
option(USE_IMATH_FOR_MP "Use IMATH for multiprecision arithmetic" ON)
|
24
|
+
option(USE_IMATH_SIO "Use IMATH small-integer optimization" ON)
|
25
|
+
option(USE_GMP_FOR_MP "Use GMP" OFF)
|
26
|
+
option(USE_BARVINOK "Use Barvinok (beware of GPL license)" OFF)
|
27
|
+
|
28
|
+
if(USE_SHIPPED_ISL)
|
29
|
+
if(USE_BARVINOK)
|
30
|
+
message(FATAL_ERROR "Using barvinok is not compatible with shipped ISL")
|
31
|
+
endif()
|
32
|
+
set(ISL_SOURCES
|
33
|
+
isl/isl_schedule.c
|
34
|
+
isl/isl_ast_build_expr.c
|
35
|
+
isl/isl_sample.c
|
36
|
+
isl/isl_coalesce.c
|
37
|
+
isl/isl_fold.c
|
38
|
+
isl/isl_schedule_read.c
|
39
|
+
isl/isl_aff_map.c
|
40
|
+
isl/isl_scheduler_clustering.c
|
41
|
+
isl/isl_flow.c
|
42
|
+
isl/isl_map_subtract.c
|
43
|
+
isl/uset_to_umap.c
|
44
|
+
isl/isl_hash.c
|
45
|
+
isl/isl_aff.c
|
46
|
+
isl/isl_transitive_closure.c
|
47
|
+
isl/isl_map_simplify.c
|
48
|
+
isl/print.c
|
49
|
+
isl/basis_reduction_tab.c
|
50
|
+
isl/isl_schedule_constraints.c
|
51
|
+
isl/isl_sort.c
|
52
|
+
isl/isl_ast.c
|
53
|
+
isl/bset_to_bmap.c
|
54
|
+
isl/bset_from_bmap.c
|
55
|
+
isl/isl_schedule_band.c
|
56
|
+
isl/isl_bernstein.c
|
57
|
+
isl/uset_from_umap.c
|
58
|
+
isl/isl_scheduler.c
|
59
|
+
isl/isl_set_to_ast_graft_list.c
|
60
|
+
isl/isl_convex_hull.c
|
61
|
+
isl/isl_schedule_tree.c
|
62
|
+
isl/isl_tarjan.c
|
63
|
+
isl/isl_equalities.c
|
64
|
+
isl/isl_constraint.c
|
65
|
+
isl/isl_union_map.c
|
66
|
+
isl/isl_bound.c
|
67
|
+
isl/isl_stride.c
|
68
|
+
isl/set_list_from_map_list_inl.c
|
69
|
+
isl/isl_farkas.c
|
70
|
+
isl/isl_tab_pip.c
|
71
|
+
isl/set_to_map.c
|
72
|
+
isl/set_from_map.c
|
73
|
+
isl/isl_lp.c
|
74
|
+
isl/isl_ffs.c
|
75
|
+
isl/isl_id_to_ast_expr.c
|
76
|
+
isl/isl_val.c
|
77
|
+
isl/isl_set_list.c
|
78
|
+
isl/isl_space.c
|
79
|
+
isl/isl_tab.c
|
80
|
+
isl/isl_map.c
|
81
|
+
isl/isl_version.c
|
82
|
+
isl/isl_stream.c
|
83
|
+
isl/isl_local_space.c
|
84
|
+
isl/isl_id_to_pw_aff.c
|
85
|
+
isl/isl_ilp.c
|
86
|
+
isl/isl_range.c
|
87
|
+
isl/isl_point.c
|
88
|
+
isl/isl_schedule_node.c
|
89
|
+
isl/isl_polynomial.c
|
90
|
+
isl/isl_options.c
|
91
|
+
isl/isl_morph.c
|
92
|
+
isl/isl_deprecated.c
|
93
|
+
isl/isl_ctx.c
|
94
|
+
isl/isl_seq.c
|
95
|
+
isl/isl_box.c
|
96
|
+
isl/isl_output.c
|
97
|
+
isl/isl_factorization.c
|
98
|
+
isl/isl_printer.c
|
99
|
+
isl/dep.c
|
100
|
+
isl/isl_id_to_id.c
|
101
|
+
isl/isl_ast_build.c
|
102
|
+
isl/isl_ast_codegen.c
|
103
|
+
isl/isl_obj.c
|
104
|
+
isl/isl_scheduler_scc.c
|
105
|
+
isl/isl_vec.c
|
106
|
+
isl/isl_map_list.c
|
107
|
+
isl/isl_vertices.c
|
108
|
+
isl/isl_arg.c
|
109
|
+
isl/isl_mat.c
|
110
|
+
isl/isl_id.c
|
111
|
+
isl/isl_affine_hull.c
|
112
|
+
isl/isl_scan.c
|
113
|
+
isl/isl_map_to_basic_set.c
|
114
|
+
isl/isl_blk.c
|
115
|
+
isl/isl_dim_map.c
|
116
|
+
isl/isl_local.c
|
117
|
+
isl/isl_reordering.c
|
118
|
+
isl/isl_ast_graft.c
|
119
|
+
isl/isl_input.c
|
120
|
+
)
|
121
|
+
set(ISL_INC_DIRS
|
122
|
+
${CMAKE_SOURCE_DIR}/isl-supplementary
|
123
|
+
${CMAKE_SOURCE_DIR}/isl/include
|
124
|
+
${CMAKE_SOURCE_DIR}/isl
|
125
|
+
)
|
126
|
+
if(USE_GMP_FOR_MP)
|
127
|
+
list(APPEND ISL_SOURCES
|
128
|
+
isl/isl_val_gmp.c
|
129
|
+
)
|
130
|
+
elseif(USE_IMATH_FOR_MP)
|
131
|
+
if(USE_SHIPPED_IMATH)
|
132
|
+
list(APPEND ISL_SOURCES
|
133
|
+
isl/isl_imath.c
|
134
|
+
isl/imath/imath.c
|
135
|
+
isl/imath/imrat.c
|
136
|
+
isl/imath/gmp_compat.c
|
137
|
+
)
|
138
|
+
list(APPEND ISL_INC_DIRS ${CMAKE_SOURCE_DIR}/isl/imath)
|
139
|
+
endif()
|
140
|
+
if(USE_IMATH_SIO)
|
141
|
+
list(APPEND ISL_SOURCES
|
142
|
+
isl/isl_int_sioimath.c
|
143
|
+
isl/isl_val_sioimath.c
|
144
|
+
)
|
145
|
+
else()
|
146
|
+
list(APPEND ISL_SOURCES
|
147
|
+
isl/isl_val_imath.c
|
148
|
+
)
|
149
|
+
endif()
|
150
|
+
endif()
|
151
|
+
else()
|
152
|
+
set(ISL_SOURCES)
|
153
|
+
if(NOT ISL_LIB_NAMES)
|
154
|
+
set(ISL_LIB_NAMES isl)
|
155
|
+
if(USE_BARVINOK)
|
156
|
+
list(PREPEND ISL_LIB_NAMES barvinok)
|
157
|
+
endif()
|
158
|
+
endif()
|
159
|
+
endif()
|
160
|
+
|
161
|
+
set(ISLPY_GENERATED_SOURCE
|
162
|
+
${CMAKE_BINARY_DIR}/generated/gen-expose-part1.inc
|
163
|
+
${CMAKE_BINARY_DIR}/generated/gen-expose-part2.inc
|
164
|
+
${CMAKE_BINARY_DIR}/generated/gen-expose-part3.inc
|
165
|
+
${CMAKE_BINARY_DIR}/generated/gen-wrap-part1.inc
|
166
|
+
${CMAKE_BINARY_DIR}/generated/gen-wrap-part2.inc
|
167
|
+
${CMAKE_BINARY_DIR}/generated/gen-wrap-part3.inc
|
168
|
+
)
|
169
|
+
|
170
|
+
if(USE_BARVINOK)
|
171
|
+
set(ISLPY_GENERATION_FLAGS --barvinok)
|
172
|
+
else()
|
173
|
+
set(ISLPY_GENERATION_FLAGS)
|
174
|
+
endif()
|
175
|
+
|
176
|
+
add_custom_command(
|
177
|
+
OUTPUT ${ISLPY_GENERATED_SOURCE}
|
178
|
+
COMMAND ${Python_EXECUTABLE} ${CMAKE_SOURCE_DIR}/gen_wrap.py
|
179
|
+
-o ${CMAKE_BINARY_DIR}/generated
|
180
|
+
-I ${ISL_INC_DIRS}
|
181
|
+
${ISLPY_GENERATION_FLAGS}
|
182
|
+
)
|
183
|
+
|
184
|
+
nanobind_add_module(
|
185
|
+
_isl
|
186
|
+
NB_STATIC # Build static libnanobind (the extension module itself remains a shared library)
|
187
|
+
NOMINSIZE # Optimize for speed, not for size
|
188
|
+
LTO # Enable LTO
|
189
|
+
src/wrapper/wrap_isl.cpp
|
190
|
+
src/wrapper/wrap_isl_part1.cpp
|
191
|
+
src/wrapper/wrap_isl_part2.cpp
|
192
|
+
src/wrapper/wrap_isl_part3.cpp
|
193
|
+
${ISL_SOURCES}
|
194
|
+
${ISLPY_GENERATED_SOURCE}
|
195
|
+
)
|
196
|
+
target_include_directories(_isl PRIVATE ${CMAKE_BINARY_DIR}/generated)
|
197
|
+
|
198
|
+
# Work around https://github.com/inducer/islpy/issues/120.
|
199
|
+
# See https://stackoverflow.com/questions/43554227/extern-inline-func-results-in-undefined-reference-error
|
200
|
+
# for some context.
|
201
|
+
set_source_files_properties(${ISL_SOURCES} PROPERTIES COMPILE_DEFINITIONS __OPTIMIZE_SIZE__)
|
202
|
+
|
203
|
+
if(USE_IMATH_FOR_MP)
|
204
|
+
target_compile_definitions(_isl PRIVATE USE_IMATH_FOR_MP=1)
|
205
|
+
endif()
|
206
|
+
|
207
|
+
if(USE_IMATH_SIO)
|
208
|
+
target_compile_definitions(_isl PRIVATE USE_SMALL_INT_OPT=1)
|
209
|
+
endif()
|
210
|
+
|
211
|
+
if(USE_GMP_FOR_MP)
|
212
|
+
target_compile_definitions(_isl PRIVATE USE_GMP_FOR_MP=1)
|
213
|
+
endif()
|
214
|
+
|
215
|
+
if(USE_BARVINOK)
|
216
|
+
target_compile_definitions(_isl PRIVATE ISLPY_INCLUDE_BARVINOK=1)
|
217
|
+
target_include_directories(_isl PRIVATE ${BARVINOK_INC_DIRS})
|
218
|
+
target_link_directories(_isl PRIVATE ${BARVINOK_LIB_DIRS})
|
219
|
+
target_link_libraries(_isl PRIVATE ${BARVINOK_LIB_NAMES})
|
220
|
+
endif()
|
221
|
+
|
222
|
+
target_include_directories(_isl PRIVATE ${ISL_INC_DIRS})
|
223
|
+
|
224
|
+
if(USE_SHIPPED_ISL)
|
225
|
+
target_compile_definitions(_isl PRIVATE GIT_HEAD_ID="included-with-islpy")
|
226
|
+
else()
|
227
|
+
target_link_directories(_isl PRIVATE ${ISL_LIB_DIRS})
|
228
|
+
target_link_libraries(_isl PRIVATE ${ISL_LIB_NAMES})
|
229
|
+
endif()
|
230
|
+
|
231
|
+
install(TARGETS _isl LIBRARY DESTINATION islpy)
|
232
|
+
|
233
|
+
set(ISLPY_STUB_FILE ${CMAKE_BINARY_DIR}/_isl.pyi)
|
234
|
+
add_custom_command(
|
235
|
+
OUTPUT ${ISLPY_STUB_FILE}
|
236
|
+
COMMAND ${Python_EXECUTABLE} ${CMAKE_SOURCE_DIR}/stubgen/stubgen.py
|
237
|
+
-o ${CMAKE_BINARY_DIR}
|
238
|
+
--exec ${CMAKE_SOURCE_DIR}/islpy/_monkeypatch.py
|
239
|
+
--python-path ${CMAKE_BINARY_DIR}
|
240
|
+
-m _isl
|
241
|
+
DEPENDS _isl
|
242
|
+
)
|
243
|
+
add_custom_target(
|
244
|
+
_isl_stub
|
245
|
+
ALL DEPENDS ${CMAKE_BINARY_DIR}/_isl.pyi
|
246
|
+
)
|
247
|
+
install(FILES ${ISLPY_STUB_FILE} DESTINATION islpy)
|
248
|
+
|
249
|
+
# vim: sw=2
|