Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
FFmpeg
x265
Newest Tests
Rustls
LiteRT
WarpX
Epoch
Valkey
Whisperfile
Recently Updated Tests
Mobile Neural Network
ACES DGEMM
NWChem
SuperTuxKart
ASTC Encoder
SVT-AV1
New & Recently Updated Tests
Recently Updated Suites
Database Test Suite
Machine Learning
Steam
New & Recently Updated Suites
Component Benchmarks
CPUs / Processors
GPUs / Graphics
OpenGL
Disks / Storage
Motherboards
File-Systems
Operating Systems
OpenBenchmarking.org
Corporate / Organization Info
Bug Reports / Feature Requests
Blender 1.9.0
pts/blender-1.9.0
- 25 February 2021 -
Update against Blender 2.92 upstream.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.2.2--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://download.blender.org/release/Blender2.92/blender-2.92.0-linux64.tar.xz, http://mirror.clarkson.edu/blender/release/Blender2.92/blender-2.92.0-linux64.tar.xz</URL> <MD5>43b909ee3e36d4ed3bb9d004b5fbc3e7</MD5> <SHA256>2cd17ad6e9d6c241ac14b84ad6e72b507aeec979da3d926b1a146e88e0eb3eb4</SHA256> <FileName>blender-2.92.0-linux64.tar.xz</FileName> <FileSize>147176708</FileSize> <PlatformSpecific>Linux</PlatformSpecific> </Package> <Package> <URL>https://download.blender.org/release/Blender2.92/blender-2.92.0-windows64.zip, http://mirror.clarkson.edu/blender/release/Blender2.92/blender-2.92.0-windows64.zip</URL> <MD5>4c777351882c76e8b7b77e0663cffe1a</MD5> <SHA256>5ea980be32819e7cf68ecc53ee117aa1ad7da3cb191c8ff3ff3d776574aa3eb8</SHA256> <FileName>blender-2.92.0-windows64.zip</FileName> <FileSize>209047629</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> <Package> <URL>https://download.blender.org/release/Blender2.92/blender-2.92.0-macOS.dmg, http://mirror.clarkson.edu/blender/release/Blender2.92/blender-2.92.0-macOS.dmg</URL> <MD5>1b6139531120ddfcc2ea365e692b4e35</MD5> <SHA256>0ab72447b8b02e6a9553aa9b2cb77ff63500e63e176cf31d8762f8b62bbfb03d</SHA256> <FileName>blender-2.92.0-macOS.dmg</FileName> <FileSize>196998363</FileSize> <PlatformSpecific>MacOSX</PlatformSpecific> </Package> <Package> <URL>http://download.blender.org/demo/test/cycles_benchmark_20160228.zip, http://ftp.vim.org/ftp/pub/ftp/graphics/blender/demo/test/cycles_benchmark_20160228.zip, http://ftp.nl.freebsd.org/ftp/graphics/blender/demo/test/cycles_benchmark_20160228.zip</URL> <MD5>61dabc9cc92dec9549f73f7453d9a875</MD5> <SHA256>026e7499a7bd9e0d41fe4d43e611a145a62d8d5df4fe347a6a08c6f0e98cf0c6</SHA256> <FileName>cycles_benchmark_20160228.zip</FileName> <FileSize>530883683</FileSize> </Package> <Package> <URL>http://svn.blender.org/svnroot/bf-blender/trunk/lib/benchmarks/cycles/barbershop_interior/barbershop_interior_cpu.blend</URL> <MD5>2b1cb4c2f4f1813ab7a8d95dceabf48d</MD5> <SHA256>95972b56180462cac47ec82f3a755bd9111ec18ca37a6196a319c013db994130</SHA256> <FileName>barbershop_interior_cpu.blend</FileName> <FileSize>287574804</FileSize> <Optional>TRUE</Optional> </Package> <Package> <URL>http://svn.blender.org/svnroot/bf-blender/trunk/lib/benchmarks/cycles/barbershop_interior/barbershop_interior_gpu.blend</URL> <MD5>10e5a559064df9f1da9dd43bef3f4523</MD5> <SHA256>4a79ec95e7d96602ab16d475370f6b765a713a546edfa420dd53a4c25e464417</SHA256> <FileName>barbershop_interior_gpu.blend</FileName> <FileSize>287594564</FileSize> <Optional>TRUE</Optional> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf blender-2.92.0-linux64.tar.xz unzip -o cycles_benchmark_20160228.zip mv benchmark/bmw27/*.blend ~ mv benchmark/classroom/*.blend ~ mv benchmark/fishy_cat/*.blend ~ mv benchmark/pabellon_barcelona/*.blend ~ rm -rf benchmark echo "#!/bin/bash cd blender-2.92.0-linux64 BLEND_ARGS=\$@ if [[ \$@ =~ .*CUDA.* ]] then COMPUTE_TYPE=\"CUDA\" elif [[ \$@ =~ .*OPENCL.* ]] then COMPUTE_TYPE=\"OPENCL\" elif [[ \$@ =~ .*OPTIX.* ]] then COMPUTE_TYPE=\"OPTIX\" elif [[ \$@ =~ .*NONE.* ]] then COMPUTE_TYPE=\"NONE\" BLEND_ARGS=\${BLEND_ARGS/_gpu/_cpu} else COMPUTE_TYPE=\"NONE\" BLEND_ARGS=\${BLEND_ARGS/_gpu/_cpu} fi echo \"import bpy bpy.context.preferences.addons['cycles'].preferences.get_devices() bpy.context.preferences.addons['cycles'].preferences.compute_device_type = '\$COMPUTE_TYPE' bpy.context.preferences.addons['cycles'].preferences.devices[0].use = True bpy.ops.wm.save_userpref()\" > setgpu.py ./blender -b --python setgpu.py ./blender \$BLEND_ARGS > \$LOG_FILE 2> /dev/null rm -f output.test" > blender chmod +x blender
install_macosx.sh
#!/bin/sh unzip -o cycles_benchmark_20160228.zip mv benchmark/bmw27/*.blend ~ mv benchmark/classroom/*.blend ~ mv benchmark/fishy_cat/*.blend ~ mv benchmark/pabellon_barcelona/*.blend ~ echo "#!/bin/bash [ ! -d /Volumes/Blender/ ] && hdid blender-2.92.0-macOS.dmg BLEND_ARGS=\$@ if [[ \$@ =~ .*CUDA.* ]] then COMPUTE_TYPE=\"CUDA\" elif [[ \$@ =~ .*OPENCL.* ]] then COMPUTE_TYPE=\"OPENCL\" elif [[ \$@ =~ .*OPTIX.* ]] then COMPUTE_TYPE=\"OPTIX\" elif [[ \$@ =~ .*NONE.* ]] then COMPUTE_TYPE=\"NONE\" BLEND_ARGS=\${BLEND_ARGS/_gpu/_cpu} else COMPUTE_TYPE=\"NONE\" BLEND_ARGS=\${BLEND_ARGS/_gpu/_cpu} fi echo \"import bpy bpy.context.preferences.addons['cycles'].preferences.get_devices() bpy.context.preferences.addons['cycles'].preferences.compute_device_type = '\$COMPUTE_TYPE' bpy.context.preferences.addons['cycles'].preferences.devices[0].use = True bpy.ops.wm.save_userpref()\" > ~/blender-setgpu.py /Volumes/Blender/Blender.app/Contents/MacOS/Blender -b --python \$DEBUG_HOME/blender-setgpu.py cd benchmark /Volumes/Blender/Blender.app/Contents/MacOS/Blender \$BLEND_ARGS > \$LOG_FILE rm -f output.test" > blender chmod +x blender
install_windows.sh
#!/bin/sh unzip -o blender-2.92.0-windows64.zip unzip -o cycles_benchmark_20160228.zip mv benchmark/bmw27/*.blend ~ mv benchmark/classroom/*.blend ~ mv benchmark/fishy_cat/*.blend ~ mv benchmark/pabellon_barcelona/*.blend ~ rm -rf benchmark echo "#!/bin/bash cd blender-2.92.0-windows64 BLEND_ARGS=\$@ if [[ \$@ =~ .*CUDA.* ]] then COMPUTE_TYPE=\"CUDA\" elif [[ \$@ =~ .*OPENCL.* ]] then COMPUTE_TYPE=\"OPENCL\" elif [[ \$@ =~ .*OPTIX.* ]] then COMPUTE_TYPE=\"OPTIX\" elif [[ \$@ =~ .*NONE.* ]] then COMPUTE_TYPE=\"NONE\" BLEND_ARGS=\${BLEND_ARGS/_gpu/_cpu} else COMPUTE_TYPE=\"NONE\" BLEND_ARGS=\${BLEND_ARGS/_gpu/_cpu} fi echo \"import bpy bpy.context.preferences.addons['cycles'].preferences.get_devices() bpy.context.preferences.addons['cycles'].preferences.compute_device_type = '\$COMPUTE_TYPE' bpy.context.preferences.addons['cycles'].preferences.devices[0].use = True bpy.ops.wm.save_userpref()\" > ~/blender-setgpu.py export HOME=\"\$DEBUG_HOME\" export PATH=\$DEBUG_PATH export PWD=\$DEBUG_HOME\blender-2.81-windows64 ./blender.exe -b --python \$DEBUG_HOME\blender-setgpu.py ./blender.exe \$BLEND_ARGS > \$LOG_FILE rm -f output.test" > blender chmod +x blender
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.2.2--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Time: #_RESULT_# (Saving: 00:00.03)</OutputTemplate> <LineHint>Saving:</LineHint> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.2.2--> <PhoronixTestSuite> <TestInformation> <Title>Blender</Title> <AppVersion>2.92</AppVersion> <Description>Blender is an open-source 3D creation and modeling software project. This test is of Blender's Cycles benchmark with various sample files. GPU computing via OpenCL, NVIDIA OptiX, and NVIDIA CUDA is supported.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.9.0</Version> <SupportedPlatforms>Linux, Windows, MacOSX</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <SupportedArchitectures>x86_64</SupportedArchitectures> <ExternalDependencies>bzip2-development, glut, opencl</ExternalDependencies> <EnvironmentSize>950</EnvironmentSize> <ProjectURL>https://www.blender.org/</ProjectURL> <InternalTags>OpenCL, CUDA</InternalTags> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Default> <Arguments>-noaudio --enable-autoexec</Arguments> </Default> <Option> <DisplayName>Blend File</DisplayName> <Identifier>blend</Identifier> <ArgumentPrefix>-b </ArgumentPrefix> <ArgumentPostfix> -o output.test -x 1 -F JPEG -f 1</ArgumentPostfix> <Menu> <Entry> <Name>BMW27</Name> <Value>../bmw27_gpu.blend</Value> </Entry> <Entry> <Name>Classroom</Name> <Value>../classroom_gpu.blend</Value> </Entry> <Entry> <Name>Fishy Cat</Name> <Value>../fishy_cat_gpu.blend</Value> </Entry> <Entry> <Name>Pabellon Barcelona</Name> <Value>../pavillon_barcelone_gpu.blend</Value> </Entry> <Entry> <Name>Barbershop</Name> <Value>../barbershop_interior_gpu.blend</Value> </Entry> </Menu> </Option> <Option> <DisplayName>Compute</DisplayName> <Identifier>compute</Identifier> <ArgumentPrefix> </ArgumentPrefix> <Menu> <Entry> <Name>CPU-Only</Name> <Value>NONE</Value> </Entry> <Entry> <Name>OpenCL</Name> <Value>OPENCL</Value> </Entry> <Entry> <Name>CUDA</Name> <Value>CUDA</Value> </Entry> <Entry> <Name>NVIDIA OptiX</Name> <Value>OPTIX</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>