This refers to one application's using multiple graphics-processing units, either in traditional (graphical) or general-purpose (GPGPU) applications.
0
votes
1answer
36 views
Multi-GPU Memory Allocation behaves differently with different order of allocation
I have tested this on GTX 690 GPU with 4 GB RAM on Windows 7 x64, Visual C++ 10:
I want to allocate 1.2 GB RAM on each of the two devices. If I get the ram from the first device and then the second ...
0
votes
1answer
32 views
Multi GPU performance degrade when allocated memory increases
I've tested the following on a GTX 690 GPU with 4GB RAM in Windows 7 x64, Visual C++ 10:
I've written a function that receives 2 vectors and adds into a 3rd vector. The task is broken over 2 GPU ...
-1
votes
1answer
32 views
Two GPU Cards, One Endabled Display, One Disabled Display: How to tell which GPU Card is OpenGL running on?
So I have two NVidia GPU Cards
Card A: GeForce GTX 560 Ti - Wired to Monitor A (Dell P2210)
Card B: GeForce 9800 GTX+ - Wired to Monitor B (ViewSonic VP20)
Setup: an Asus Mother Board with Intel ...
0
votes
0answers
20 views
How to manually switch between Two Different NVidia GPU Cards - Windows 7 [migrated]
I am doing some experiments with two GPU Cards:
Card A: GeForce GTX 560 Ti
Card B: GeForce 9800 GTX+
Setup: an Asus Mother Board with Intel Core i7 that supports SLI
Intended Experiment: Use Card B ...
-2
votes
1answer
51 views
CUDA multi - gpu add function [closed]
I followed the following example:
multi-GPU basic usage
The Code is doing summation:
The man who is answered checked as accepted, sends add function like this:
for(int i=0;i<10000;++i) {
...
-1
votes
1answer
75 views
VS2010 Nsight 3.0, Multiple GPUs card but can only see one device.
Symptoms:
I'm trying to first of all make sure there are actually two nvidia cards in this box, so
in VS2010 -> NSight -> Windows -> SystemInfo -> Display Devices
I can see that there seems to be ...
0
votes
0answers
86 views
How to use DirectX 9 with multi- GPU on windows7
I‘ve got multiple nVidia GPU Cards (Q2000) on a Windows 7 system,without SLI, only one monitor.
Now what I'm trying to do is make a Direct3D9 device runing on a specific GPU.
I can use the ...
1
vote
1answer
92 views
Multi-GPU programming using CUDA on a NUMA Machine
I currently porting an algorithm to two GPUs. The hardware has the following setup:
Two CPUs as a NUMA System, so the main memory is splitted to both NUMA
nodes.
Each GPU is physically connected to ...
0
votes
0answers
72 views
Multiple GPUs in OptiX (asynchronous launches possible?)
I have some challenges with my Master's thesis I hope you can help me with or maybe point me in the correct direction.
I'm implementing Progressive Photon Mapping using the new approach by Knaus and ...
0
votes
0answers
159 views
cudaMemGetInfo returns same amount of free memory on both devices of GTX 690
I have run into problems with Geforce GTX 690 while trying to track down the memory usage. A simple test program:
BOOST_AUTO_TEST_CASE(cudaMemoryTest) {
size_t mem_tot_0 = 0;
size_t mem_free_0 = 0;
...
-2
votes
1answer
429 views
how to check if a motherboard support Multiple-GPU? [closed]
I'll be working on a research project with the integrated use of multiple GPUs. I'm thinking of setting up a Desktop with multiple GPU first.
I currently have a MSI P55 CD53 motherboard, with Intel ...
1
vote
2answers
130 views
Using peered GPUs in a single stream
In my current project I use GPUs for signal processing and visualization. I'm already using streams to allow for asynchronous operation. The signal is processed in frames and for each frame the ...
0
votes
0answers
77 views
Which CUDA hardware upgrade as cases are getting bigger? [closed]
I am working on a cfd simulation which fully executes on the device, I am currently running my stuff on a GTX 470 with 1GB Ram but I already know that my cases will get bigger (finer meshes, bigger ...
0
votes
1answer
224 views
In case of multiple GPUs which one does actual rendering to all the monitors?
Can anyone explain or point to an explanation (or at least to some clues) of how rendering in multi-gpu/multi-monitors setup work?
For example I got 5 NVIDIA Quadro 4000 video cards installed and 9 ...
-2
votes
1answer
198 views
OpenCL for APU+GPU [closed]
I am thinking of assembling this system:
AMD CPU(A8-3870 APU which has Radeon HD 6550D inside: 400 stream processors:xxx GFLOPS) nearly 110$
AMD Graphics card: HD 7750 (512 stream processors:819 ...
2
votes
0answers
411 views
Performance on Multiple GPU Cuda does not linearly scale
I am trying to so some performance analysis on multiple GPU with the OpenCV GPU libraries. However, I noticed the performance does not linearly scale. I am running the same operations on the same ...
1
vote
1answer
729 views
Cuda driver initialization failed
I have a two gpu system, a Geforce 8400 GS and Geforce GT 520. I am able to run my cuda programs on both the gpus. But when I use cuda-gdb to debug them I get an error saying that the Cuda driver ...
0
votes
1answer
242 views
CUDA multi gpu: running same kernel (dual chip device)
I'm writing code that must run same kernel on GTX690 (dual chip) board. Since computation is pretty separable, I don't need data exchange between devices, I just merge the result on the CPU. I ...
0
votes
1answer
177 views
Are clGetEventProfilingInfo() time stamps synchronized?
I am trying to profile code in a multi GPU environment with clGetEventProfilingInfo() but it looks to me that I cannot correlate the time stamps from different GPUs. A simple code sample is twice as ...
2
votes
1answer
158 views
MPI Receive/Gather Dynamic Vector Length
I have an application that stores a vector of structs. These structs hold information about each GPU on a system like memory and giga-flop/s. There are a different number of GPUs on each system.
...
0
votes
2answers
596 views
Multi-GPU profiling (Several CPUs , MPI/CUDA Hybrid)
I had a quick look on the forums and I don't think this question has been asked already.
I am currently working with an MPI/CUDA hybrid code, made by somebody else during his PhD.
Each CPU has its ...
0
votes
0answers
271 views
Multi-threading to access two GPUs
I just wanted some advice regarding how to access two GPUs simultaneously. I am using EMGU CVs GPU implementation of SURF. I receive two images from two cameras simultaneously and I have to pass them ...
0
votes
0answers
138 views
CUDA simpleP2P failing
I have Tesla M2070 cluster with 24 GPUs. I tried running simpleP2P SDK example but it is showing following error although my device supports UVA. OS; Linux 64bit.
Checking for multiple GPUs...
...
5
votes
1answer
1k views
CUDA SDK examples throw various errors in multi-gpu system
I have a Dell Precision Rack running Ubuntu Precise and featuring two Tesla C2075 plus a Quadro 600 which is the display device. I have recently finished some tests on my desktop-computer and now ...
3
votes
1answer
1k views
multi-GPU basic usage
How can I use two devices in order to improve for example
the performance of the following code (sum of vectors)?
Is it possible to use more devices "at the same time"?
If yes, how can I manage the ...
1
vote
0answers
193 views
Mersenne Twister on Multiple GPUs
I have ported the Mersenne Twister SDK to multiple GPUs, and I notice a huge performance difference w.r.t CPUs. I find it difficult to test the quality of numbers produced, so I use something like the ...
1
vote
1answer
265 views
OpenCL subbuffers, why is important?
I try to implement a multi-gpu OpenCL code. In my model, GPUs have to communicate and
exchange data.
I found (I don't remember where, it is been some time) that one solution is to deal with
...
3
votes
2answers
1k views
Multi-GPU Cuda computation
i'm a newbie in multi-gpu programing and I have some questions about multi-gpu computing. For instance let's take the dot-product example. I'm running a CPU-thread that creates 2 large arrays A[N] and ...
1
vote
1answer
340 views
Hybrid graphics in linux
I came across Nvidia optimus implementation for linux called bumblebee project https://github.com/Bumblebee-Project
I installed bumblebee on my laptop with Nvidia graphics card. The issue is that for ...
0
votes
1answer
701 views
CUDA OPENGL Interoperability: cudaGLSetGLDevice
Following the Programming Giude of CUDA 4.0, I call cudaGLSetGLDevice
before any other runtime calls. But the next cuda call, cudaMalloc, return "all CUDA-capable devices are busy or unavailable."
...
1
vote
2answers
431 views
Seamless multi-screen OpenGL rendering with heteregeneous multi-GPU configuration on Windows XP
On Windows XP (64-bit) it seems to be impossible to render with OpenGL to two screens connected to different graphics cards with different GPUs (e.g. two NVIDIAs of different generations). What ...
1
vote
1answer
435 views
Multiple GPUs in CUDA 3.2 and issues with Cuda 4.0
I am new to multiple GPUs. I have written a code for a single GPU and want to further speed up by use of multiple GPUs. I am working with two GTX 470 with MS VS 2008 and cuda toolkit 4.0
I am facing ...
2
votes
0answers
95 views
Is there a way to independently task and use heterogenous multi gpus in a windows 7 system?
Can I have two mixed chipset/generation AMD gpus in my desktop; a 6950 and 4870, and dedicate one gpu (4870) for opencl/gpgpu purposes only, eliminating the device from video output or display driving ...
10
votes
1answer
1k views
Is there a way to programmatically select the rendering GPU in a multi-GPU environment? (Windows)
Question
I have an OpenGL application that will run in machines with diverse multi-GPU configurations (and possibly different Windows versions, from XP to 7). Is there a general way to select the ...
0
votes
1answer
153 views
needs guidance on distributing data on multiple GPUs
I'm currently developing a machine learning toolkit for GPU clusters.
I tested logistic regression classifier on multiple GPUs.
I'm using a Master-Worker approach , where a master CPU creates several ...
1
vote
1answer
425 views
PyCUDA; how to distribute workload to multiple devices dynamically
PyCUDA, for all its faults, usually has very good examples provided with it / downloadable from the wiki. But I couldn't find anything in the examples or in the documentation (or a cursory google ...
1
vote
1answer
646 views
Cuda 4 inter-GPU synchronization
Did anyone successfully test this feature on Cuda4 ? It seems I can't have it worked correctly, not sure if it's a bug in my code or the feature is not fully implemented yet.
For example, I want to ...
7
votes
3answers
1k views
Multiple monitors in .NET
Are all displays returned from .NET's Screen.AllScreens regardless of hardware configuration? For example, on a single PC you can have:
Video card out to two display = total 2 displays
Video cards ...
0
votes
1answer
2k views
Can I use two NVIDIA gpu cards in a system without SLI support for CUDA computation?
My current system for CUDA applications has one old NVIDIA card, 8800 GTX. I am thinking of adding one more card to it without updating the motherboard. Is it true that as long as I have two PCI-E ...
2
votes
1answer
533 views
Recommendations for Open Source Parallel programming IDE
What are the best IDE's / IDE plugins / Tools, etc for programming with CUDA / MPI etc?
I've been working in these frameworks for a short while but feel like the IDE could be doing more heavy lifting ...
6
votes
1answer
1k views
How to resolve CGDirectDisplayID changing issues on newer multi-GPU Apple laptops in Core Foundation/IO Kit?
In Mac OS X, every display gets a unique CGDirectDisplayID number assigned to it. You can use CGGetActiveDisplayList() or [NSScreen screens] to access them, among others. Per Apple's docs:
A ...
0
votes
4answers
2k views
CUDA: Memory copy to GPU 1 is slower in multi-GPU
My company has a setup of two GTX 295, so a total of 4 GPUs in a server, and we have several servers.
We GPU 1 specifically was slow, in comparison to GPU 0, 2 and 3 so I wrote a little speed test to ...

