Displaying 20 results from an estimated 46 matches for "snb".
Did you mean:
skb
2011 Jun 08
5
[PATCH] ioemu: IGFX passthrough fix SNB GGC
The GGC field have moved from 0x52 to 0x50 on Sandy Bridge.
Signed-off-by: Jean Guyader <jean.guyader@eu.citrix.com>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2010 Dec 10
0
[ANNOUNCE] xf86-video-intel 2.13.902
...ete when running synchronously.
i965: Check for potential vertex array overflow every time
i965: Also flush the vertex buffer when restarting the array.
display: Flush any pending batches before changing modes.
uxa: Prevent reading past the last byte on upload/download
snb: Emit more invariants only once
snb: Cache state between composite ops
snb: Cache pixmap binding locations
snb: Restore drawrect, we need the implicit flush
snb: Only emit CC and DepthStencil bos once per batch
uxa: Emit the damage after the render for the workaround i...
2017 Dec 31
1
Order of methods for optimx
...metimes to
reach better minimum using several rounds of optim().
Then I moved to optimx() to do the different optim rounds automatically
using "Nelder-Mead" and "BFGS" methods
I find a huge time difference using system.time() based on the order of
these both methods:
> snb # "Nelder-Mead" and "BFGS"
??? user?? system? elapsed
1021.656??? 0.200 1021.695
> sbn # "BFGS" and "Nelder-Mead"
??? user?? system? elapsed
3140.096??? 0.384 3139.728
But optimx() with "Nelder-Mead" and "BFGS" stops in local minimu...
2012 Nov 02
1
[PATCH] x86/mwait-idle: enable Ivy Bridge Xeon support
Matching a similar change in Linux 3.7-rc.
Signed-off-by: Jan Beulich <jbeulich@suse.com>
--- a/xen/arch/x86/cpu/mwait-idle.c
+++ b/xen/arch/x86/cpu/mwait-idle.c
@@ -365,6 +365,7 @@ static struct intel_idle_id {
ICPU(0x2a, snb),
ICPU(0x2d, snb),
ICPU(0x3a, ivb),
+ ICPU(0x3e, ivb),
{}
};
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
2014 Mar 04
0
[PATCH v5 3/8] qspinlock, x86: Add x86 specific optimization for 2 contending tasks
Updated version, this includes numbers for my SNB desktop and Waiman's
variant.
Curiously Waiman's version seems consistently slower on 2 cross node
CPUs. Whereas my version seems to have a problem on SNB with 2 CPUs.
There's something weird with the ticket lock numbers; when I compile
the code with:
gcc (Debian 4.7.2-5) 4.7.2
I...
2011 Jan 21
11
[PATCH]x86:x2apic: Disable x2apic on x86-32 permanently
x86:x2apic: Disable x2apic on x86-32 permanently
x2apic initialization on x86_32 uses vcpu pointer before it is initialized. As x2apic is unlikely to be used on x86_32, this patch disables x2apic permanently on x86_32. It also asserts the sanity of vcpu pointer before dereference to prevent further misuse.
Signed-off-by: Fengzhe Zhang <fengzhe.zhang@intel.com>
diff -r 02c0af2bf280
2013 Aug 29
7
[PATCH 0/3] x86: mwait_idle improvements ported from Linux
1: x86/mwait_idle: remove assumption of one C-state per MWAIT flag
2: x86/mwait_idle: export both C1 and C1E
3: x86/mwait_idle: initial C8, C9, C10 support
Signed-off-by: Len Brown <len.brown@intel.com>
Signed-off-by: Jan Beulich <jbeulich@suse.com>
2014 Mar 03
5
[PATCH v5 3/8] qspinlock, x86: Add x86 specific optimization for 2 contending tasks
Hi,
Here are some numbers for my version -- also attached is the test code.
I found that booting big machines is tediously slow so I lifted the
whole lot to userspace.
I measure the cycles spend in arch_spin_lock() + arch_spin_unlock().
The machines used are a 4 node (2 socket) AMD Interlagos, and a 2 node
(2 socket) Intel Westmere-EP.
AMD (ticket) AMD (qspinlock + pending + opt)
Local:
2014 Mar 03
5
[PATCH v5 3/8] qspinlock, x86: Add x86 specific optimization for 2 contending tasks
Hi,
Here are some numbers for my version -- also attached is the test code.
I found that booting big machines is tediously slow so I lifted the
whole lot to userspace.
I measure the cycles spend in arch_spin_lock() + arch_spin_unlock().
The machines used are a 4 node (2 socket) AMD Interlagos, and a 2 node
(2 socket) Intel Westmere-EP.
AMD (ticket) AMD (qspinlock + pending + opt)
Local:
2006 Apr 02
4
64 bit
Hello,
Presently I am considering using CentOS as my base OS. I am wondering about a
few things though. I like KVirc as my irc program. I have had issue with
compiling it in 64bit mode under Fedora 3 and was todl it was because Fedora
installs both 32 and 64 bit libs and the compiler didn't understnad which to
use. Will this be an issue with CentOS 4 also?
If I install the 64 bit
2011 Oct 25
5
[PATCH] pm : provide CC7/PC2 residency
...u_idle.c Mon Oct 24 18:01:07 2011 +0100
+++ b/xen/arch/x86/acpi/cpu_idle.c Fri Oct 28 21:33:07 2011 +0800
@@ -60,11 +60,13 @@
#define GET_HW_RES_IN_NS(msr, val) \
do { rdmsrl(msr, val); val = tsc_ticks2ns(val); } while( 0 )
+#define GET_PC2_RES(val) GET_HW_RES_IN_NS(0x60D, val) /* SNB only */
#define GET_PC3_RES(val) GET_HW_RES_IN_NS(0x3F8, val)
#define GET_PC6_RES(val) GET_HW_RES_IN_NS(0x3F9, val)
#define GET_PC7_RES(val) GET_HW_RES_IN_NS(0x3FA, val)
#define GET_CC3_RES(val) GET_HW_RES_IN_NS(0x3FC, val)
#define GET_CC6_RES(val) GET_HW_RES_IN_NS(0x3FD, val)
+#define GE...
2018 Oct 09
1
[PATCH v7 1/5] drm/atomic_helper: Disallow new modesets on unregistered connectors
...fore.
> + */
> + if (!READ_ONCE(connector->registered) && crtc_state->active) {
> + DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] is not registered\n",
> + connector->base.id, connector->name);
> + return -EINVAL;
> + }
This broke my ilk (and presumably snb-bdw as well).
[ 25.593121] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:55:eDP-1]
[ 25.593131] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:55:eDP-1] is not registered
[ 25.593133] ------------[ cut here ]------------
[ 25.5931...
2020 Apr 10
2
Status of GF108GLM [NVS 5200M]
Hi, Ilia.
Sorry for such a big delay in answering. Real life and that stuff...
I am a newcomer so, please, if I do something wrong regarding my
quoting style or whatever, just let me know and I'll quickly improve. :)
El lun., 30 mar. 2020 a las 13:38, Ilia Mirkin
(<imirkin at alum.mit.edu>) escribi?:
>
> Yes, GF108 is Fermi (F = Fermi). Reclocking is currently not available
>
2003 Jan 21
0
login from winxp machine
...gh it is showing the name of the machine when it was an NT box on a
different domain. Do I have to make this machine have a static ip
address to get this to work properly? If so what is the linux command
to setup the ip address? Or do I have a problem with my samba
configuration?
Here is my snb.conf file
# Samba config file created using SWAT
# from localhost.localdomain (127.0.0.1)
# Date: 2003/01/21 14:15:25
# Global parameters
[global]
workgroup = HDS
netbios name = oittic1
server string = samba
encrypt passwords = Yes
obey pam restrictions...
2020 Apr 10
0
Status of GF108GLM [NVS 5200M]
...s. But it's no good of course.
Note that glxgears is primarily a measure of PCIe bandwidth in these
setups than actual render performance (basically it's just ferrying
those frames over the PCIe bus as fast as possible to the Intel GPU).
Not sure which intel chip you have ... if it's a SNB, it should be
faster and more featureful (you get GL 4.3 advertised and all the GL
4.5 and most 4.6 exts). If it's IVB or HSW, then it'll be a bit
slower, I expect (esp HSW).
> > There's a very experimental branch that does enable reclocking for
> > Fermi at https://github...
2014 May 18
0
[PATCH] nv50,nvc0: fix 3d blits with mipmap levels
...t;
Cc: "10.2" <mesa-stable at lists.freedesktop.org>
---
Did a full piglit run on nva8 and nve7 without regressions. The cubemap array
mipmap generation test still fails, but that will require more careful
investigation -- the output image seems identical to that which passes on my
snb.
src/gallium/drivers/nouveau/nv50/nv50_surface.c | 16 ++++++++++------
src/gallium/drivers/nouveau/nvc0/nvc0_surface.c | 14 +++++++++-----
2 files changed, 19 insertions(+), 11 deletions(-)
diff --git a/src/gallium/drivers/nouveau/nv50/nv50_surface.c b/src/gallium/drivers/nouveau/nv50/nv50_sur...
2014 Nov 16
5
[Bug 86356] New: [nv50] Graphical glitches in dota2
...s shown in the attached files.
Originally I've assumed to be a mesa regression, but it seems that's not the
case - old, previously working mesa produces the same output.
MESA_EXTENSION_OVERRIDE=-GL_ARB_draw_elements_base_vertex makes no difference,
plus replaying a trace recorded on i965/snb (no issues there) exhibits the same
glitches.
Note: After trimming the trace some textures are not missing and the text
appears block. The trace plus a screenshot of a non-trimmed trace will follow
shortly.
--
You are receiving this mail because:
You are the assignee for the bug.
--------------...
2003 Nov 20
0
(no subject)
...rs: sammy,eddie,
Adding user sammy to group Rockers
Adding user eddie to group Rockers
Group members of Speedsters: porsche,jeep,
Adding user porsche to group Speedsters
Adding user jeep to group Speedsters
Fetching BUILTIN database
SAM_DELTA_DOMAIN_INFO not handled
here is my snb.conf
[global]
workgroup = LINUX
netbios name = lynxpdc
passdb backend = tdbsam
os level = 33
preferred master = yes
; domain master = yes
domain master = No
local master = yes
security = user
encrypt passwords = yes...
2003 Nov 20
0
problems with uppercase in usernames
...group Rockers
> Adding user eddie to group Rockers
> Group members of Speedsters: porsche,jeep,
> Adding user porsche to group Speedsters
> Adding user jeep to group Speedsters
> Fetching BUILTIN database
> SAM_DELTA_DOMAIN_INFO not handled
>
> here is my snb.conf
> [global]
> workgroup = LINUX
> netbios name = lynxpdc
> passdb backend = tdbsam
> os level = 33
> preferred master = yes
> ; domain master = yes
> domain master = No
> local master = yes
> sec...
2012 Jun 17
3
Possible bug, dom0 crash on ubuntu
...1072009 AMI. 5)
(XEN) ACPI: SSDT BE08EA18, 036D (r1 SataRe SataTabl 1000 INTL 20091112)
(XEN) ACPI: SSDT BE08ED88, 09AA (r1 PmRef Cpu0Ist 3000 INTL 20051117)
(XEN) ACPI: SSDT BE08F738, 0A92 (r1 PmRef CpuPm 3000 INTL 20051117)
(XEN) ACPI: DMAR BE0901D0, 00B8 (r1 INTEL SNB 1 INTL 1)
(XEN) ACPI: BGRT BE090288, 003C (r0 ALASKA A M I 1072009 AMI 10013)
(XEN) System RAM: 16086MB (16473004kB)
(XEN) No NUMA configuration found
(XEN) Faking a node at 0000000000000000-000000042f600000
(XEN) Domain heap initialised
(XEN) found SMP MP-table at 000fceb0
(...