Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Flexible IO Tester
Timed Linux Kernel Compilation
Blender
7-Zip Compression
SVT-AV1
FFmpeg
Newest Tests
OpenVINO GenAI
Rustls
LiteRT
WarpX
Epoch
Valkey
Recently Updated Tests
srsRAN Project
VVenC
x265
RELION
Llamafile
Llama.cpp
New & Recently Updated Tests
Recently Updated Suites
Machine Learning
Server Motherboard
HPC - High Performance Computing
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
GPU Residency 1.0.2
pts/gpu-residency-1.0.2
- 27 September 2020 -
Deprecate test profile.
install.sh
#!/bin/bash cat > gpu-residency << EOT #!/bin/sh if [[ -e \$1 ]]; then ST=\`cat \$1\` sleep 1m ET=\`cat \$1\` echo \$((ET - ST)) > \$LOG_FILE 2>&1 else echo -1 > ~/test-exit-status 2>&1 fi EOT chmod +x gpu-residency
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.0.0m2--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>#_RESULT_# ms</OutputTemplate> </ResultsParser> </PhoronixTestSuite>
support-check.sh
#!/bin/sh cat /sys/class/drm/card0/power/rc6_residency_ms if [ $? -gt 0 ]; then echo "Intel graphics hardware running on a modern Linux kernel is required for this test profile." > $TEST_CUSTOM_ERROR fi
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.0.0m2--> <PhoronixTestSuite> <TestInformation> <Title>GPU Residency</Title> <Description>This test measures the GPU residency of a given state for a 60 second interval.</Description> <ResultScale>ms</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>1</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.2</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Deprecated</Status> <Maintainer>Jim Kukunas</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>State</DisplayName> <Identifier>state</Identifier> <Menu> <Entry> <Name>RC6</Name> <Value>/sys/class/drm/card0/power/rc6_residency_ms</Value> </Entry> <Entry> <Name>RC6P</Name> <Value>/sys/class/drm/card0/power/rc6p_residency_ms</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>