Summary
Description: Phoronix Test Suite open-source benchmarking development
Last Change: Tue 5/21/13 15:49
Recent Commits
>
--git a/CHANGE-LOG b/CHANGE-LOG
index 029a0c9..2e0b89d 100644
--- a/CHANGE-LOG
+++ b/CHANGE-LOG
@@ -8,6 +8,7 @@ Phoronix Test Suite (Git)
- pts-core: When detecting a CPU comparison, report the detailed CPU system table information
- pts-core: When detecting a GPU/OpenGL comparison, report the detailed GPU system table information
- pts-core: Fix PRESET_OPTIONS failing when specifying an option value rather than its index
+- pts-core: Archive vdpauinfo when available
- phodevi: Support for detecting GLAMOR (Intel OpenGL-accelerated X.Org Driver) acceleration
- pts_Graph: Fix rounding issue on pts tables that are very wide
- pts_Graph: Add SideViewTable
diff --git a/pts-core/objects/client/pts_client.php b/pts-core/objects/client/pts_client.php
index 2c6b0e5..0d8a8dc 100644
--- a/pts-core/objects/client/pts_client.php
+++ b/pts-core/objects/client/pts_client.php
@@ -320,6 +320,7 @@ class pts_client
'lsmod',
'sensors',
'dmesg',
+ 'vdpauinfo',
'cpufreq-info',
'glxinfo',
'clinfo',
diff --git a/pts-core/objects/phodevi/components/phodevi_gpu.php b/pts-core/objects/phodevi/components/phodevi_gpu.php
index 144b370..4a69266 100644
--- a/pts-core/objects/phodevi/components/phodevi_gpu.php
+++ b/pts-core/objects/phodevi/components/phodevi_gpu.php
@@ -78,17 +78,17 @@ class phodevi_gpu extends phodevi_device_interface
{
$accel_2d = 'EXA';
}
- else if(strpos($xorg_log, 'UXA(0)'))
+ else if(stripos($xorg_log, 'GLAMOR acceleration'))
{
- $accel_2d = 'UXA';
+ $accel_2d = 'GLAMOR';
}
else if(strpos($xorg_log, 'SNA initialized'))
{
$accel_2d = 'SNA';
}
- else if(stripos($xorg_log, 'GLAMOR acceleration'))
+ else if(strpos($xorg_log, 'UXA(0)'))
{
- $accel_2d = 'GLAMOR';
+ $accel_2d = 'UXA';
}
else if(strpos($xorg_log, 'shadowfb'))
{
diff --git a/pts-core/objects/phodevi/phodevi_vfs.php b/pts-core/objects/phodevi/phodevi_vfs.php
index 248080f..ee503f8 100644
--- a/pts-core/objects/phodevi/phodevi_vfs.php
+++ b/pts-core/objects/phodevi/phodevi_vfs.php
@@ -39,6 +39,7 @@ class phodevi_vfs
'kernel_version' => array('type' => 'F', 'F' => '/proc/version', 'cacheable' => true, 'preserve' => true, 'subsystem' => 'System'),
'mounts' => array('type' => 'F', 'F' => '/proc/mounts', 'cacheable' => false, 'preserve' => true, 'subsystem' => 'Disk'),
'glxinfo' => array('type' => 'C', 'C' => 'glxinfo', 'cacheable' => true, 'preserve' => true, 'subsystem' => 'GPU'),
+ 'vdpauinfo' => array('type' => 'C', 'C' => 'vdpauinfo', 'cacheable' => true, 'preserve' => true, 'subsystem' => 'GPU'),
'lspci' => array('type' => 'C', 'C' => 'lspci -mmkvvnn', 'cacheable' => true, 'preserve' => true, 'subsystem' => 'System'),
'radeon_pm_info' => array('type' => 'F', 'F' => '/sys/kernel/debug/dri/0/radeon_pm_info', 'cacheable' => false, 'preserve' => true, 'subsystem' => 'GPU'),
'i915_capabilities' => array('type' => 'F', 'F' => '/sys/kernel/debug/dri/0/i915_capabilities', 'cacheable' => true, 'preserve' => true, 'subsystem' => 'GPU'),
<
Copyright © 2013 by Phoronix Media