Skip to main content
Dr.Jit logo

About this project

Dr.Jit is a just-in-time (JIT) compiler for ordinary and differentiable computation. It was originally created as the numerical foundation of Mitsuba 3, a differentiable Monte Carlo renderer. However, Dr.Jit is a general-purpose tool that can also help with various other types of embarrassingly parallel computation.

Dr.Jit helps with three steps:

  • Tracing and vectorization: Dr.Jit executes arithmetic (e.g. a + b) by recording it into a computation graph instead of performing the operation right away. It then just-in-time (JIT) compiles this graph into fused kernels targeting GPUs, using either Metal on macOS or CUDA on other platforms. It can also target the host’s CPU using vector instruction sets like AVX512 or NEON via LLVM. The generated kernels are very efficient. Dr.Jit can also be used without JIT-compilation, which turns the project into a header-only vector library without external dependencies.

  • Differentiation: If desired, Dr.Jit can compute derivatives using automatic differentiation (AD), using either forward or reverse-mode accumulation. Differentiation and tracing go hand-in-hand to produce specialized derivative evaluation code.

  • Python: Dr.Jit types are accessible within C++17 and Python. Code can be developed in either language, or even both at once. Combinations of Python and C++ code can be jointly traced and differentiated.

Dr.Jit handles large programs with custom data structures, side effects, and polymorphism. It includes a mathematical support library including transcendental functions and types like vectors, matrices, complex numbers, quaternions, etc.

Difference to machine learning frameworks

Why did we create Dr.Jit, when dynamic derivative compilation is already possible using Python-based ML frameworks like JAX, Tensorflow, and PyTorch along with backends like XLA and TorchScript?

The reason is related to the typical workloads: machine learning involves smallish computation graphs that are, however, made of arithmetically intense operations like convolutions, matrix multiplications, etc. The application motivating Dr.Jit (differentiable rendering) creates giant and messy computation graphs consisting of 100K to millions of “trivial” nodes (elementary arithmetic operations). In our experience, ML compilation backends use internal representations and optimization passes that are too rich for this type of input, causing them to crash or time out during compilation. If you have encountered such issues, you may find Dr.Jit useful.

Cloning

Dr.Jit recursively depends on two other repositories: nanobind for Python bindings, and drjit-core providing core components of the JIT-compiler.

To fetch the entire project including these dependencies, clone the project using the --recursive flag as follows:

$ git clone --recursive https://github.com/mitsuba-renderer/drjit

Documentation

Please see Dr.Jit’s page on readthedocs.io for example code and reference documentation.

References, citations

Please see the paper Dr.Jit: A Just-In-Time Compiler for Differentiable Rendering for the nitty-gritty details and details on the problem motivating this project. There is also a video presentation explaining the design decisions at a higher level.

If you use Dr.Jit in your own research, please cite it using the following BibTeX entry:

@article{Jakob2022DrJit,
  author = {Wenzel Jakob and S{\'e}bastien Speierer and Nicolas Roussel and Delio Vicini},
  title = {Dr.Jit: A Just-In-Time Compiler for Differentiable Rendering},
  journal = {Transactions on Graphics (Proceedings of SIGGRAPH)},
  volume = {41},
  number = {4},
  year = {2022},
  month = jul,
  doi = {10.1145/3528223.3530099}
}

Logo and history

The Dr.Jit logo was generously created by Otto Jakob. The “Dr.” prefix simultaneously abbreviates differentiable rendering with the stylized partial derivative D, while also conveying a medical connotation that is emphasized by the Rod of Asclepius. Differentiable rendering algorithms are growing beyond our control in terms of conceptual and implementation-level complexity. A doctor is a person, who can offer help in such a time of great need. Dr.Jit tries to fill this role to improve the well-being of differentiable rendering researchers.

Dr.Jit is the successor of the Enoki project, and its high-level API still somewhat resembles that of Enoki. The system evolved towards a different approach and has an all-new implementation, hence the decision to switch to a different project name.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

drjit-1.5.0-cp314-cp314-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.14Windows x86-64

drjit-1.5.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

drjit-1.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

drjit-1.5.0-cp314-cp314-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

drjit-1.5.0-cp313-cp313-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.13Windows x86-64

drjit-1.5.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

drjit-1.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

drjit-1.5.0-cp313-cp313-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

drjit-1.5.0-cp312-cp312-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.12Windows x86-64

drjit-1.5.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

drjit-1.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

drjit-1.5.0-cp312-cp312-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

drjit-1.5.0-cp312-abi3-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.12+Windows x86-64

drjit-1.5.0-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12+manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

drjit-1.5.0-cp312-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.12+manylinux: glibc 2.17+ ARM64

drjit-1.5.0-cp312-abi3-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.12+macOS 11.0+ ARM64

drjit-1.5.0-cp311-cp311-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.11Windows x86-64

drjit-1.5.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

drjit-1.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

drjit-1.5.0-cp311-cp311-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

drjit-1.5.0-cp310-cp310-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.10Windows x86-64

drjit-1.5.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

drjit-1.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

drjit-1.5.0-cp310-cp310-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

drjit-1.5.0-cp39-cp39-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.9Windows x86-64

drjit-1.5.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

drjit-1.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

drjit-1.5.0-cp39-cp39-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file drjit-1.5.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: drjit-1.5.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for drjit-1.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c92760183a1c15c14be06da4cd3418997e9bf12c9af86335e123666bbdd46507
MD5 77dad0a928c6f4a90db154c169c089d4
BLAKE2b-256 559202a16122365d5c176ecbfa834ca9eabd9f548add06ec278395fb72996167

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0baf0ff1e69ee86b4c6738ff5d5788946e2bef409466756dc57c0ab07ddeaee6
MD5 50e0686688048ec546c6a9f834ab1833
BLAKE2b-256 0b3f0609d050c2d06873edebce12f64dcdff29f7e256788e3c43b65ab15aa562

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ce1eb6abdea645bb6da00096aef93ea71a4358e8967488875c6d7053d7c3d420
MD5 b9e775ba72ae6b8fdf3334c12e2e2eeb
BLAKE2b-256 23bfb4452a48c2c6dd7db6b392c5f39d870b89602ce862102fb4731d036fde68

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 633a7f78393a7595aa900b170a5eef68774662f8f5cc489f7a907e56c64e3ea8
MD5 aa1d73569ad6aa479831e38047395a70
BLAKE2b-256 92b2c133ef8e68fdf901a8d5f3f76de408be8297c11b4e63bfee4cfde9b84ef1

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: drjit-1.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for drjit-1.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 05d0d13c69e5278d32848b3df75ee76f370db5f267393812f21de848ee84d451
MD5 851786510a8970896e9439c04e9ff171
BLAKE2b-256 ff4b00984b0b7ca3aeed16f48e38dfc853c6e0dda962323fbd45f28a63b3d5a6

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33a4b146cc56a02ea0dd9c43034277c59ae3c5dd3490678c2cbc8ef69a1e8c93
MD5 3ee3d16fe288b2e162bd6866061593ba
BLAKE2b-256 0bc201664e2107b500a5468f1f214baabe25c872ef095f6cd591ec2ad8892ccc

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7badb25b04af3af447d8b63e9de69dadefeff03e5d5f9a5273edd08650094d98
MD5 e102ef380269bfdd6031562cf899c430
BLAKE2b-256 5dc842a9754f5351b694e43ccd0396ac1f2121d143d32ec87d07ca92031c58f9

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05a2f4736aad8aebf74a2813b8293f71e0550401fb33abd4f284e822314549a5
MD5 4233471a6039731f45b994c4c580ba0e
BLAKE2b-256 af62af65164239a8fc0f5a473c63438aa6d29d23bfdedcda931fbc33985c8453

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: drjit-1.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for drjit-1.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fd76fe9a48df54f2defcf467041a12c785735e1cf05c9883d3575dc2bdb6f684
MD5 347f8a3828060aba1bc49e4713a9900c
BLAKE2b-256 8c3fca05b2cc3cbb09d1cc55738c52993ea28f47033582bee993303db8a3474e

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 640a8c607fe48a6f440d346649f1d39e6a0aa579a6f4c782d8451862d0929c04
MD5 1c348f871793598ab1120a72a69dc2ba
BLAKE2b-256 1c4049ccee53b8c923053b309cc33cc4eb8fa1146d4ba77e1d47aa9d304861a2

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7e41f75d66ea72dd1ca0013ea9b53026bb5a05a2c22d8c5afa4d94d78b2da876
MD5 d19fdda672c7fad33ee44ff9963bf6ff
BLAKE2b-256 cc8948158eef2645706f749d97d88579db810506631826071419dc0a930d03ce

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67806aa851b8d7ed193c2d941eaf8d7e4d19f3141fdee01415292867e89e8b97
MD5 1c48e897c4c529ed4f849ac2098a218e
BLAKE2b-256 92852666b682d87b36c962a865bad539836de631691031132b9f4506002af9c7

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp312-abi3-win_amd64.whl.

File metadata

  • Download URL: drjit-1.5.0-cp312-abi3-win_amd64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.12+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for drjit-1.5.0-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 3b26bdc2aa2ff2aad9a3d8ea11f6516f3d49d9269f8daab37ba9ca1eefb39d0f
MD5 3de8bc9680659ab5169ffc14999bf876
BLAKE2b-256 320c71430c6cee74e04ee15cd9f434d70da00766a340735629f2387cefeddf12

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4e09b4ca25917a05a59c6e857d2a1cb93ff523afa40556eef2cbabd4f40d05c5
MD5 86bad76455f103aa1a53c7978e5a33b0
BLAKE2b-256 c4dbfd29fab81172ac464eb8123012835e01a5653b0009996f541d6a602150a5

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp312-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp312-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e15ac04290184da319d8658397c8cfac7f94365fcd4af85bc335574962a1a686
MD5 f5c5631af82a9546f7492c57b302c1e8
BLAKE2b-256 00e5b00adab7aaa07d26a49f1b84802df471beb5c24a5eba8fd3f3d6e6da6e4b

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp312-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2143b365c4ee8d20efc69e92af22617b750719b9f12331067effaf66854c0e59
MD5 989bfc0d896aa9bac3e1eff0ca25f4f7
BLAKE2b-256 4d441b2c3b5a665379b8e7e6ed0dcfe23df079cffc647c5b5bd9a6799dfe7363

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: drjit-1.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for drjit-1.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 459a78a485a3f374c4e5cd61fa639cbe5db3c3e8ac054cf9b723e8b85066b3aa
MD5 2f6c79af3ea8dc6e4deef83c5cb01978
BLAKE2b-256 4e4ae05fd52ea643673642b556a02e2205d5aca650c8f6ae21cc13c7777c8d53

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0d9cb374fe1f05d4167a8c24cbce6084404372e5fb3dcd6f08bbb1cee06f245a
MD5 2e38aa53d89ec3f0f6f4b0e7ff992439
BLAKE2b-256 d056ed40b2b8d8b71d209b61a6467c8a2777119e00d1f276883b8ed0ef8c5261

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 440211113dc93b03ce095a1c9b48ffaec9db7b69b817ddcae2f657fa7393ff21
MD5 ad52b866380f697b19d02357e0ee3105
BLAKE2b-256 130e02e211ba2295971fae04a3535b3cfdf38c3c51669f01d36a2f920d28b156

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3341e2d8e101bc6e72fd76988429e8473312f2b005f55684d6a9e74a4af75261
MD5 e9cb3289ac0741c5ada7abba273462ca
BLAKE2b-256 b686312a6594e3ed23546b971300cb012c83b7860e9bc9ff6d84801a60f4329c

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: drjit-1.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for drjit-1.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0eece3c442561c853d3046736c9d6b055407c5e04e787a0e2191da9ff7dbc658
MD5 23fe5d32150ed9f56fd1e8440731f125
BLAKE2b-256 f1d7008c3559a2dcde3f0d53655b652ec30732ccd0d9dfda1125a9cfff22a459

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 61d8ea20c4ca77baef4318357a25f83e9064dfab46f18efc2b11afa095563187
MD5 a56f668cfdd2aee661986d879693c000
BLAKE2b-256 90fea9016668f298db3babfd3678610fe75aa372904519242c9b71c487fcb498

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 58824b5a2268980bc0bbdb450d45189ea48e8f6ab7548c52f77db2d7fd5d81f3
MD5 f23e0666d55b07792f03fed7b7b9b9b2
BLAKE2b-256 7a47081576ca14cf275df5183adc722198ac1e6fff728793d6112831b0812ba5

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b36f9d2db317b5639f152c984c7d0c678d73c91cd2488b56842d056da0af343
MD5 f38c37fddfbf7814127c7370f8b2a3e1
BLAKE2b-256 71c07ae86a23f0b725b7ec009237bb346c875945e5f7b9d70ee93a471bb40680

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: drjit-1.5.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for drjit-1.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fc8746685496e87c8e32d8c2abb9fe4b9d6dc86612ac4305557bf0d89f4b7e02
MD5 720a3aef11ec3527e2436538375c31eb
BLAKE2b-256 1c4f10117f9457131414ddd0deab68bdc9d26be7bc6e673f3d983c1c4b7a34fb

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1228daf7f15834f32ddb37403635c33162ef3e1192ccfdf871d77a1d973ecdb
MD5 faed73e67f797bcd6f16c5fc4927e444
BLAKE2b-256 1d386dace027c94275c4da795d9001f72d9434843d11100519421d58198328ce

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 00a53dca5978554a9d136ab99619d791e98e57c043d48e967ae02f56fa3d8077
MD5 dc5155f4bf1089603f5271a1336992d9
BLAKE2b-256 9763cd6f7265760e306869413973b426f7d3549a560d7e6cbb35bc8f8fb9edb6

See more details on using hashes here.

File details

Details for the file drjit-1.5.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for drjit-1.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 166b0029d82b76fabf8c162f20dc762e2491d1ee1491fc8ee05f496fd8f6241c
MD5 657b0e0f6e0e8964ed63737de06b86fa
BLAKE2b-256 e2fc05dd2160a7f4131ad6f089a410d10836a3c52971eac18bcd39345b1d013a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page