Search Criteria
Package Details: python-jaxlib-cuda 0.6.0-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/python-jaxlib-cuda.git (read-only, click to copy) |
---|---|
Package Base: | python-jaxlib-cuda |
Description: | XLA library for JAX |
Upstream URL: | https://github.com/jax-ml/jax/ |
Keywords: | deep-learning google jax maching-learning xla |
Licenses: | Apache-2.0 |
Groups: | jax |
Conflicts: | python-jaxlib |
Provides: | python-jaxlib |
Submitter: | daskol |
Maintainer: | daskol |
Last Packager: | daskol |
Votes: | 9 |
Popularity: | 0.080769 |
First Submitted: | 2023-02-12 23:18 (UTC) |
Last Updated: | 2025-04-20 20:54 (UTC) |
Dependencies (12)
- cuda (cuda11.1AUR, cuda-12.2AUR, cuda12.0AUR, cuda11.4AUR, cuda11.4-versionedAUR, cuda12.0-versionedAUR)
- cudnn
- nccl (nccl-gitAUR)
- python-absl
- python-ml-dtypes
- python-numpy (python-numpy-gitAUR, python-numpy1AUR, python-numpy-mkl-binAUR, python-numpy-mkl-tbbAUR, python-numpy-mklAUR)
- python-scipy (python-scipy-gitAUR, python-scipy-mkl-binAUR, python-scipy-mkl-tbbAUR, python-scipy-mklAUR)
- clang18 (make)
- python-build (make)
- python-installer (make)
- python-setuptools (make)
- python-wheel (make)
Required by (5)
- python-blackjax (requires python-jaxlib)
- python-jax (requires python-jaxlib)
- python-jax-bin (requires python-jaxlib)
- python-safetensors (requires python-jaxlib) (optional)
- python-safetensors-bin (requires python-jaxlib) (optional)
Latest Comments
1 2 3 4 5 Next › Last »
wheelsofindustry commented on 2025-05-24 20:50 (UTC) (edited on 2025-05-24 20:52 (UTC) by wheelsofindustry)
@truncs adding an include statement for cstdint to types.h got me past the same issue
works on python-jaxlib & python-jaxlib-cuda, but after that it complains about the latest cuda version being too new (12.8)? rolling cuda back to 12.2 requires gcc12 trying that now.
daskol commented on 2025-05-07 08:27 (UTC)
@truncs It seems that the issues is
gcc-libs>=15
again (other AUR packages does not build now too). Clang shares GCC's standard library that sometimes causes odd issues like broken include order, missing type defs, unexpected#warnings
directives that causes errors, etc.I'll try to build it and patch sources if possible.
truncs commented on 2025-05-06 17:46 (UTC)
Actually forcing it to use gcc is something I am not able to do. I tried removing the clang options and setting the repo_env to point to gcc but it would still use clang.
daskol commented on 2025-05-06 15:12 (UTC) (edited on 2025-05-06 15:13 (UTC) by daskol)
@truncs It seems a compiler issue. Try to enforce use of gcc13. It could solve the issue.
truncs commented on 2025-05-05 20:25 (UTC)
Getting this error for 0.6.0-1
I did a quicksearch on upstream and I can't find anything related to this. Thoughts?
medaminezghal commented on 2025-04-22 19:02 (UTC)
@daskol the build will fails because you use
--bazel_options="--action_env=TF_CUDA_COMPUTE_CAPABILITIES=${CUDA_COMPUTE_CAPABILITIES}" \
.It will not succeed because clang can't compile for
sm_100
andsm_120
that exist in.bazelrc
.Instead, use
--bazel_options="--repo_env=HERMETIC_CUDA_COMPUTE_CAPABILITIES=${CUDA_COMPUTE_CAPABILITIES}" \
.And I have some suggestions:
1- Use the default Clang provided by system (The previous problem was fixed).
2- Add support for more cards by using:
export CUDA_COMPUTE_CAPABILITIES=sm_50,sm_52,sm_53,sm_60,sm_61,sm_62,sm_70,sm_72,sm_75,sm_80,sm_86,sm_87,sm_89,sm_90,sm_90a,compute_90
daskol commented on 2025-03-20 22:39 (UTC)
@medaminezghal Thanks for your
PKGBUILD
. My build server was under maintenance for a while.However, there is a building issue for 0.5.3 regarding transition to bazel 7. It turns out that python rules does not handle properly symlink creation. This is why
python -m build
fails with missingLorem ipsum.txt
file.Looking for a solution. Probably, manual downgrading to bazel 6 will solve the issue.
truncs commented on 2025-03-05 17:07 (UTC)
@medaminezghal This works! Thanks for sharing the PKGBUILD file
medaminezghal commented on 2025-03-01 16:14 (UTC)
@daskol I have successfully built the package using this PKGBUILD file:
medaminezghal commented on 2025-02-27 16:52 (UTC)
@daskol could you update this package to the latest version?
1 2 3 4 5 Next › Last »