├── .azure-pipelines └── azure-pipelines-osx.yml ├── .ci_support ├── README ├── linux_64_cuda_compiler_version12.9python3.11.____cpython.yaml ├── linux_64_cuda_compiler_version12.9python3.12.____cpython.yaml ├── linux_64_cuda_compiler_version12.9python3.13.____cp313.yaml ├── linux_64_cuda_compiler_version12.9python3.14.____cp314.yaml ├── linux_64_cuda_compiler_versionNonepython3.11.____cpython.yaml ├── linux_64_cuda_compiler_versionNonepython3.12.____cpython.yaml ├── linux_64_cuda_compiler_versionNonepython3.13.____cp313.yaml ├── linux_64_cuda_compiler_versionNonepython3.14.____cp314.yaml ├── linux_aarch64_cuda_compiler_version12.9python3.11.____cpython.yaml ├── linux_aarch64_cuda_compiler_version12.9python3.12.____cpython.yaml ├── linux_aarch64_cuda_compiler_version12.9python3.13.____cp313.yaml ├── linux_aarch64_cuda_compiler_version12.9python3.14.____cp314.yaml ├── linux_aarch64_cuda_compiler_versionNonepython3.11.____cpython.yaml ├── linux_aarch64_cuda_compiler_versionNonepython3.12.____cpython.yaml ├── linux_aarch64_cuda_compiler_versionNonepython3.13.____cp313.yaml ├── linux_aarch64_cuda_compiler_versionNonepython3.14.____cp314.yaml ├── migrations │ ├── absl_grpc_proto.yaml │ ├── absl_grpc_proto_25Q2.yaml │ ├── cuda129.yaml │ ├── cudnn910.yaml │ └── python314.yaml ├── osx_64_python3.11.____cpython.yaml ├── osx_64_python3.12.____cpython.yaml ├── osx_64_python3.13.____cp313.yaml ├── osx_64_python3.14.____cp314.yaml ├── osx_arm64_python3.11.____cpython.yaml ├── osx_arm64_python3.12.____cpython.yaml ├── osx_arm64_python3.13.____cp313.yaml └── osx_arm64_python3.14.____cp314.yaml ├── .circleci └── config.yml ├── .gitattributes ├── .github ├── CODEOWNERS └── workflows │ └── conda-build.yml ├── .gitignore ├── .scripts ├── build_steps.sh ├── logging_utils.sh ├── run_docker_build.sh └── run_osx_build.sh ├── LICENSE.txt ├── README.md ├── azure-pipelines.yml ├── conda-forge.yml ├── pixi.toml └── recipe ├── LICENSE ├── add_py_toolchain.sh ├── build.sh ├── conda_build_config.yaml ├── patches ├── 0001-Allow-for-custom-CUDA-build.patch ├── 0002-Consolidated-build-fixes-for-XLA.patch ├── 0003-avoid-mirror-that-doesn-t-seem-to-have-current-xla-a.patch └── 0004-re-enable-use_fast_cpp_protos-true.patch ├── py_toolchain.bzl ├── recipe.yaml └── test_jaxlib.py /.azure-pipelines/azure-pipelines-osx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.azure-pipelines/azure-pipelines-osx.yml -------------------------------------------------------------------------------- /.ci_support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/README -------------------------------------------------------------------------------- /.ci_support/linux_64_cuda_compiler_version12.9python3.11.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/linux_64_cuda_compiler_version12.9python3.11.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_cuda_compiler_version12.9python3.12.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/linux_64_cuda_compiler_version12.9python3.12.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_cuda_compiler_version12.9python3.13.____cp313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/linux_64_cuda_compiler_version12.9python3.13.____cp313.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_cuda_compiler_version12.9python3.14.____cp314.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/linux_64_cuda_compiler_version12.9python3.14.____cp314.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_cuda_compiler_versionNonepython3.11.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/linux_64_cuda_compiler_versionNonepython3.11.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_cuda_compiler_versionNonepython3.12.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/linux_64_cuda_compiler_versionNonepython3.12.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_cuda_compiler_versionNonepython3.13.____cp313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/linux_64_cuda_compiler_versionNonepython3.13.____cp313.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_cuda_compiler_versionNonepython3.14.____cp314.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/linux_64_cuda_compiler_versionNonepython3.14.____cp314.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_cuda_compiler_version12.9python3.11.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/linux_aarch64_cuda_compiler_version12.9python3.11.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_cuda_compiler_version12.9python3.12.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/linux_aarch64_cuda_compiler_version12.9python3.12.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_cuda_compiler_version12.9python3.13.____cp313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/linux_aarch64_cuda_compiler_version12.9python3.13.____cp313.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_cuda_compiler_version12.9python3.14.____cp314.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/linux_aarch64_cuda_compiler_version12.9python3.14.____cp314.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_cuda_compiler_versionNonepython3.11.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/linux_aarch64_cuda_compiler_versionNonepython3.11.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_cuda_compiler_versionNonepython3.12.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/linux_aarch64_cuda_compiler_versionNonepython3.12.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_cuda_compiler_versionNonepython3.13.____cp313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/linux_aarch64_cuda_compiler_versionNonepython3.13.____cp313.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_cuda_compiler_versionNonepython3.14.____cp314.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/linux_aarch64_cuda_compiler_versionNonepython3.14.____cp314.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/absl_grpc_proto.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/migrations/absl_grpc_proto.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/absl_grpc_proto_25Q2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/migrations/absl_grpc_proto_25Q2.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/cuda129.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/migrations/cuda129.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/cudnn910.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/migrations/cudnn910.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/python314.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/migrations/python314.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.11.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/osx_64_python3.11.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.12.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/osx_64_python3.12.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.13.____cp313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/osx_64_python3.13.____cp313.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.14.____cp314.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/osx_64_python3.14.____cp314.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.11.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/osx_arm64_python3.11.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.12.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/osx_arm64_python3.12.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.13.____cp313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/osx_arm64_python3.13.____cp313.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.14.____cp314.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.ci_support/osx_arm64_python3.14.____cp314.yaml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @ehfd @ericmjl @h-vetinari @ngam @xhochy -------------------------------------------------------------------------------- /.github/workflows/conda-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.github/workflows/conda-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.gitignore -------------------------------------------------------------------------------- /.scripts/build_steps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.scripts/build_steps.sh -------------------------------------------------------------------------------- /.scripts/logging_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.scripts/logging_utils.sh -------------------------------------------------------------------------------- /.scripts/run_docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.scripts/run_docker_build.sh -------------------------------------------------------------------------------- /.scripts/run_osx_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/.scripts/run_osx_build.sh -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /conda-forge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/conda-forge.yml -------------------------------------------------------------------------------- /pixi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/pixi.toml -------------------------------------------------------------------------------- /recipe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/recipe/LICENSE -------------------------------------------------------------------------------- /recipe/add_py_toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/recipe/add_py_toolchain.sh -------------------------------------------------------------------------------- /recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/recipe/build.sh -------------------------------------------------------------------------------- /recipe/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/recipe/conda_build_config.yaml -------------------------------------------------------------------------------- /recipe/patches/0001-Allow-for-custom-CUDA-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/recipe/patches/0001-Allow-for-custom-CUDA-build.patch -------------------------------------------------------------------------------- /recipe/patches/0002-Consolidated-build-fixes-for-XLA.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/recipe/patches/0002-Consolidated-build-fixes-for-XLA.patch -------------------------------------------------------------------------------- /recipe/patches/0003-avoid-mirror-that-doesn-t-seem-to-have-current-xla-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/recipe/patches/0003-avoid-mirror-that-doesn-t-seem-to-have-current-xla-a.patch -------------------------------------------------------------------------------- /recipe/patches/0004-re-enable-use_fast_cpp_protos-true.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/recipe/patches/0004-re-enable-use_fast_cpp_protos-true.patch -------------------------------------------------------------------------------- /recipe/py_toolchain.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/recipe/py_toolchain.bzl -------------------------------------------------------------------------------- /recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/recipe/recipe.yaml -------------------------------------------------------------------------------- /recipe/test_jaxlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/jaxlib-feedstock/HEAD/recipe/test_jaxlib.py --------------------------------------------------------------------------------