Skip to main content

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.9.1},
    year = 2022
}

Release files for mitsuba 3.9.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for mitsuba 3.9.1
File
mitsuba-3.9.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
mitsuba-3.9.1-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
mitsuba-3.9.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
mitsuba-3.9.1-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
mitsuba-3.9.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
mitsuba-3.9.1-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
mitsuba-3.9.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
mitsuba-3.9.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
mitsuba-3.9.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
mitsuba-3.9.1-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
mitsuba-3.9.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
mitsuba-3.9.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
mitsuba-3.9.1-cp312-abi3-win_amd64.whl CPython 3.12 abi3 Windows x86-64 Details
mitsuba-3.9.1-cp312-abi3-manylinux_2_28_x86_64.whl CPython 3.12 abi3 Linux glibc 2.28+ x86-64 Details
mitsuba-3.9.1-cp312-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.12 abi3 Linux glibc 2.17+ ARM64 Details
mitsuba-3.9.1-cp312-abi3-macosx_11_0_arm64.whl CPython 3.12 abi3 macOS 11.0+ ARM64 Details
mitsuba-3.9.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
mitsuba-3.9.1-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
mitsuba-3.9.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
mitsuba-3.9.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
mitsuba-3.9.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
mitsuba-3.9.1-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
mitsuba-3.9.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
mitsuba-3.9.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
mitsuba-3.9.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
mitsuba-3.9.1-cp39-cp39-manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64 Details
mitsuba-3.9.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
mitsuba-3.9.1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details

Total release size: 1.5 GB

Release files / mitsuba-3.9.1-cp314-cp314-win_amd64.whl

Download URL mitsuba-3.9.1-cp314-cp314-win_amd64.whl
Size 46.3 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
3c16729411518f9dc81cf38dbc24180f0b4c65dbefc402e90f6a61067256980c
BLAKE2b-256 checksum
How to use checksums
cdf2b58b37cf6d7018296aa224cfcfcf6e6844609d6ab50f4f04c8e3a6e9d411
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL mitsuba-3.9.1-cp314-cp314-manylinux_2_28_x86_64.whl
Size 62.6 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
10bb1c2342404fd39dba025849f238720cee2dbbd8c779a2fb71bf566d501d58
BLAKE2b-256 checksum
How to use checksums
4e213f074ed13364a28651a1610100d9ea1f071f179ebe522876211f800220af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL mitsuba-3.9.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 54.1 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
0fb76edaed5075fd51309aa17c3a0d676b82c21d9457012d308ff1c2296a612c
BLAKE2b-256 checksum
How to use checksums
62aeb15e72cf78b9f8c3a8311c3f56b200d716f2e29f30d2a6ce58a02cf0d0f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp314-cp314-macosx_11_0_arm64.whl

Download URL mitsuba-3.9.1-cp314-cp314-macosx_11_0_arm64.whl
Size 52.3 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
17c31f2690c936fc748a68123305289cff6b6a55d85eea4af7ce8b27f8d70a73
BLAKE2b-256 checksum
How to use checksums
2763aa281237261d780a6fc8b38cf4b2ce7c12bc48f26887c7b03ffb3f4b2982
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp313-cp313-win_amd64.whl

Download URL mitsuba-3.9.1-cp313-cp313-win_amd64.whl
Size 45.4 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
51e0a09b1cc59fb7b88013db622489f9bec718c7c25bd2fa239ae9ed4218dbf1
BLAKE2b-256 checksum
How to use checksums
4c07931614ca1cadd51837b56aad84651a242188bf761cc69d5cc82258ef5d7c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL mitsuba-3.9.1-cp313-cp313-manylinux_2_28_x86_64.whl
Size 62.6 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
8959e8de33427cf4d9b515a52d741dca7624e7c17094c5849f123a96504ca123
BLAKE2b-256 checksum
How to use checksums
1a83630c3022e3207e4e918c2b4982689c3a98f92fa85d3d5056be0755ac85f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL mitsuba-3.9.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 54.0 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
6af7e8abfb317001cdaa069949d8703381132d960a506a0dc50cf3a033d1ac6a
BLAKE2b-256 checksum
How to use checksums
25dd9bc26f8c18538a69f9c3bff7b7b6c9ba9003400e98cb9b1a70bf451a907d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp313-cp313-macosx_11_0_arm64.whl

Download URL mitsuba-3.9.1-cp313-cp313-macosx_11_0_arm64.whl
Size 52.3 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ab829531fa2766510ffc0d5f53bb91267b049e06854d97531a0fc591207debc2
BLAKE2b-256 checksum
How to use checksums
baa4f1011427a0118a05d329755814d8594a8f3688de3b8d7722bdfe6411bb8d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp312-cp312-win_amd64.whl

Download URL mitsuba-3.9.1-cp312-cp312-win_amd64.whl
Size 45.4 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
634a404a46c0bdaa05343798c3cd2442085b7e2af955ad82ee0302d96c98cd61
BLAKE2b-256 checksum
How to use checksums
01e640c4880af59aea4cedf1ea085f602c2df1ebc38cd4b431a0c98bafe35ee1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL mitsuba-3.9.1-cp312-cp312-manylinux_2_28_x86_64.whl
Size 62.6 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
81e4f8eb00e5e95dcea4c3f69439801d4cc43994f061fd3a9f7b3149e492ba55
BLAKE2b-256 checksum
How to use checksums
934303a84dca9da60dd98cead71f6ce430002d8f6d6e316d812c76017042d121
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL mitsuba-3.9.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 54.0 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5324efdd30d63802441fd093ea5b6a09e5c89c7613c83222e673434f3c23dd6d
BLAKE2b-256 checksum
How to use checksums
c3d5ae3d579533c91054e14d836a397de6ff9e03bae12bcf086bd149ec073702
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL mitsuba-3.9.1-cp312-cp312-macosx_11_0_arm64.whl
Size 52.3 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
92dbad51558b13246c557fa94e33e8eac93d42af2ec992de9b55d10bfd5d6c20
BLAKE2b-256 checksum
How to use checksums
421009e939197014a71acb586323c3c5f344c0f96cf74b2a82e90a48b85a10cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp312-abi3-win_amd64.whl

Download URL mitsuba-3.9.1-cp312-abi3-win_amd64.whl
Size 45.3 MB
Tags CPython 3.12 Windows x86-64 abi3
SHA-256 checksum
How to use checksums
d9486bf1c7661d40986fdc03979347a8745d8494898393c42757e3fa9d806330
BLAKE2b-256 checksum
How to use checksums
07c6379dd96003d16dbe16eaacbfecf11925b4124a3dda7fb472e17a33c94527
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp312-abi3-manylinux_2_28_x86_64.whl

Download URL mitsuba-3.9.1-cp312-abi3-manylinux_2_28_x86_64.whl
Size 62.6 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64 abi3
SHA-256 checksum
How to use checksums
67d9cea9e0ee75295ad3692ef12360e285e679be01e8ff1997ef4c38925f5a13
BLAKE2b-256 checksum
How to use checksums
c7e74ddd6ff024d1b07d85c693201ef0e367906fb8c7378ec3508b21b95e3bd3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp312-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL mitsuba-3.9.1-cp312-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 54.1 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 abi3
SHA-256 checksum
How to use checksums
a75fb6fbff45383dfeceda97713ea1246a27f628d353e0a8f1b11e5329904ce2
BLAKE2b-256 checksum
How to use checksums
7b7d6dd1f79e4215298766fdd08114c67e125a92aaff0b4530b7ce7d5a41215e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp312-abi3-macosx_11_0_arm64.whl

Download URL mitsuba-3.9.1-cp312-abi3-macosx_11_0_arm64.whl
Size 52.4 MB
Tags CPython 3.12 abi3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
58038e600ef78b22934a5a2efd28cfad1075d2466018b54fa111630dc7786194
BLAKE2b-256 checksum
How to use checksums
1e593473acbb0df044d3cf9bedbeeb3603d1de2b86e246db005be2736ca7302b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp311-cp311-win_amd64.whl

Download URL mitsuba-3.9.1-cp311-cp311-win_amd64.whl
Size 45.3 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
35af853a5edab15be1dad3e685033bd7166b372e23cac13584d7a66569e8bfcd
BLAKE2b-256 checksum
How to use checksums
25dc6eecf57102004fc170e55ac9dcb3e3efc15ea4cb7242cda1a5b84f63b0fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL mitsuba-3.9.1-cp311-cp311-manylinux_2_28_x86_64.whl
Size 62.7 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7ad4fca9aedd588e5851177c7510eb8b6d27b2a5d2ee614e443dfd1bf92d457f
BLAKE2b-256 checksum
How to use checksums
a5383efa1839a36bdbd9c2adeb403c3907f71525ccb571c66c9f1349f3014b2d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL mitsuba-3.9.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 54.1 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
8b244bdc5bb99d43bfdb13cd5e29ab3900c021b97d55146363bfd826b2304af6
BLAKE2b-256 checksum
How to use checksums
719c41787c8af40b8c0b8914b0837b688b250e8db761a88ed911b2fe3916e756
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL mitsuba-3.9.1-cp311-cp311-macosx_11_0_arm64.whl
Size 52.3 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3e6de2b89b09c6b4389d08a4a26e044e79bdc2faed303c4f5918230be5bef23f
BLAKE2b-256 checksum
How to use checksums
caa8aabcfb7cc5a8ab4bb0ecc9cfb8fcef05510dab1978d505a72c32f32dd74d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp310-cp310-win_amd64.whl

Download URL mitsuba-3.9.1-cp310-cp310-win_amd64.whl
Size 45.3 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
020f5a6bd42526ec3e23bf71f5b4fb9c2bd75568c79470d61be71d8e94f39e18
BLAKE2b-256 checksum
How to use checksums
e14ed3ee707932beac99f6ec900aca1881a7044ada32bf60c40babcf3d6530d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL mitsuba-3.9.1-cp310-cp310-manylinux_2_28_x86_64.whl
Size 62.7 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f1b26390e91ffc67bfbb0e2bc508f69194b339ea806a59dc130e55a68715b976
BLAKE2b-256 checksum
How to use checksums
2544e1b1bca2c9bccb2aa3e914a5c15a2a29df7bb6cf89d9da9d1c8f592a5233
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL mitsuba-3.9.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 54.1 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
78c4a68e4ce5217a8cd3ee9d14d12dfea623b3ea70057e472bdf27e0d131f6b5
BLAKE2b-256 checksum
How to use checksums
db2dbab84759e9982f3c9cf7a303a4cc1984640723646094125c962dc620567c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp310-cp310-macosx_11_0_arm64.whl

Download URL mitsuba-3.9.1-cp310-cp310-macosx_11_0_arm64.whl
Size 52.3 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6f6cbf48139489aad94dd3cdb85f9d1888c3a6d7d9ad8e9f2cce4c22f126cee9
BLAKE2b-256 checksum
How to use checksums
87eecd5dd90e154b1f9e150aeb492ae8b63f29ead53a543108921299cd41e391
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp39-cp39-win_amd64.whl

Download URL mitsuba-3.9.1-cp39-cp39-win_amd64.whl
Size 45.4 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
e8c50f7608f610c56aad3d3a0f56edea516bfdfab84d267fe4dff8f3c14176ef
BLAKE2b-256 checksum
How to use checksums
d8b2397b222f3cae06fa11cf015368f9b953791ac8e82bc3e8c6b30d3c8888d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp39-cp39-manylinux_2_28_x86_64.whl

Download URL mitsuba-3.9.1-cp39-cp39-manylinux_2_28_x86_64.whl
Size 62.7 MB
Tags CPython 3.9 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a3e86fbcb69b24d992d918d66f17d286942e35c33ac1831b71a78abc28b820ae
BLAKE2b-256 checksum
How to use checksums
0e43cf888b2b9b70dcc1dc8325e5d97864d9ac8a482670e646f01426c8432cec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL mitsuba-3.9.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 54.1 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
949054a6eda0bc2f7a6821e771d6367c22cbe25739919d98950720914e59c757
BLAKE2b-256 checksum
How to use checksums
55b78db0ff831274ee7b5e370bf3c3a0fcacb573bccf645dcda720dd53931b55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / mitsuba-3.9.1-cp39-cp39-macosx_11_0_arm64.whl

Download URL mitsuba-3.9.1-cp39-cp39-macosx_11_0_arm64.whl
Size 52.3 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9fa337b84e055086632998dbe31604707ad784845a37ecef5b7337d761d6d0a9
BLAKE2b-256 checksum
How to use checksums
134029570e6f1fae465a7ea091e1a36648a9250411fbe328c9dab1ccaa54e73b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release history Release notifications | RSS feed

This release

3.9.1 This release

28 release files

3.9.0

28 release files

3.8.0

28 release files

3.7.1

24 release files

3.6.2

24 release files

3.6.1

27 release files

3.6.0

27 release files

3.5.0

20 release files

3.4.1

20 release files

3.4.0

16 release files

3.3.0

16 release files

3.2.1

16 release files

3.1.1

16 release files

3.1.0

12 release files

3.0.2

12 release files

3.0.1

12 release files

3.0.0

12 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page