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 first two perform classic one-ray-at-a-time simulation using either a RGB or spectral color representation, while the latter two can be used for inverse rendering on the CPU or GPU. 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.8
  • (optional) For computation on the GPU: Nvidia driver >= 495.89
  • (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.1.1},
    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.6.0-cp313-cp313-win_amd64.whl (45.0 MB view details)

Uploaded CPython 3.13Windows x86-64

mitsuba-3.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (57.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mitsuba-3.6.0-cp313-cp313-macosx_11_0_arm64.whl (34.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mitsuba-3.6.0-cp313-cp313-macosx_10_14_x86_64.whl (41.2 MB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

mitsuba-3.6.0-cp312-cp312-win_amd64.whl (45.0 MB view details)

Uploaded CPython 3.12Windows x86-64

mitsuba-3.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (57.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mitsuba-3.6.0-cp312-cp312-macosx_11_0_arm64.whl (34.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mitsuba-3.6.0-cp312-cp312-macosx_10_14_x86_64.whl (41.2 MB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

mitsuba-3.6.0-cp312-abi3-win_amd64.whl (29.5 MB view details)

Uploaded CPython 3.12+Windows x86-64

mitsuba-3.6.0-cp312-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (36.2 MB view details)

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

mitsuba-3.6.0-cp312-abi3-macosx_11_0_arm64.whl (24.6 MB view details)

Uploaded CPython 3.12+macOS 11.0+ ARM64

mitsuba-3.6.0-cp312-abi3-macosx_10_14_x86_64.whl (30.4 MB view details)

Uploaded CPython 3.12+macOS 10.14+ x86-64

mitsuba-3.6.0-cp311-cp311-win_amd64.whl (45.0 MB view details)

Uploaded CPython 3.11Windows x86-64

mitsuba-3.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (57.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mitsuba-3.6.0-cp311-cp311-macosx_11_0_arm64.whl (33.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mitsuba-3.6.0-cp311-cp311-macosx_10_14_x86_64.whl (41.2 MB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

mitsuba-3.6.0-cp310-cp310-win_amd64.whl (45.0 MB view details)

Uploaded CPython 3.10Windows x86-64

mitsuba-3.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (57.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mitsuba-3.6.0-cp310-cp310-macosx_11_0_arm64.whl (33.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mitsuba-3.6.0-cp310-cp310-macosx_10_14_x86_64.whl (41.2 MB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

mitsuba-3.6.0-cp39-cp39-win_amd64.whl (45.0 MB view details)

Uploaded CPython 3.9Windows x86-64

mitsuba-3.6.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (57.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mitsuba-3.6.0-cp39-cp39-macosx_11_0_arm64.whl (33.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mitsuba-3.6.0-cp39-cp39-macosx_10_14_x86_64.whl (41.2 MB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

mitsuba-3.6.0-cp38-cp38-win_amd64.whl (45.0 MB view details)

Uploaded CPython 3.8Windows x86-64

mitsuba-3.6.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (57.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mitsuba-3.6.0-cp38-cp38-macosx_10_14_x86_64.whl (41.2 MB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: mitsuba-3.6.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 45.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for mitsuba-3.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9232496f25a4c9febcc1f40e6aedb9b6d8a6bf7650bac5d0258209098ed162f8
MD5 754f482e55a12ca3eb83d8dc9a7b354f
BLAKE2b-256 55ab2b308c34746c95b49fccf177766cc5a65519ad015c7075e38e67dbad3152

See more details on using hashes here.

File details

Details for the file mitsuba-3.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 948c5ef11480c720112e81e32cfffc725787a28e9a8f2041e807c2fdd99535bb
MD5 a5a7c201168b9a51e7778957072b8da2
BLAKE2b-256 4139c8daa36a368469ff373bd38df744d510fa4b4b30ab7b3d3e2c96f69dc578

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 769c8a9b94d883dabc4c870eb5919b706c6a4fab5548841e9961d2cdf29fc2e5
MD5 e11c67be04834d42347af53e6fd5216d
BLAKE2b-256 2301b0b36e2a8a577f8a8e79283e6f325c10c21460917e0afb6c59c9bce04b99

See more details on using hashes here.

File details

Details for the file mitsuba-3.6.0-cp313-cp313-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.6.0-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 deb24552b5d309de9a9e6c824d20df599ac8dba1810390b1b27c66b433979e89
MD5 11e6b405b94c1c9c37444de5ddcd0df3
BLAKE2b-256 ff08b4ba1463bcde7934644b92e41447fff2f4925acb31cb45ea9865e46bbb94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mitsuba-3.6.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 45.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for mitsuba-3.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cf43fc5dad31f7b8654fda9fd50aef507d32c391e9e1cc1f881818431ffb040e
MD5 f56060280ce15b65c170b929f5210c8d
BLAKE2b-256 cce8a770ce109612c1d777759c3dcd52189e1a6aacfb60bc1eeb1890d0d83b5a

See more details on using hashes here.

File details

Details for the file mitsuba-3.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3bf3e2f3bcceadff46635bb1898891a55842e01544d00ffb99dc7555121d4c38
MD5 c65acc6e4fa623c015caf35ca3389ca3
BLAKE2b-256 d96a545ca8928f12e519121e522cb72afa5989c43cd378f7e6480c327b81f6fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2c97e5158654aa8b0c4b07782987c3e11a96ee47c72eefd810554cf4e88d52e
MD5 f882d08914f2a151612471d9b1d327c0
BLAKE2b-256 14b749fd2228a83a6219179892ea3c44c44e1224816bc4aa02c21b3805f70eda

See more details on using hashes here.

File details

Details for the file mitsuba-3.6.0-cp312-cp312-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.6.0-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 cf80e039150871b7ad7e005f9db6042450556d289bd834e0cb61ca3e753b3710
MD5 ff53862a501858cc4e6523ae0bc88e27
BLAKE2b-256 f4c1093d62067ed723b7bb80e9ffc4d952a1f39eed13de9bf533db872ed31e56

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mitsuba-3.6.0-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 a1bdc610c1113818b061cb5679056666949f70667a8d80fe8acdb18296a80f7e
MD5 7359a446ada8a726fa872694d37d4161
BLAKE2b-256 b4c573215e661e72d19cada0ea0d1b997267dcbd3c00c838d06411efaf613c94

See more details on using hashes here.

File details

Details for the file mitsuba-3.6.0-cp312-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.6.0-cp312-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5de52ca2c9f2c277300bbebebe48e56f2b1bc942feca0a0a42f47aa836ed317c
MD5 7895f3f80e9fea5aa9f6f8ccca446de5
BLAKE2b-256 b316b6fac72bef75e00e1e94f4e8e10ec94a8a5ce63317b4a7bf235ee1a53716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.0-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c26d2261ccbc4651845b4664ffb29499684a93fb0d2b31394ab68e0f8f4f3dc
MD5 5a43ad1db99d4b265b12438dc5386177
BLAKE2b-256 342e0b81ea0fc0ec13c4e07ee35870bf386aaf0c1bb82531abd9ab34f1c279dc

See more details on using hashes here.

File details

Details for the file mitsuba-3.6.0-cp312-abi3-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.6.0-cp312-abi3-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 fee03149a296895fc4d4de74f57a52a7744ffa2b69f7afe3de8eae5ae8d5a17e
MD5 fbf0a995b9551c5f9d48959c0db80b6b
BLAKE2b-256 bf5e1d35c99f50fe669c8bacc2ae8459279f674eceabad4d006208104858075d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mitsuba-3.6.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 45.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for mitsuba-3.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1356538c6ec1579e3844487e0d43fb8bb079019e54ca26151b16aab86ffe3337
MD5 5e636253d634a8a1ce10c0fbc0f81e20
BLAKE2b-256 ea2e841e2ee7381a69c6fbed55c99a46d615064a5258205071e74754052d54f2

See more details on using hashes here.

File details

Details for the file mitsuba-3.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e3fed780472d00fc1d32f0735cf7498ca8594d450c05f279d522679822e02c8f
MD5 c66094b40c5a172250d6f06f57b0379c
BLAKE2b-256 62445f59fa36377d0899480d0d17791be3d2f5f121bc070088c15bdec52ce5ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a9eb062b086a174de0801250f8358b6fc602e1b97fa7243c8c72f65e131ff25
MD5 598fe3c518a25a0f1fae2b68d5839323
BLAKE2b-256 3f3126cf951d1cc8d81fb27dc2add6d68616689dfa36170fec25de76fb0252ac

See more details on using hashes here.

File details

Details for the file mitsuba-3.6.0-cp311-cp311-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.6.0-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 bf5630a74022a0b2972a5fa0b345cb9ec8869ebb83c4d3f562a993f6b17ba700
MD5 80807bf32d4713f9758dd846e1560b17
BLAKE2b-256 03e3008535711a356ce0f14b50f6b59dc8a96eb7b27c82409e2124c5c87cff3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mitsuba-3.6.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 45.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for mitsuba-3.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e26aef87e3b868fd5732516fd30775161bf87f720f258294fdedd49ad9b3e589
MD5 f3fd96002a21cb9980b165e1e2194554
BLAKE2b-256 b9527965fe2a2e63a3db0c246078b1692215629729aa1c56e121736c628fd6a1

See more details on using hashes here.

File details

Details for the file mitsuba-3.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 dc4f3e47e8f42f142b2eba4e9bd3ec987645f18e5de0d27d4c07411aee627972
MD5 fa352590bbad9f3bc4fe87e7ba37dd5c
BLAKE2b-256 db6bccb541327c47226a3276822442a5148642715a201c0103308e094b795a6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed85d58147ab7fe79dd8e078ae6ba226f0dacc1a20ffc9e1476c4ebd4a7fa345
MD5 5b653347b357f4ced066b052237fd5d3
BLAKE2b-256 e15d3eec993ae7ffc29cecad27b17750a09e8a372793d1c12be03852dc64be86

See more details on using hashes here.

File details

Details for the file mitsuba-3.6.0-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.6.0-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 d78510862566f1533a046b0b6ac06a88258bc74727da18700870c041d80e4438
MD5 208ea86f3155ec5e5026cf1ae1884146
BLAKE2b-256 762039a910031bbebf5b75f9195ad2762805daee74474ab3f572fa7ce5c50605

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mitsuba-3.6.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 45.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for mitsuba-3.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 318b3084fcd33ca9d66e811fb0ce10b9aa65230d86b867b20ef8eee35ca79467
MD5 2462e4b2be5b5ac54cf155c556c821ff
BLAKE2b-256 dd4c0ed37b444b08ca8e1a911f523c3adf5191205c0cc270357824fe215a761b

See more details on using hashes here.

File details

Details for the file mitsuba-3.6.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.6.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0b5aa0e0d95b62f7dcf024dcaf499e059d993b92def109585c6a827bcfae468b
MD5 9faeefbc676c2a2749077b39fa637ad1
BLAKE2b-256 27810aac3177efa951162410c11c35e41fc5f3bab4176a8e4c0dda801f72062e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cda24bc6e423f3e64a06f49b45f1c6eb31648aaaf40ce5548fe646645793f46
MD5 94a43ca7278dad88ec8597ed7b5f72a0
BLAKE2b-256 97063db22b3b2187729a9721a904a2a3f40183a3616eeb8c1167a8179c8c0e72

See more details on using hashes here.

File details

Details for the file mitsuba-3.6.0-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.6.0-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 61a36c099d49d483c3873b28bcdbd3a9147f19533e0512849f3cec5ce9cefda4
MD5 3e587ddbb20acb80fa51f39191f547be
BLAKE2b-256 72126593c15173da8912b17caf1a0c134fa46216d76a4a0f70c3a2aafd4bebbb

See more details on using hashes here.

File details

Details for the file mitsuba-3.6.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: mitsuba-3.6.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 45.0 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for mitsuba-3.6.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f8050bc07a4bbc762c659846403aa95ee2a777c3a276ea4b3f641f6f3f004a41
MD5 02c24783697ce64ecdfa0778528f0fcf
BLAKE2b-256 2f54116b6ac1aa1c6090e921f0ba9d732f62a2395ba032c715c413967c668498

See more details on using hashes here.

File details

Details for the file mitsuba-3.6.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.6.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a6913c447fef80ec951e2b58cdc91411f9c24c649eaec436e3eb647ca1595fac
MD5 210c077c8a0d893dd8adf08dd44019f8
BLAKE2b-256 bfc06e60ca9c615b4320738c62f6149ebea12304c64f70e645ecb6875f14d630

See more details on using hashes here.

File details

Details for the file mitsuba-3.6.0-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for mitsuba-3.6.0-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 87bbc9800c484b79c5c4b277af4f231c8d2256f990051d06dcfc352bb4a3b003
MD5 626417c77d3429ed16cfc5b1b4a68cbd
BLAKE2b-256 f4e78ed0493201ecbc67beaec92405b5406caabae56deee13fa6d19f14361b30

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