├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── algorithms ├── explore_factorizations.ipynb ├── factorizations_f2.npz └── factorizations_r.npz ├── benchmarking ├── README.md ├── factorizations.py ├── requirements.txt ├── run_gpu_benchmark.py ├── test_correctness.py └── utils.py ├── nonequivalence ├── alphatensor_14236_factorizations.npz └── inspect_factorizations_notebook.ipynb └── recombination ├── example.py ├── recombination.py ├── recombination_test.py ├── requirements.txt └── sota.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/alphatensor/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/alphatensor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/alphatensor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/alphatensor/HEAD/README.md -------------------------------------------------------------------------------- /algorithms/explore_factorizations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/alphatensor/HEAD/algorithms/explore_factorizations.ipynb -------------------------------------------------------------------------------- /algorithms/factorizations_f2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/alphatensor/HEAD/algorithms/factorizations_f2.npz -------------------------------------------------------------------------------- /algorithms/factorizations_r.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/alphatensor/HEAD/algorithms/factorizations_r.npz -------------------------------------------------------------------------------- /benchmarking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/alphatensor/HEAD/benchmarking/README.md -------------------------------------------------------------------------------- /benchmarking/factorizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/alphatensor/HEAD/benchmarking/factorizations.py -------------------------------------------------------------------------------- /benchmarking/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/alphatensor/HEAD/benchmarking/requirements.txt -------------------------------------------------------------------------------- /benchmarking/run_gpu_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/alphatensor/HEAD/benchmarking/run_gpu_benchmark.py -------------------------------------------------------------------------------- /benchmarking/test_correctness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/alphatensor/HEAD/benchmarking/test_correctness.py -------------------------------------------------------------------------------- /benchmarking/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/alphatensor/HEAD/benchmarking/utils.py -------------------------------------------------------------------------------- /nonequivalence/alphatensor_14236_factorizations.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/alphatensor/HEAD/nonequivalence/alphatensor_14236_factorizations.npz -------------------------------------------------------------------------------- /nonequivalence/inspect_factorizations_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/alphatensor/HEAD/nonequivalence/inspect_factorizations_notebook.ipynb -------------------------------------------------------------------------------- /recombination/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/alphatensor/HEAD/recombination/example.py -------------------------------------------------------------------------------- /recombination/recombination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/alphatensor/HEAD/recombination/recombination.py -------------------------------------------------------------------------------- /recombination/recombination_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/alphatensor/HEAD/recombination/recombination_test.py -------------------------------------------------------------------------------- /recombination/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/alphatensor/HEAD/recombination/requirements.txt -------------------------------------------------------------------------------- /recombination/sota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/alphatensor/HEAD/recombination/sota.py --------------------------------------------------------------------------------