Skip to main content

Mitsuba 3: A Retargetable Forward and Inverse Renderer

Project description

Mitsuba banner

Mitsuba Renderer 3

Documentation Tutorial videos Linux MacOS Windows PyPI
docs vids rgl-ci rgl-ci rgl-ci pypi

Introduction

Mitsuba 3 is a research-oriented rendering system for forward and inverse light transport simulation developed at EPFL in Switzerland. It consists of a core library and a set of plugins that implement functionality ranging from materials and light sources to complete rendering algorithms.

Mitsuba 3 is retargetable: this means that the underlying implementations and data structures can transform to accomplish various different tasks. For example, the same code can simulate both scalar (classic one-ray-at-a-time) RGB transport or differential spectral transport on the GPU. This all builds on Dr.Jit, a specialized just-in-time (JIT) compiler developed specifically for this project.

Main Features

  • Cross-platform: Mitsuba 3 has been tested on Linux (x86_64), macOS (aarch64, x86_64), and Windows (x86_64).

  • High performance: The underlying Dr.Jit compiler fuses rendering code into kernels that achieve state-of-the-art performance using an LLVM backend targeting the CPU and a CUDA/OptiX backend targeting NVIDIA GPUs with ray tracing hardware acceleration.

  • Python first: Mitsuba 3 is deeply integrated with Python. Materials, textures, and even full rendering algorithms can be developed in Python, which the system JIT-compiles (and optionally differentiates) on the fly. This enables the experimentation needed for research in computer graphics and other disciplines.

  • Differentiation: Mitsuba 3 is a differentiable renderer, meaning that it can compute derivatives of the entire simulation with respect to input parameters such as camera pose, geometry, BSDFs, textures, and volumes. It implements recent differentiable rendering algorithms developed at EPFL.

  • Spectral & Polarization: Mitsuba 3 can be used as a monochromatic renderer, RGB-based renderer, or spectral renderer. Each variant can optionally account for the effects of polarization if desired.

Tutorial videos, documentation

We've recorded several YouTube videos that provide a gentle introduction Mitsuba 3 and Dr.Jit. Beyond this you can find complete Juypter notebooks covering a variety of applications, how-to guides, and reference documentation on readthedocs.

Installation

We provide pre-compiled binary wheels via PyPI. Installing Mitsuba this way is as simple as running

pip install mitsuba

on the command line. The Python package includes thirteen variants by default:

  • scalar_rgb
  • scalar_spectral
  • scalar_spectral_polarized
  • llvm_ad_rgb
  • llvm_ad_mono
  • llvm_ad_mono_polarized
  • llvm_ad_spectral
  • llvm_ad_spectral_polarized
  • cuda_ad_rgb
  • cuda_ad_mono
  • cuda_ad_mono_polarized
  • cuda_ad_spectral
  • cuda_ad_spectral_polarized

The scalar variants perform one-ray-at-a-time simulations, while the LLVM and CUDA variants can be used for inverse rendering on the CPU or GPU respectively. To access additional variants, you will need to compile a custom version of Dr.Jit using CMake. Please see the documentation for details on this.

Requirements

  • Python >= 3.9
  • (optional) For computation on the GPU: Nvidia driver >= 535
  • (optional) For vectorized / parallel computation on the CPU: LLVM >= 11.1

Usage

Here is a simple "Hello World" example that shows how simple it is to render a scene using Mitsuba 3 from Python:

# Import the library using the alias "mi"
import mitsuba as mi
# Set the variant of the renderer
mi.set_variant('scalar_rgb')
# Load a scene
scene = mi.load_dict(mi.cornell_box())
# Render the scene
img = mi.render(scene)
# Write the rendered image to an EXR file
mi.Bitmap(img).write('cbox.exr')

Tutorials and example notebooks covering a variety of applications can be found in the documentation.

About

This project was created by Wenzel Jakob. Significant features and/or improvements to the code were contributed by Sébastien Speierer, Nicolas Roussel, Merlin Nimier-David, Delio Vicini, Tizian Zeltner, Baptiste Nicolet, Miguel Crespo, Vincent Leroy, and Ziyi Zhang.

When using Mitsuba 3 in academic projects, please cite:

@software{Mitsuba3,
    title = {Mitsuba 3 renderer},
    author = {Wenzel Jakob and Sébastien Speierer and Nicolas Roussel and Merlin Nimier-David and Delio Vicini and Tizian Zeltner and Baptiste Nicolet and Miguel Crespo and Vincent Leroy and Ziyi Zhang},
    note = {https://mitsuba-renderer.org},
    version = {3.8.0},
    year = 2022
}

Project details


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.

mitsuba-3.8.0-cp314-cp314-win_amd64.whl (47.4 MB view details)

Uploaded CPython 3.14Windows x86-64

mitsuba-3.8.0-cp314-cp314-manylinux_2_28_x86_64.whl (63.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

mitsuba-3.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (54.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

mitsuba-3.8.0-cp314-cp314-macosx_11_0_arm64.whl (37.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mitsuba-3.8.0-cp313-cp313-win_amd64.whl (46.5 MB view details)

Uploaded CPython 3.13Windows x86-64

mitsuba-3.8.0-cp313-cp313-manylinux_2_28_x86_64.whl (63.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

mitsuba-3.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (53.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

mitsuba-3.8.0-cp313-cp313-macosx_11_0_arm64.whl (37.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mitsuba-3.8.0-cp312-cp312-win_amd64.whl (46.5 MB view details)

Uploaded CPython 3.12Windows x86-64

mitsuba-3.8.0-cp312-cp312-manylinux_2_28_x86_64.whl (63.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

mitsuba-3.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (53.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

mitsuba-3.8.0-cp312-cp312-macosx_11_0_arm64.whl (37.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mitsuba-3.8.0-cp312-abi3-win_amd64.whl (46.5 MB view details)

Uploaded CPython 3.12+Windows x86-64

mitsuba-3.8.0-cp312-abi3-manylinux_2_28_x86_64.whl (63.0 MB view details)

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

mitsuba-3.8.0-cp312-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (54.0 MB view details)

Uploaded CPython 3.12+manylinux: glibc 2.17+ ARM64

mitsuba-3.8.0-cp312-abi3-macosx_11_0_arm64.whl (37.6 MB view details)

Uploaded CPython 3.12+macOS 11.0+ ARM64

mitsuba-3.8.0-cp311-cp311-win_amd64.whl (46.4 MB view details)

Uploaded CPython 3.11Windows x86-64

mitsuba-3.8.0-cp311-cp311-manylinux_2_28_x86_64.whl (63.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

mitsuba-3.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (53.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

mitsuba-3.8.0-cp311-cp311-macosx_11_0_arm64.whl (37.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mitsuba-3.8.0-cp310-cp310-win_amd64.whl (46.4 MB view details)

Uploaded CPython 3.10Windows x86-64

mitsuba-3.8.0-cp310-cp310-manylinux_2_28_x86_64.whl (63.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

mitsuba-3.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (53.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

mitsuba-3.8.0-cp310-cp310-macosx_11_0_arm64.whl (37.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mitsuba-3.8.0-cp39-cp39-win_amd64.whl (46.4 MB view details)

Uploaded CPython 3.9Windows x86-64

mitsuba-3.8.0-cp39-cp39-manylinux_2_28_x86_64.whl (63.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

mitsuba-3.8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (53.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

mitsuba-3.8.0-cp39-cp39-macosx_11_0_arm64.whl (37.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file mitsuba-3.8.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: mitsuba-3.8.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 47.4 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mitsuba-3.8.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 314aba39467273d52e7eff277bd25f7c524e514d2f907645f52f22e83a7f566e
MD5 9c1d2d23cb318e37205e12b3b84d32d5
BLAKE2b-256 5ca022b8eb1774545cae5f45c708e27f187d92095ee2088ce5e63329e1f1b4ff

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 812fcd3bcc11db2fc735a7f201a71f0ec2679671d6560a4591dd01ad6271a78d
MD5 b9df33d0bfd87ef5c60ab770c695910b
BLAKE2b-256 b22d69238f42531ae8eaef8a9b279d4ad025e6d260dcb18976906bc2ec7001e2

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 85acc8085aa06f25a5452590021c9c7cb75976f2d41563e7d34b07015a740295
MD5 ec81dcbd1c30481179c9f59282559ef6
BLAKE2b-256 fe852cf9c909d2fd17ea1f1b6971d93657ee4a047574b41b45594b7c542bb121

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed35a166148879635f1a0f7b09103864ea2abe17570dddf9cbc4631b5fa5bec6
MD5 d6669edfbf19900f33bffb57bc2008aa
BLAKE2b-256 ac8ef820d02fb006e3e50a61705e53600213d6d5ee9b2f1b865e9fe4960b155f

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: mitsuba-3.8.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 46.5 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mitsuba-3.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d94a0883906a0d1493b2b6c37e7f7a9b61676e30e65752d747984de6567c34fe
MD5 2f5390f6b5308bc4be22629a98cb581e
BLAKE2b-256 8ab4c712a4081a3892f5ca27f8584738b8ced40170d6621de20e6a5350a1e756

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e7fb4b1eb9943dfdc0bfb64ee2f1e87382ffa1954b1b948dd9d166e7e705df6a
MD5 84d6bff1467b71d24a063ac5b2444b89
BLAKE2b-256 647133a5d33b1f3f3dd856dd65be10692c621a8e9f26a7f3aaaf24933f5f869e

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 72fd23a41dc3db6edd52b5b4551bac49164fed2e098f517b8ad598f5cb454d1c
MD5 8af7c2a843bf823f8f4587cfe9e75f5b
BLAKE2b-256 747bc600e185618d568442a7f15b66afc84c2de419721c5a3977f7dd9720f42d

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 159a3a45147acdcd22a8c0aa2d37beb0ca000104cfc497533568d27022950549
MD5 a7a0ff3031dd2787fc20b8c1bd5748b8
BLAKE2b-256 b53bd6e3562c0c544138a8385cf6badee6f551b7c76ef9f77caa4a52dcf75f5b

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: mitsuba-3.8.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 46.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mitsuba-3.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 aa5d2a3212868aec0f0d4f40c962c8c88e576ac3d2297cff1b729e3d2b91c475
MD5 0561e750826862994d0beffcc5d03080
BLAKE2b-256 a78baa6db9f8572dbf2f17575399d7ac9c50a053b9c77d94ee6955289aa6331b

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ab3f290bba4576cd0951a9bb71a9907d12a6b74a9ae8df2af2ad7ee48f781a2b
MD5 5fbbde71e8ffb68869a0dcdcae11c9e1
BLAKE2b-256 d2bbddd5260b29db01941aa3d6ac82e391445ba69b237381e10a9f5eb444f959

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 212f5a19df757dad12a782aeaa0a4764f9be375091c2badb0734ffbe3c1507b6
MD5 0fe602f47b463a08a6133c7f7fb46bf4
BLAKE2b-256 4f61af29ff70fa07c53eac67ca731e8a67d1cf3a7d735837280a5fd24994e04e

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3b15649b81d85d9796ad27a25b4beaf4139a776e0c02cdb6a1461a62b887416
MD5 0d311d24859352ecd1d58f7c0efc4d9d
BLAKE2b-256 1bf00198ac7d1dc8769a4b6a8d6bcee1cfa598bee2c77cd8da412ed73b763ca4

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp312-abi3-win_amd64.whl.

File metadata

  • Download URL: mitsuba-3.8.0-cp312-abi3-win_amd64.whl
  • Upload date:
  • Size: 46.5 MB
  • Tags: CPython 3.12+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mitsuba-3.8.0-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 f30621af86bd6d99374940f16c193d812855cc54d774dd43220c02ac6628d04b
MD5 6b25963e1f943f9ca9cbfce83f710e18
BLAKE2b-256 52d83a69c5d061d0e7f749356fe9298d1cb6c91a085ee4dece600f817ca7b18c

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp312-abi3-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp312-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 991cd863bb47afc5b885117bb2d90750d75f46dbea41007e47bb24cd8767de0e
MD5 17c307946732833f6de6cd631976f77c
BLAKE2b-256 b6b44cfc7ea1305461acc6145852c1073da8422f64da229be3e5fe1ea52931a5

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp312-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp312-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9c826a7d934d73b59db17591c390de69ddfa1c91473541794a6a433cbb710fe6
MD5 e0cc1c44024eb50293d592f36e9498e4
BLAKE2b-256 7726609dcb0998b994f05102a2b6c41634092cf00c475b7286c4e3c8593e9e46

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp312-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1f3f3ed87925f97572e99b762c7bd999ac2227ad7493b5f88567a97468f2a23
MD5 ad18b6faa10a8e91c165a2e2a0e6ea66
BLAKE2b-256 e78590fefee087141a3ef50c725dee9b0479d07dfc352a8476388c05b5226957

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: mitsuba-3.8.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 46.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mitsuba-3.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4094153b66457fa8146f480bef9f5e6b253ecd89a32887ddf10d39500e2aa5c2
MD5 0486ef44253090988badbedc1cd3d7c1
BLAKE2b-256 4151e8c2fae2092341cf9a023866439fe65e764ab904ed970579b9540f22044e

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92e1c701a5c745ed1f5e946ebdf61957123a3c892d64c4cd44a9706731d19c3d
MD5 d1f360f82ac1afab5063a4168ffd4934
BLAKE2b-256 9bb97adc0b34307fa406000cd0fef6eb8756a26c51ef2b365ab7cd670b06e215

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5d3cd99bf6a46b2ed3494ada788e73da4217842d37f596ef4cc28d2a9ab4c914
MD5 8f68407beba6abbce1f36f7fd03c2a77
BLAKE2b-256 cec0ce7c672a96a0c3131b7a552518b6ffb104dd248af11d08b986eae15c8121

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7637d7bc4b8004d5e479be5ea5479208a6d6d581f80de0f20b42f4c0090f1df
MD5 58f116c94f6e1d8fa3f0be250ea272c3
BLAKE2b-256 c4eee737f3a5689e21ff91ca530dc4e13b1ca92b259d7089e8bffc6e0cddc194

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mitsuba-3.8.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 46.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mitsuba-3.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0226900374533364d1a2b44302ab27023b91d4fbbf0e37107f80c0f453339dd1
MD5 76135cfbf10ffdac1dfed0b6ab182b92
BLAKE2b-256 3d4a0f4e95b21c7573bc8e2ab5e6feda0b1c45d82e135ddbba410ed99ab9bf99

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9eb8acac75e8c3c258b572b5dce2a911dc9b35df1ca9d7c30e3676b8f20b35de
MD5 3bc156fd2297852c2f50646c15a2a8b5
BLAKE2b-256 4f9cc51fca679ad0d69210e52d00d77706626857e73c34368a854ee1c9124684

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2bb66c496bffb4637a42ce634ea0a284cf1ab2f659e1b694ba0ad083692f64c3
MD5 1eddaae1ede3f3317909c003ce24bde3
BLAKE2b-256 85d424bff61361e061d490d1c5d5fb556c0bb16d21b9a882627f49a74dee2dea

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4fbb728a314c27a62ce7eac553d94aa76939d4511467bd311173a59ca69a57a
MD5 4d0d36c81c3feb6bb9fcb138f4194db3
BLAKE2b-256 8c8fbb2b6aa85a5c7f265674ca9bcc23a9cd7edf71acb6b2802a239559de5eb2

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mitsuba-3.8.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 46.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mitsuba-3.8.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7a9c8499712f187b3a4954016bf44e47acb3cbab17241a290079b240f099a15e
MD5 884e714760578c369b08222ffb954012
BLAKE2b-256 c1409bf53cd1a44e3b62fd8f1848235fc149c5f1205c31e231fdcb04a14381cb

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eaf1ac138b4ff252e7193cca0e8cdd76d58babb3f3926369f0b900db83efa5e9
MD5 382bdc7002418d5387068267f975d05d
BLAKE2b-256 2c3e91591bec6bac614e8470e231673b5e9327b03e4e00d52a5573846c29d643

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 cc7a6412afd9a80e8dfd9604503838ce7bed11bffdc56b29adb6ac87daf4248c
MD5 df5372fb1aa079b6b4cd35d0c4a97eb2
BLAKE2b-256 94d4ed37b0ce7684bf9b054e70d05486f84cd48c3c339c2aa240486425d50814

See more details on using hashes here.

File details

Details for the file mitsuba-3.8.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mitsuba-3.8.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d2345c03ddda90ae4e4c4ec9c26eabf29e071780d45b050f1ddc5512fbfd7f0
MD5 488901e9733f47da5832aee7b24e0db6
BLAKE2b-256 05d433d5983186f24d0fab3efae00f774e4529498d305979ec213a722eb5c5bf

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