Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

PL1/PL2singlemultith ratio%,of maxVulkanURL to test results
10183185654.659%12608CPU, GPU
20252093073.764%23895CPU, GPU
302622107904.174%28420CPU, GPU
402610122624.785%29486CPU, GPU
502624131355.091%29379CPU, GPU
602624136375.294%29610CPU, GPU
702622139315.397%29518CPU, GPU
802604142575.599%29522CPU, GPU
902618142635.499%29430CPU, GPU
1002614143965.5100%29381CPU, GPU

Same on Ubuntu 24.04

PL1/PL2singlemultith ratio%,of maxVulkanURL to test results
10184084484.659%13040CPU, Vulkan
20249392513.764%24717CPU, Vulkan
302598107104.174%29519CPU, Vulkan
402596122194.785%30430CPU, Vulkan
502618130395.090%30468CPU, Vulkan
602615136155.294%30492CPU, Vulkan
702624139025.396%30503CPU, Vulkan
802634141605.499%30492CPU, Vulkan
902611142495.599%30433CPU, Vulkan
1002615144055.5100%30458CPU, Vulkan

Execute test

Code Block
cd /root/Geekbench/Geekbench-6.4.0-Linux
# CPU Tests
for power in 10 20 30 40 50 60 70 80 90 100; do echo; echo ============== $power ==============; /root/setPL.sh $power $power; ./geekbench6; echo; done
# GPU Tests OpenCL
for power in 10 20 30 40 50 60 70 80 90 100; do echo; echo ============== $power ==============; /root/setPL.sh $power $power; ./geekbench6 --gpu OpenCL  ; echo; done  
# GPU Tests Vulkan
for power in 10 20 30 40 50 60 70 80 90 100; do echo; echo ============== $power ==============; /root/setPL.sh $power $power; ./geekbench6 --gpu Vulkan ; echo; done

...