Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
153 views

How does _mm_mwait work?

How does _mm_mwait from pmmintrin.h work? (I mean not the asm for it, but action and how this action is taken in NUMA systems. The store monitoring is easy to implement only on bus-based SMP systems ...
9
votes
3answers
479 views

Does gcc, icc, or Microsoft's C/C++ compiler support or know anything about NUMA?

If I have a multi-processor board that has cache-coherent non-uniform memory access ( NUMA ), i.e. separate "northbridges" with separate RAM for each processor, does any compiler know how to ...
6
votes
3answers
404 views

Measuring NUMA (Non-Uniform Memory Access). No observable asymmetry. Why?

I've tried to measure the asymmetric memory access effects of NUMA, and failed. The Experiment Performed on an Intel Xeon X5570 @ 2.93GHz, 2 CPUs, 8 cores. On a thread pinned to core 0, I allocate ...
4
votes
2answers
224 views

Get node distance (hops) in NUMA systems

Is there any API/way to get the "distance" (called 'hops' in literature) between two NUMA nodes? I want to implement a memory allocation system that takes advantage of this (reuse memory from the ...
3
votes
1answer
127 views

Can I get the NUMA node from a pointer address (in C on Linux)?

I've set up my code to carefully load and process data locally on my NUMA system. I think. That is, for debugging purposes I'd really like to be able to use the pointer addresses being accessed ...
3
votes
2answers
134 views

Fastest way to share data between processors residing on different sockets

I have a dual socket 8 core processor, that is, each processor has 4-cores in it. I haven't seen its specification completely, but I think that a separate memory bank is attached to each processor in ...
3
votes
3answers
251 views

realloc() for NUMA Systems using HWLOC

I have a several custom allocators that provide different means to allocate memory based on different policies. One of them allocates memory on a defined NUMA node. The interface to the allocator is ...
2
votes
1answer
43 views

performance issues with parallel MATLAB on a NUMA machine

I'm running memory-intensive parallel computations in MATLAB on a 64-core NUMA machine under Windows 7, 8 cores per socket. I'm using parallel computing toolbox to do that. I've noticed a very strange ...
2
votes
2answers
306 views

do malloc/memcpy function run independently on NUMA?

While trying to increase the speed of my applications on non-NUMA / standard PCs I always found that the bottleneck was the call to malloc() because even in multi-core machines it is shared/synch ...
2
votes
1answer
372 views

how to config linux/CPU better for large scale software running (NUMA)

I am doing performance analysis on linux for large scale programs which is memory driven(tens of Gigabytes memory). I am thinking if it's possible to config linux/hardware to be more suitable to run ...
2
votes
3answers
283 views

How to force two process to run on the same CPU?

Context: I'm programming a software system that consists of multiple processes. It is programmed in C++ under Linux. and they communicate among them using Linux shared memory. Usually, in software ...
2
votes
1answer
174 views

Memory access time slow with VirtualAllocExNuma on Windows 7/64

In our application we are running on a dual Xeon server with memory configured as 12gb local to each processor and a memory bus connecting the two Xeon's. For performance reasons, we want to control ...
2
votes
1answer
74 views

How to use GetNumaProximityNode (Win7+)?

Starting with Win7/Server2008R2 the GetNumaProximityNode(Ex) function is available. It should help retrieve the distance between NUMA nodes, but I can't understand from the documentation ...
2
votes
1answer
152 views

Starting processes at same time is slower than staggering; why?

I'm evaluating the performance of an experimental system setup on an 8-core machine with 16GB RAM. I have two main-memory Java RDBMSs (hsqldb) running, and against each of these I run a TPCC client ...
1
vote
1answer
85 views

Windows SetThreadAffinityMask has no effect

I have written a small test program in which I try to use the Windows API call SetThreadAffinityMask to lock the thread to a single NUMA node. I retrieve the CPU bitmask of a node with the ...
1
vote
0answers
36 views

How to implement interleaved page allocation in a user-mode NUMA-aware memory allocator?

I am building a user-mode NUMA-aware memory allocator for linux. The allocator during its initialization grabs a large chunk of memory, one chunk per NUMA node. After this, memory pages requested by ...
1
vote
3answers
206 views

NUMA aware cache aligned memory allocation

In linux systems, pthreads library provides us a function (posix_memalign) for cache alignment to prevent false sharing. And to choose a specific NUMA node of the arhitecture we can use libnuma ...
1
vote
1answer
35 views

Why do allocations with numa_alloc_onnode() lead to “The page is not present”?

When I allocate memory on a specific NUMA node using numa_alloc_onnode() like this : char *ptr; if ((ptr = (char *) numa_alloc_onnode(1024,1)) == NULL) { fprintf(stderr,"Problem in %s line %d ...
1
vote
0answers
45 views

memory allocation and access on NUMA hardware

I am developing a scientific computing tool in python, that should be capable of distributing work over multiple cores in a NUMA shared memory environment. I am looking into the most efficient way of ...
1
vote
1answer
51 views

How to make program NUMA ready?

My program uses shared memory as a data storage. This data must be available to any application running, and fetching this data must be fast. But some applications can run on different NUMA nodes, and ...
1
vote
1answer
234 views

NUMA documentations for x86-64 processor?

I have already looked for NUMA documentations for X86-64 processors, unfortunately I only found optimization documents for NUMA. What I want is: how do I initialize NUMA in a system (this would ...
1
vote
1answer
291 views

NUMA memory regions allocation in Windows 7

Our application is: Hardware configuration is a dual Xeon server running Windows 7/64bit. Each Xeon has it's own 12gb RAM in a [NUMA][1] configuration with a bridge connecting two memory regions ...
1
vote
3answers
666 views

Nehalem Xeon performance on 32-bit OS, XP vs 2003

I have to run 32-bit code on WinXP or Win2003. Nehalem Xeons (5500 series) should be the fastest, but I'm not sure what'll happen with the memory arrangement. I'm unsure about 2 parts: To get a ...
1
vote
4answers
364 views

Do you anticipate the CLR to adapt NUMA soon?

Seems like NUMA is promising for parallel programming, and if I am not wrong the current latest cpus have built-in support for it, like the i7. Do you anticipate the CLR to adapt NUMA soon? EDIT: By ...
0
votes
0answers
38 views

mbind:cannot allocate memory error

When do we get this error? I am trying to allocate memory in a C program and I am getting this error. But there is plenty of space left in the system. What could be the reason?
0
votes
2answers
108 views

Powershell: Find out if NUMA is configured and how many CPUs are assigned to each NUMA node?

Using Powershell, how can I find out if my server has NUMA enabled and how many CPUs are assigned to each NUMA node? Update: I found out here that the microsoft.sqlserver.management.smo.server ...
0
votes
1answer
65 views

NUMA - Local memory

Please bear with me, I've just started digging into this whole CPU thing. The RAM squares shown on the diagram below, what do they refer to? Memory pages? As far as I know, CPUs only have one thing ...
0
votes
2answers
134 views

DB2 information center cannot be started in Windows 7 - NUMA error

I downloaded the DB2 Information Center, then I unzipped and started. However, there was a crash at this time, and the application never started. It created a dump file in the directory. The javacore ...
0
votes
0answers
27 views

hwloc_alloc_membind_nodeset() with HWLOC_MEMBIND_STRICT fails to allocate memory

I'm trying to allocate memory using hwloc_alloc_membind_nodeset() with the flag HWLOC_MEMBIND_STRICT set. hwloc_topology_t topology; hwloc_topology_init(&topology); hwloc_obj_t obj = ...
0
votes
1answer
84 views

How to count memory accesses to remote NUMA memory nodes?

In a multi-threaded application running on a recent linux Distributed Shared Memory system, is there a straight forward way to count the number of requests per thread to remote (non-local) NUMA memory ...
0
votes
3answers
250 views

Benchmarking processor affinity impact

I'm working on a NUMA architecture, where each compute node has 2 sockets and 4 cores by socket, for a total of 8 cores by compute node, and 24GB of RAM by node. I have to proof that setting processor ...
0
votes
1answer
157 views

Mapping of memory addresses to physical modules in Windows XP

I plan to run 32-bit Windows XP on a workstation with dual processors, based on Intel's Nehalem microarchitecture, and triple channel RAM. Even though XP is limited to 4 GB of RAM, my understanding is ...