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 <https://github.com/mitsuba-renderer/mitsuba3>`_, a differentiable `Monte
Carlo <https://en.wikipedia.org/wiki/Monte_Carlo_method>`_ renderer. However,
*Dr.Jit* is a general-purpose tool that can also help with various other types
of embarrassingly parallel computation.
*Dr.Jit* principally facilitates three steps:
- **Vectorization and tracing**: When *Dr.Jit* encounters an operation (e.g. an
addition ``a + b``) it does not execute it right away: instead, it remembers
that an addition will be needed at some later point by recording it into a
graph representation (this is called *tracing*). Eventually, it will
*just-in-time* (JIT) compile the recorded operations into a *fused* kernel
using either `LLVM <https://en.wikipedia.org/wiki/LLVM>`_ (when targeting the
CPU) or `CUDA <https://en.wikipedia.org/wiki/CUDA>`_ (when targeting the
GPU). The values ``a`` and ``b`` will typically be arrays with many elements,
and the system parallelizes their evaluation using multi-core parallelism and
vector instruction sets like `AVX512
<https://en.wikipedia.org/wiki/AVX-512>`_ or `ARM Neon
<https://developer.arm.com/architectures/instruction-sets/simd-isas/neon>`_.
*Dr.Jit* is ideal for Monte Carlo methods, where the same computation must be
repeated for millions of random samples. *Dr.Jit* dynamically generates
specialized parallel code for the target platform.
As a fallback, 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 <https://en.wikipedia.org/wiki/Automatic_differentiation>`_.
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
<https://github.com/google/jax>`_, `Tensorflow <https://www.tensorflow.org>`_,
and `PyTorch <https://github.com/pytorch/pytorch>`_ along with backends like
`XLA <https://www.tensorflow.org/xla>`_ and `TorchScript
<https://pytorch.org/docs/stable/jit.html>`_?
The reason is related to the typical workloads: machine learning involves
small-ish 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: `pybind11
<https://github.com/pybind/pybind11>`_ for Python bindings, and `drjit-core
<https://github.com/mitsuba-renderer/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:
.. code-block:: bash
$ git clone --recursive https://github.com/mitsuba-renderer/drjit
Documentation
-------------
Please see Dr.Jit's page on `readthedocs.io <https://drjit.readthedocs.io>`_
for example code and reference documentation.
References, citations
---------------------
Please see the paper `Dr.Jit: A Just-In-Time Compiler for Differentiable
Rendering <https://rgl.epfl.ch/publications/Jakob2022DrJit>`_ for the
nitty-gritty details and details on the problem motivating this project. There
is also a `video presentation
<https://rgl.s3.eu-central-1.amazonaws.com/media/papers/Jakob2022DrJit.mp4>`_
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:
.. code-block:: bibtex
@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
<https://ottojakob.com>`_. 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
<https://en.wikipedia.org/wiki/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 to improve the
well-being of differentiable rendering researchers.
*Dr.Jit* is the successor of the `Enoki
<https://github.com/mitsuba-renderer/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.
Raw data
{
"_id": null,
"home_page": "https://github.com/mitsuba-renderer/drjit",
"name": "drjit",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": null,
"author": "Wenzel Jakob",
"author_email": "wenzel.jakob@epfl.ch",
"download_url": null,
"platform": null,
"description": "About this project\n------------------\n\n**Dr.Jit** is a *just-in-time* (JIT) compiler for ordinary and differentiable\ncomputation. It was originally created as the numerical foundation of `Mitsuba\n3 <https://github.com/mitsuba-renderer/mitsuba3>`_, a differentiable `Monte\nCarlo <https://en.wikipedia.org/wiki/Monte_Carlo_method>`_ renderer. However,\n*Dr.Jit* is a general-purpose tool that can also help with various other types\nof embarrassingly parallel computation.\n\n*Dr.Jit* principally facilitates three steps:\n\n- **Vectorization and tracing**: When *Dr.Jit* encounters an operation (e.g. an\n addition ``a + b``) it does not execute it right away: instead, it remembers\n that an addition will be needed at some later point by recording it into a\n graph representation (this is called *tracing*). Eventually, it will\n *just-in-time* (JIT) compile the recorded operations into a *fused* kernel\n using either `LLVM <https://en.wikipedia.org/wiki/LLVM>`_ (when targeting the\n CPU) or `CUDA <https://en.wikipedia.org/wiki/CUDA>`_ (when targeting the\n GPU). The values ``a`` and ``b`` will typically be arrays with many elements,\n and the system parallelizes their evaluation using multi-core parallelism and\n vector instruction sets like `AVX512\n <https://en.wikipedia.org/wiki/AVX-512>`_ or `ARM Neon\n <https://developer.arm.com/architectures/instruction-sets/simd-isas/neon>`_.\n\n *Dr.Jit* is ideal for Monte Carlo methods, where the same computation must be\n repeated for millions of random samples. *Dr.Jit* dynamically generates\n specialized parallel code for the target platform.\n As a fallback, Dr.Jit can also be used without JIT-compilation, which turns\n the project into a header-only vector library without external dependencies.\n\n- **Differentiation**: If desired, *Dr.Jit* can compute derivatives using\n *automatic differentiation* (AD), using either `forward or reverse-mode\n accumulation <https://en.wikipedia.org/wiki/Automatic_differentiation>`_.\n Differentiation and tracing go hand-in-hand to produce specialized derivative\n evaluation code.\n\n- **Python**: *Dr.Jit* types are accessible within C++17 and Python. Code can be\n developed in either language, or even both at once. Combinations of Python\n and C++ code can be jointly traced and differentiated.\n\n*Dr.Jit* handles large programs with custom data structures, side effects, and\npolymorphism. It includes a mathematical support library including\ntranscendental functions and types like vectors, matrices, complex numbers,\nquaternions, etc.\n\nDifference to machine learning frameworks\n-----------------------------------------\n\nWhy did we create *Dr.Jit*, when dynamic derivative compilation is already\npossible using Python-based ML frameworks like `JAX\n<https://github.com/google/jax>`_, `Tensorflow <https://www.tensorflow.org>`_,\nand `PyTorch <https://github.com/pytorch/pytorch>`_ along with backends like\n`XLA <https://www.tensorflow.org/xla>`_ and `TorchScript\n<https://pytorch.org/docs/stable/jit.html>`_?\n\nThe reason is related to the typical workloads: machine learning involves\nsmall-ish computation graphs that are, however, made of arithmetically intense\noperations like convolutions, matrix multiplications, etc. The application\nmotivating *Dr.Jit* (differentiable rendering) creates giant and messy\ncomputation graphs consisting of 100K to millions of \"trivial\" nodes\n(elementary arithmetic operations). In our experience, ML compilation backends\nuse internal representations and optimization passes that are *too rich* for\nthis type of input, causing them to crash or time out during compilation. If\nyou have encountered such issues, you may find *Dr.Jit* useful.\n\nCloning\n-------\n\nDr.Jit recursively depends on two other repositories: `pybind11\n<https://github.com/pybind/pybind11>`_ for Python bindings, and `drjit-core\n<https://github.com/mitsuba-renderer/drjit-core>`_ providing core components of\nthe JIT-compiler.\n\nTo fetch the entire project including these dependencies, clone the project\nusing the ``--recursive`` flag as follows:\n\n.. code-block:: bash\n\n $ git clone --recursive https://github.com/mitsuba-renderer/drjit\n\nDocumentation\n-------------\n\nPlease see Dr.Jit's page on `readthedocs.io <https://drjit.readthedocs.io>`_\nfor example code and reference documentation.\n\nReferences, citations\n---------------------\n\nPlease see the paper `Dr.Jit: A Just-In-Time Compiler for Differentiable\nRendering <https://rgl.epfl.ch/publications/Jakob2022DrJit>`_ for the\nnitty-gritty details and details on the problem motivating this project. There\nis also a `video presentation\n<https://rgl.s3.eu-central-1.amazonaws.com/media/papers/Jakob2022DrJit.mp4>`_\nexplaining the design decisions at a higher level.\n\nIf you use *Dr.Jit* in your own research, please cite it using the following\nBibTeX entry:\n\n.. code-block:: bibtex\n\n @article{Jakob2022DrJit,\n author = {Wenzel Jakob and S{\\'e}bastien Speierer and Nicolas Roussel and Delio Vicini},\n title = {Dr.Jit: A Just-In-Time Compiler for Differentiable Rendering},\n journal = {Transactions on Graphics (Proceedings of SIGGRAPH)},\n volume = {41},\n number = {4},\n year = {2022},\n month = jul,\n doi = {10.1145/3528223.3530099}\n }\n\nLogo and history\n----------------\n\nThe *Dr.Jit* logo was generously created by `Otto Jakob\n<https://ottojakob.com>`_. The \"*Dr*.\" prefix simultaneously abbreviates\n*differentiable rendering* with the stylized partial derivative *D*, while also\nconveying a medical connotation that is emphasized by the `Rod of Asclepius\n<https://en.wikipedia.org/wiki/Rod_of_Asclepius>`_. Differentiable rendering\nalgorithms are growing beyond our control in terms of conceptual and\nimplementation-level complexity. A doctor is a person, who can offer help in\nsuch a time of great need. *Dr.Jit* tries to fill this role to to improve the\nwell-being of differentiable rendering researchers.\n\n*Dr.Jit* is the successor of the `Enoki\n<https://github.com/mitsuba-renderer/enoki>`_ project, and its high-level API\nstill somewhat resembles that of Enoki. The system evolved towards a different\napproach and has an all-new implementation, hence the decision to switch to a\ndifferent project name.\n",
"bugtrack_url": null,
"license": "BSD",
"summary": "A Just-In-Time-Compiler for Differentiable Rendering",
"version": "0.4.5",
"project_urls": {
"Homepage": "https://github.com/mitsuba-renderer/drjit"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "e4d56075e7258fc2f9f21fe251a8091f940158900bfff19668db0bb75c5e924c",
"md5": "861cfa922e1ce09684adaac5a0a8b27e",
"sha256": "bea760ca602c0fcc105845d92d92323133b6a4cdd00847371cb7b91c7b44ff5d"
},
"downloads": -1,
"filename": "drjit-0.4.5-cp310-cp310-macosx_10_14_x86_64.whl",
"has_sig": false,
"md5_digest": "861cfa922e1ce09684adaac5a0a8b27e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3206860,
"upload_time": "2024-06-04T13:54:36",
"upload_time_iso_8601": "2024-06-04T13:54:36.602270Z",
"url": "https://files.pythonhosted.org/packages/e4/d5/6075e7258fc2f9f21fe251a8091f940158900bfff19668db0bb75c5e924c/drjit-0.4.5-cp310-cp310-macosx_10_14_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "658b3f4e35a15cde66e4dbf175fb63e5d6c4dc5e992e7ff96efd4fdf91afecd0",
"md5": "e3eda5032edebc9980d3e8157e22e84f",
"sha256": "496d813ca6533e1761ca68f5d0b8a8201b694509c7d97523e11ac884ee5284ee"
},
"downloads": -1,
"filename": "drjit-0.4.5-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e3eda5032edebc9980d3e8157e22e84f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2856111,
"upload_time": "2024-06-04T13:54:38",
"upload_time_iso_8601": "2024-06-04T13:54:38.390113Z",
"url": "https://files.pythonhosted.org/packages/65/8b/3f4e35a15cde66e4dbf175fb63e5d6c4dc5e992e7ff96efd4fdf91afecd0/drjit-0.4.5-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7c653942a4b7a4333b658f40138ed37871d3107746a09a079bfbdc8868314672",
"md5": "a399cd388bdfd0d81b7dd6dd2d3e9fb8",
"sha256": "4748d96889e896135e6e552ecb213a063e9b37f24929b7975b0426295b57558a"
},
"downloads": -1,
"filename": "drjit-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a399cd388bdfd0d81b7dd6dd2d3e9fb8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 4675598,
"upload_time": "2024-06-04T13:54:39",
"upload_time_iso_8601": "2024-06-04T13:54:39.961427Z",
"url": "https://files.pythonhosted.org/packages/7c/65/3942a4b7a4333b658f40138ed37871d3107746a09a079bfbdc8868314672/drjit-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b4ca7ddbb6eaee2ba7724bd4a40c807a4fb651f346ebc1d707ae13887672a6c9",
"md5": "b75f7285dd84b2133838cb87efb2182f",
"sha256": "d1d667a73e6fb6b121bc4a35bef480a188d3211933eecf452b421f2cc603843b"
},
"downloads": -1,
"filename": "drjit-0.4.5-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "b75f7285dd84b2133838cb87efb2182f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3956093,
"upload_time": "2024-06-04T13:54:41",
"upload_time_iso_8601": "2024-06-04T13:54:41.619463Z",
"url": "https://files.pythonhosted.org/packages/b4/ca/7ddbb6eaee2ba7724bd4a40c807a4fb651f346ebc1d707ae13887672a6c9/drjit-0.4.5-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "846ec4740c11117642790ed3bf855b7d80a2e1012404ea54967588d6c299703b",
"md5": "86f854218efa77eaf0dfbc0b352ffd48",
"sha256": "c5388a0b11001daab7b31f4c9361ef90d1bab6b164b1c75ccd59bcea9f1d3196"
},
"downloads": -1,
"filename": "drjit-0.4.5-cp311-cp311-macosx_10_14_x86_64.whl",
"has_sig": false,
"md5_digest": "86f854218efa77eaf0dfbc0b352ffd48",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3207781,
"upload_time": "2024-06-04T13:54:43",
"upload_time_iso_8601": "2024-06-04T13:54:43.535355Z",
"url": "https://files.pythonhosted.org/packages/84/6e/c4740c11117642790ed3bf855b7d80a2e1012404ea54967588d6c299703b/drjit-0.4.5-cp311-cp311-macosx_10_14_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f7db2094845b96db9382d421ec9eeccecffdbc4b3a7e6a9bac6138ce89bcb01f",
"md5": "9891e38a754a8b2ff235ac59db520032",
"sha256": "1b4e8788adeb301c2a4a1549dc37ec1d4132d1c0b923245682c042cbb45b9ca4"
},
"downloads": -1,
"filename": "drjit-0.4.5-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9891e38a754a8b2ff235ac59db520032",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2857178,
"upload_time": "2024-06-04T13:54:45",
"upload_time_iso_8601": "2024-06-04T13:54:45.440712Z",
"url": "https://files.pythonhosted.org/packages/f7/db/2094845b96db9382d421ec9eeccecffdbc4b3a7e6a9bac6138ce89bcb01f/drjit-0.4.5-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d0ce0028a2bb98e79c226f8ed2d55d12f3f4090e9b92520c696336ac0f906484",
"md5": "e0e6f61e4918cf9aaca52b05320b7961",
"sha256": "13d045339936dc90f90457ce08106c6f2c46739d1f72e39a8f84994bc0e2e9cb"
},
"downloads": -1,
"filename": "drjit-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e0e6f61e4918cf9aaca52b05320b7961",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 4676027,
"upload_time": "2024-06-04T13:54:47",
"upload_time_iso_8601": "2024-06-04T13:54:47.921824Z",
"url": "https://files.pythonhosted.org/packages/d0/ce/0028a2bb98e79c226f8ed2d55d12f3f4090e9b92520c696336ac0f906484/drjit-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "614177aee6e4ded655842403a916337689f315156f32e004836589f8fdfed281",
"md5": "988f6f95e4b75b725778728222b23981",
"sha256": "70213faa5ce64e3c8ebc2ce7926e1a59c427888bd9b9fc181a87dcbe446c62ea"
},
"downloads": -1,
"filename": "drjit-0.4.5-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "988f6f95e4b75b725778728222b23981",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3957594,
"upload_time": "2024-06-04T13:54:49",
"upload_time_iso_8601": "2024-06-04T13:54:49.430409Z",
"url": "https://files.pythonhosted.org/packages/61/41/77aee6e4ded655842403a916337689f315156f32e004836589f8fdfed281/drjit-0.4.5-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "106754583915584eeec3f697140d194a1baad101dbe47844cdc91ce235a301d4",
"md5": "f2f0cc03c9c3dd50ff6fcee7a082f7a3",
"sha256": "46771fda41c8c189d1d0b84efa29313efe5f8c0d5bdff7974895f5cc2e919b6d"
},
"downloads": -1,
"filename": "drjit-0.4.5-cp312-cp312-macosx_10_14_x86_64.whl",
"has_sig": false,
"md5_digest": "f2f0cc03c9c3dd50ff6fcee7a082f7a3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3595770,
"upload_time": "2024-06-04T13:54:51",
"upload_time_iso_8601": "2024-06-04T13:54:51.328882Z",
"url": "https://files.pythonhosted.org/packages/10/67/54583915584eeec3f697140d194a1baad101dbe47844cdc91ce235a301d4/drjit-0.4.5-cp312-cp312-macosx_10_14_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8b019c93656c6bf6cc91f3f6bb2823514ef6db5d80b5790f705800989db7b28b",
"md5": "a90618cadfdf0147370736285bda4dac",
"sha256": "1543861a1883009453d22337d1b91a91dd2f3d8bd3c75e49f431270fccb17cec"
},
"downloads": -1,
"filename": "drjit-0.4.5-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a90618cadfdf0147370736285bda4dac",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3215399,
"upload_time": "2024-06-04T13:54:53",
"upload_time_iso_8601": "2024-06-04T13:54:53.231032Z",
"url": "https://files.pythonhosted.org/packages/8b/01/9c93656c6bf6cc91f3f6bb2823514ef6db5d80b5790f705800989db7b28b/drjit-0.4.5-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "21abeacf91a9958cce31d40ab3d56a248c8fbf4b0522847d37278dd889812c1a",
"md5": "b6c9fe7fa95de676f8bf9368de7f02ef",
"sha256": "d35a16bec49ee8703583357103459192c8d6fbdf143af76f2ac767ae5e0d7aa9"
},
"downloads": -1,
"filename": "drjit-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b6c9fe7fa95de676f8bf9368de7f02ef",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 4677282,
"upload_time": "2024-06-04T13:54:55",
"upload_time_iso_8601": "2024-06-04T13:54:55.373003Z",
"url": "https://files.pythonhosted.org/packages/21/ab/eacf91a9958cce31d40ab3d56a248c8fbf4b0522847d37278dd889812c1a/drjit-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c04dad1c0a97751184f6b1ca6ef2a7e4dd781433421e23b89066f8b247ecd0f9",
"md5": "9cb54b9a4df405935f0e834c07ef76b0",
"sha256": "3876ffc98f358188332dabc530a88bf86c6c8af6bfbb9226837b14b7c44e0fd6"
},
"downloads": -1,
"filename": "drjit-0.4.5-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "9cb54b9a4df405935f0e834c07ef76b0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3958323,
"upload_time": "2024-06-04T13:54:57",
"upload_time_iso_8601": "2024-06-04T13:54:57.910487Z",
"url": "https://files.pythonhosted.org/packages/c0/4d/ad1c0a97751184f6b1ca6ef2a7e4dd781433421e23b89066f8b247ecd0f9/drjit-0.4.5-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c9878b23952a66e82796a6738a11c0709fae07f6e5c92307e1e51b846cc05980",
"md5": "da626fd7668caf4499b9816c71208e2f",
"sha256": "3fadf21276aba000c74e114dce9be8faa83e0251b87297bfde2ee9bc52a6bb85"
},
"downloads": -1,
"filename": "drjit-0.4.5-cp38-cp38-macosx_10_14_x86_64.whl",
"has_sig": false,
"md5_digest": "da626fd7668caf4499b9816c71208e2f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3206769,
"upload_time": "2024-06-04T13:54:59",
"upload_time_iso_8601": "2024-06-04T13:54:59.679756Z",
"url": "https://files.pythonhosted.org/packages/c9/87/8b23952a66e82796a6738a11c0709fae07f6e5c92307e1e51b846cc05980/drjit-0.4.5-cp38-cp38-macosx_10_14_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "71115b66662789ab27267f62c5600a55339e9024b0486c6754ea7cdfb9074bdb",
"md5": "377feec16114b8141ca8231458b77b05",
"sha256": "e4df3b510ad8154e36b559a49cd690b6eb06404ae7fa8cce6fd300c0d5856d59"
},
"downloads": -1,
"filename": "drjit-0.4.5-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "377feec16114b8141ca8231458b77b05",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2856155,
"upload_time": "2024-06-04T13:55:02",
"upload_time_iso_8601": "2024-06-04T13:55:02.819317Z",
"url": "https://files.pythonhosted.org/packages/71/11/5b66662789ab27267f62c5600a55339e9024b0486c6754ea7cdfb9074bdb/drjit-0.4.5-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "24ccc17a36c189787338337cca1f4a567eedd81854f427e63e7291c64f9616be",
"md5": "4d71cd0c8ec9843c2c41355c91e9f9e9",
"sha256": "6fd9c0c68fb4fd94856e9a628465bd08d84f87eb9df6aab489c42109d5b8d7ec"
},
"downloads": -1,
"filename": "drjit-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4d71cd0c8ec9843c2c41355c91e9f9e9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 4675267,
"upload_time": "2024-06-04T13:55:05",
"upload_time_iso_8601": "2024-06-04T13:55:05.729886Z",
"url": "https://files.pythonhosted.org/packages/24/cc/c17a36c189787338337cca1f4a567eedd81854f427e63e7291c64f9616be/drjit-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f05c96633bf9fc23cc192db559fb1a21d8fff1cfa82d4b28e72fe8ea10cb68b9",
"md5": "bda95e3123c06c9e246f22864680066f",
"sha256": "85376f1771824840bdf908c93dfdabb049275a63e14a433b399ef7413d01d8e6"
},
"downloads": -1,
"filename": "drjit-0.4.5-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "bda95e3123c06c9e246f22864680066f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3956218,
"upload_time": "2024-06-04T13:55:08",
"upload_time_iso_8601": "2024-06-04T13:55:08.059518Z",
"url": "https://files.pythonhosted.org/packages/f0/5c/96633bf9fc23cc192db559fb1a21d8fff1cfa82d4b28e72fe8ea10cb68b9/drjit-0.4.5-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "81c218cd818ce8ebc9d89ebd158a60d2ce580cb7a7d941a2617fc29e8faa3ea3",
"md5": "318be45c031f5f995b788c3481ad8a66",
"sha256": "ce6298273d3f69f49434148bedf315fb793d84844c0382687a516d286a5df9b4"
},
"downloads": -1,
"filename": "drjit-0.4.5-cp39-cp39-macosx_10_14_x86_64.whl",
"has_sig": false,
"md5_digest": "318be45c031f5f995b788c3481ad8a66",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3206877,
"upload_time": "2024-06-04T13:55:10",
"upload_time_iso_8601": "2024-06-04T13:55:10.057326Z",
"url": "https://files.pythonhosted.org/packages/81/c2/18cd818ce8ebc9d89ebd158a60d2ce580cb7a7d941a2617fc29e8faa3ea3/drjit-0.4.5-cp39-cp39-macosx_10_14_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "87ae06a2abfaab2df50f703d615661552caa32c5f1e941258ce8c3509e7e94a0",
"md5": "0452aa0d94232b9d790a0ac065c1a0ae",
"sha256": "97dae1ce9bd88b7a097dfa252c22c45641816c56fe59f840022ca199937cda6d"
},
"downloads": -1,
"filename": "drjit-0.4.5-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0452aa0d94232b9d790a0ac065c1a0ae",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2856147,
"upload_time": "2024-06-04T13:55:11",
"upload_time_iso_8601": "2024-06-04T13:55:11.869921Z",
"url": "https://files.pythonhosted.org/packages/87/ae/06a2abfaab2df50f703d615661552caa32c5f1e941258ce8c3509e7e94a0/drjit-0.4.5-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "116d29774062c2355ddd802ce85d69eeda9f42c4ece0c501f9a5dec8fd0aed29",
"md5": "63e347e3f14fee20ba8786871563e08f",
"sha256": "b547188ad87e83ce5beb59545a12fb3b263ba18751aefe92fc03876ad99cc355"
},
"downloads": -1,
"filename": "drjit-0.4.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "63e347e3f14fee20ba8786871563e08f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 4675569,
"upload_time": "2024-06-04T13:55:14",
"upload_time_iso_8601": "2024-06-04T13:55:14.311492Z",
"url": "https://files.pythonhosted.org/packages/11/6d/29774062c2355ddd802ce85d69eeda9f42c4ece0c501f9a5dec8fd0aed29/drjit-0.4.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9186d57e5209afcc9116167d9fdec24f30ce6744c8ab7428d790e52cdc240ed4",
"md5": "fda328eb0b3bbce4d1583320760f085a",
"sha256": "212a305f56b3265f9ddfe13de9fdf171a1f9db7247da82919910bcad561d7c29"
},
"downloads": -1,
"filename": "drjit-0.4.5-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "fda328eb0b3bbce4d1583320760f085a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3955808,
"upload_time": "2024-06-04T13:55:16",
"upload_time_iso_8601": "2024-06-04T13:55:16.148359Z",
"url": "https://files.pythonhosted.org/packages/91/86/d57e5209afcc9116167d9fdec24f30ce6744c8ab7428d790e52cdc240ed4/drjit-0.4.5-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-06-04 13:54:36",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "mitsuba-renderer",
"github_project": "drjit",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "drjit"
}