Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
x265
FFmpeg
Newest Tests
LiteRT
WarpX
Epoch
Valkey
Whisperfile
XNNPACK
Recently Updated Tests
ASTC Encoder
SVT-AV1
Unvanquished
Primesieve
XNNPACK
oneDNN
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
toyBrot Fractal Generator 1.0.0
pts/toybrot-1.0.0
- 28 February 2020 -
Initial commit of toyBrot.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.4.0--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://phoronix-test-suite.com/benchmark-files/toyBrot-20200228.tar.bz2</URL> <MD5>4cc02ae77015c58aafcb61d87017d3cb</MD5> <SHA256>0d53129660425914378dd1e042b245c265e3300bc96c9e22505102b093154a59</SHA256> <FileName>toyBrot-20200228.tar.bz2</FileName> <FileSize>64991</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf toyBrot-20200228.tar.bz2 cd toyBrot-master/ mkdir build cd build cmake .. make -j $NUM_CPU_CORES echo $? > ~/install-exit-status cd ~ echo "#!/bin/sh cd toyBrot-master/build/ ./\$@ > \$LOG_FILE echo \$? > ~/test-exit-status" > toybrot chmod +x toybrot
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.4.0--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Fractal Generation Took #_RESULT_# milliseconds</OutputTemplate> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.4.0--> <PhoronixTestSuite> <TestInformation> <Title>toyBrot Fractal Generator</Title> <Description>ToyBrot is a Mandelbrot fractal generator supporting C++ threads/tasks, OpenMP, Threaded Building Blocks, and other targets.</Description> <ResultScale>ms</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.0</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Benchmark</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, cmake, sdl2-development</ExternalDependencies> <EnvironmentSize>12</EnvironmentSize> <ProjectURL>https://gitlab.com/VileLasagna/toyBrot</ProjectURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Default> <PostArguments>-g -d 800 600 -i 1</PostArguments> </Default> <Option> <DisplayName>Implementation</DisplayName> <Identifier>implementation</Identifier> <Menu> <Entry> <Name>OpenMP</Name> <Value>raymarched/OMP/rmOpenMP</Value> </Entry> <Entry> <Name>C++ Tasks</Name> <Value>raymarched/STDTASKS/rmSTD_TASKS</Value> </Entry> <Entry> <Name>C++ Threads</Name> <Value>raymarched/STDTHREADS/rmSTD_THREADS</Value> </Entry> <Entry> <Name>TBB</Name> <Value>raymarched/TBB/rmTBB</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>