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.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.1-cp313-cp313-win_amd64.whl (45.1 MB view details)

Uploaded CPython 3.13Windows x86-64

mitsuba-3.6.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (57.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

mitsuba-3.6.1-cp313-cp313-macosx_10_14_x86_64.whl (41.3 MB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

mitsuba-3.6.1-cp312-cp312-win_amd64.whl (45.1 MB view details)

Uploaded CPython 3.12Windows x86-64

mitsuba-3.6.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (57.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

mitsuba-3.6.1-cp312-cp312-macosx_10_14_x86_64.whl (41.3 MB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

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

Uploaded CPython 3.12+Windows x86-64

mitsuba-3.6.1-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.1-cp312-abi3-macosx_11_0_arm64.whl (24.6 MB view details)

Uploaded CPython 3.12+macOS 11.0+ ARM64

mitsuba-3.6.1-cp312-abi3-macosx_10_14_x86_64.whl (30.5 MB view details)

Uploaded CPython 3.12+macOS 10.14+ x86-64

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

Uploaded CPython 3.11Windows x86-64

mitsuba-3.6.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (57.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mitsuba-3.6.1-cp311-cp311-macosx_11_0_arm64.whl (34.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mitsuba-3.6.1-cp311-cp311-macosx_10_14_x86_64.whl (41.3 MB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

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

Uploaded CPython 3.10Windows x86-64

mitsuba-3.6.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (57.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mitsuba-3.6.1-cp310-cp310-macosx_11_0_arm64.whl (34.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mitsuba-3.6.1-cp310-cp310-macosx_10_14_x86_64.whl (41.3 MB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

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

Uploaded CPython 3.9Windows x86-64

mitsuba-3.6.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (57.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mitsuba-3.6.1-cp39-cp39-macosx_11_0_arm64.whl (34.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mitsuba-3.6.1-cp39-cp39-macosx_10_14_x86_64.whl (41.3 MB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

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

Uploaded CPython 3.8Windows x86-64

mitsuba-3.6.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (57.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mitsuba-3.6.1-cp38-cp38-macosx_10_14_x86_64.whl (41.3 MB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

File details

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

File metadata

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

File hashes

Hashes for mitsuba-3.6.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c28c1316eb4979ff063e743cf8d13d0c3bbf77a27736a5c5892048c00c33cc0c
MD5 de7e94ce994e1561ab8851a4c3684810
BLAKE2b-256 41d5fec0b0f3f3ae254df95b753dadcd2be7770532c5c1961b33c61eecf66bc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7916aab830c2098770adaa1c2615088f0fbbd5d89a63136f5707ff9e24feb674
MD5 389ff2c678ab1faee15ea7f26fca0c39
BLAKE2b-256 6664ff982d19ef25d02e45f6fd3cf6c9175769f928faae5278c3914678ceb966

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7aad02ff9183d826d08721c5c3c485d3863237f0dea077f9fe2162555b679d58
MD5 946a2e04630915a83385bd440c5b48d3
BLAKE2b-256 e9a127df60bbeb8bcc979491bcf98f510b03157ea31890c8cca3d2e8a5366be4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.1-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b04260bd1e1f60ff925249de98542185c1d113355c18bf45a762b745f675472f
MD5 cbc4a1068d80358ae38da41005a35e05
BLAKE2b-256 47e9e9558b2da503e0f0567aacc191385aa0d9d9edaafa1174b66e55dfd0ceef

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mitsuba-3.6.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a57d66da489f49837ad700ea1e6f662c54183abd06b3c67b49783cc4a5fb14c8
MD5 904f5ad3b1ef4dc090bea33473ee631c
BLAKE2b-256 7eba434c0afc7596e77dd9e91755e66c929f6aa72e92bbc7ba4da64b0495d346

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7f54460935dd8cd015bc376b1465859c4d6aa6d23ead9a0882dedb634fa7b1b0
MD5 253d31ea8db9fdf1047dfb8a707c05a6
BLAKE2b-256 a50e6264d2a1d98f3734c57bcf78dc8596fbb981fe9307658158526157bfa1e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01d48b70a0adab162c904208bccb0edc8b0074998cc0fa38a4c79ea478ca06dd
MD5 c90a6f0a44bc49f93fddeea370f0aa8b
BLAKE2b-256 a91f52bf93a5c25253d7e61e449645241ace73b69a6025bfbcee1e648526e6b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.1-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 157535a3efd97306469ed75c633244121777f8a3ae31b27f66b4745c712a7bba
MD5 20481e85df6e385f24c7f6480fff61f1
BLAKE2b-256 c93a723769cdd804cfefd15294091d150fdebba6e37a78a78ec64c75fb27a5ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mitsuba-3.6.1-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.8

File hashes

Hashes for mitsuba-3.6.1-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 370bab694e03cef546c25eb164b3d333b60077f191a30397a2af80bd89625441
MD5 be2f05ed040166608bcdfaf360107218
BLAKE2b-256 d478a26ee3cd608efeb21ecba7fbfbc56888458df2ec5e12ef3985eced36ffc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.1-cp312-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 89d1edbfaf4416e4516fcae963ec50ef3d7b220535db01add14ae9e5e1c85aab
MD5 e1f3a7fd18f888d748f70d9f420778e4
BLAKE2b-256 56bf720f6cef3ad3afb4be273539fe42929d11be533a8d3955b83d2125a2964e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.1-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1a7ffc4937cd54a274a3d79d93b483ee2ac1846176cbd98396a470f2354d66f
MD5 02abc13860ccf0c6f09f63b4540cfbf3
BLAKE2b-256 8f6ac188a42d9873a023c6121ef8b57aef6318c81054661edc1a441e331abd23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.1-cp312-abi3-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 1b7f790012b0d1f0c67f0a1ce71c221d09d488977e4eb4334d3f4fadc9fcdecc
MD5 c9660f19510e769e321080584eb00229
BLAKE2b-256 96310ccc596d0ce67e16e43f2bdb245f429ffbeb746fc7be8d7e4947fb3d1450

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mitsuba-3.6.1-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.8

File hashes

Hashes for mitsuba-3.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3c4c08f9f7730e2c64df3f47c8b09cb94546d807c545f9d131f11ee69f9ad6e4
MD5 94066163ad6841cf4c60a2ef61323215
BLAKE2b-256 8b705751a1840ef7343f04aef4d936b41aa7a2ce5c64411dafbf36263af9034c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3dc0aabb4871a19723503180e820c30262d5c328c2be31e6003578050e39b5fa
MD5 9b1796fc32c88a70ae58e148325a34cc
BLAKE2b-256 a3ced9629d0d0df76f4e5c38ad9e2dc2ea0eac0d93c3ca4c1fdbb7d2088bf463

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb0c2bc2cd7095249370ae3791dd1eef07b4356c2e3f90b5c0b9be8461f26463
MD5 fff7d4fde12a8491d1f4a2d8cc35063e
BLAKE2b-256 17c5bfaac4e45f6045a05003bc5c81dc1e19f0427d77f96b75ad71d03154dfcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.1-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8304324dc93fde58b009b0a0f3c3295800be7221e7ea8a3c05310ec415b4f058
MD5 69f6b156df6171e1626522bca3387670
BLAKE2b-256 98034baef2c0e79fc8072a9d7e588c9807f052f675accd2ba8e7ff040cbcd276

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mitsuba-3.6.1-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.8

File hashes

Hashes for mitsuba-3.6.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8f08d4d8997851a5b5d1c767eada163c1639a782626f7649c3492833ca54135d
MD5 4b5523eaf3a570d196d7ce6f85557741
BLAKE2b-256 42a62dab66935867cb26e4851f611b2ac4c0dfdbd0718a05ba943ae0e55d66bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c189a00d8be352b53845b97d9afa3532526e9567ff9d4140c6c4882fa2324ad8
MD5 585e949fac627978bfe01fef084e2a21
BLAKE2b-256 c7bebfb1f48cdc945041df520311c4ffca3468c2aae391ddb5f04629f492e212

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1727533eecceeb3daef15683c847391f34cb9d51d47632f5ea768a12847c2759
MD5 2d39f5be427d8949feed29c7351a0c7a
BLAKE2b-256 02192c8fc4d73d3b39295cc51ab3db9a3b658096b5c4df7ebabe1be9502a2dd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.1-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f9ed4b772f7eef2aa0a14e6ed7d9526c14bc5cfb38705fde0a3b0bee8f1cd69c
MD5 f0d60ff6de99d7e0dccbe302505ce6a3
BLAKE2b-256 c5b3f4c2b12899fada9d8a6a3c2f645c12db20bfc867fbc569f23b52bedaad07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mitsuba-3.6.1-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.8

File hashes

Hashes for mitsuba-3.6.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 32b25bd0d4f75685b37747f07f2ad2a97609b8beabd4e5dd517dc2e29613b9f7
MD5 bc2e4935b0cddd146cbbbcd7e02827b2
BLAKE2b-256 18c040c0f863dde3e59a41932e07e572ba7471a2c5b1350f04b5061c7dfa6f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5785bdc32a899bd4f768bf3d54120d31bb8984af1966b21220259dc228e976c0
MD5 11a4dfb9a4b87caa07bd970299a6821a
BLAKE2b-256 54bece50be8f3d004cfe1b782b0018ed68472563cd29d71deab3c0de994c3931

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 947fa3cff9db27d03ab62dbc2d7ba0d1448a26c7cbc351ffa872e01e16d3136c
MD5 88213d98e977384ad0ae77a940de3889
BLAKE2b-256 c8c057c257e1691dcb9717248da80d72474c43aaa48dbb407a1bae711aa233ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.1-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 dd9aaaf29630e45f117448aa6e194cb8e8b9d20c17c55ebc1baba0b92801f9b6
MD5 8d33765f06cbe2307e6bfab6754be99b
BLAKE2b-256 150f9d274dbf2ac82ff7df02dae7fabd280ab4b9846606a6b73eabf81ec04153

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mitsuba-3.6.1-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.8

File hashes

Hashes for mitsuba-3.6.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cbf6481c8c03f1b946edfc44a2be2b8cea967ae6bb1c5a7eea1f78bf181a2059
MD5 da61cf0c9e02da7eb05abf635bc678f2
BLAKE2b-256 3c652dd7f10260aab1585a39a0343e6cd79f3d8cd1a54c50ea7172cd66576f5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 48275b90d5735d71b2410386e3af9ed5630d479a989a68f5db92dcb69adddc41
MD5 78ecea62a43dbc9ac10920373868f106
BLAKE2b-256 ae01b332a6c713e0d289a7d4fe19f9c08066ecdc1397901f58912b6ddbe4b92b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mitsuba-3.6.1-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 69dd0f916cb0e848f173777bbc8350642de8d4566e6c07f9a81ca58b9bcb478b
MD5 6fdd8d3607ce3bf6da65e081266e8a81
BLAKE2b-256 cc00213e2bdcac7b75a783eecbbc7466b1fab5767209322360385929449520a7

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