Ver Mensaje Individual
  #1 (permalink)  
Antiguo 14/10/2011, 20:49
Avatar de alF_pampero
alF_pampero
 
Fecha de Ingreso: abril-2006
Mensajes: 238
Antigüedad: 18 años
Puntos: 0
configuración xorg.conf para mejor rendimiento

Buenas gente, tanto tiempo que no me paseo por acá. El tema que quería consultarles es por la configuración del xorg.conf. Tengo una placa de video ATI Radeon HD4200 y previo a la configuración inicial del driver (pero posteriormente a la instalacion del fglrx) tengo el siguiente xorg.conf:


Código:
Section "Screen"
	Identifier	"Default Screen"
	DefaultDepth	24
EndSection

Section "Module"
	Load	"glx"
EndSection
Ahora bien, posterior a hacer un sudo aticonfig --initial --input=/etc/X11/xorg.conf el xorg.conf se modifica drasticamente, de la siguiente manera:

Código:
Section "ServerLayout"
	Identifier     "aticonfig Layout"
	Screen      0  "aticonfig-Screen[0]-0" 0 0
EndSection

Section "Module"
	Load  "glx"
EndSection

Section "Monitor"
	Identifier   "aticonfig-Monitor[0]-0"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
EndSection

Section "Device"
	Identifier  "aticonfig-Device[0]-0"
	Driver      "fglrx"
	BusID       "PCI:1:5:0"
EndSection

Section "Screen"
	Identifier "Default Screen"
	DefaultDepth     24
EndSection

Section "Screen"
	Identifier "aticonfig-Screen[0]-0"
	Device     "aticonfig-Device[0]-0"
	Monitor    "aticonfig-Monitor[0]-0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection
Traté de encontrar alguna diferencia importante de rendimiento entre ambas configuraciones del archivo utilizando algunos test simples (glxgears, gtkperf y algun test del phoronix) pero no encontré diferencia significativa.

Que xorg.conf recomiendan? quiero decir, parece que en esta caso, mas completo no implica mejor. Recomiendan algún otro benchmark aplicable que pueda hacer saltar la ficha un poco más?

Gracias y saludos.