C++ Accelerated Massive Parallelism (C++ AMP) is an open specification from Microsoft. It's an upcoming technology for democratizing GPGPU/APU/Multi-Core/Many-Core programming for native developers.
0
votes
0answers
8 views
processing heterogeneous vectors in (C++-AMP)
I've written code that read and parse variable number of .dat files and store them into 2D vectors, each file in separated vector. Now, I'm trying to take advantage of parallel processing (GPU) in ...
2
votes
1answer
41 views
Ambiguous statements C++-AMP: (extent) is ambiguous
I'm trying to write a code in C++-AMP to copy multiple 2D vectors into GPU memory to be processed. However, once I start with the expression extent<2> eM(100,100); I face this error : "extent" ...
0
votes
0answers
21 views
illegal external reference in amp-restricted function
If I'm trying to use C++ amp and there are static arrays of constant data that the AMP restricted functions need to access, how can I easily do that (preferrably without mangling the code too much?)
...
2
votes
1answer
52 views
Direct3d vertex buffer usage type, performance and c++amp?
I'm new to direct3d and graphics programming in general ,the program I'm writing changes vertices once per frame after applying non trivial computation per frame, according to this Direct3d ...
-2
votes
1answer
80 views
The best heterogenous programming language
I am a beginner in heterogenous computing and I would say this is my first project in this field. I have written code in C++ to read multiple .dat files into the main memory by the CPU. However, I'm ...
0
votes
1answer
50 views
C++-amp libraries and software requirements
My Visual Studio version does not have GPU debugger option. is it because of the version itself or should I download some updates? The version is "Microsoft Visual Studio Express 2012 for Windows ...
3
votes
1answer
107 views
Read multiple .dat files by GPU
I understand that reading files by GPU is inefficient task as it's faced by the slowest part of the system, that is, IO. However, I came up with another approach by using the CPU for files reading and ...
-2
votes
1answer
110 views
Parallel processing frameworks [closed]
Is there any framework for C++ which can provide utilization of ANY computation hardware attached to the machine, GPU, Intel Phi, ASICs and FPGAs are to name but a few.
There are many of similar ...
2
votes
1answer
85 views
Using C++ AMP with Direct2D
Is it possible to use a texture generated by C++ AMP as a screen buffer?
I would like to generate an image with my C++ AMP code (already done) and use this image to fill the entire screen of Windows ...
2
votes
1answer
207 views
C++ AMP crashing on hardware (GeForce GTX 660)
I’m having a problem writing some C++ AMP code. I have included a sample.
It runs fine on emulated accelerators but crashes the display driver on my hardware (windows 7, NVIDIA GeForce GTX 660, ...
0
votes
1answer
102 views
Scaling and rotating texture onto another texture by raw buffer data
I submitted this to gamedev, but they seem rather slow so I hope I could find an answer here.
I've been messing with C++ AMP and OGRE in attempt to make writing to/altering textures to my liking ...
0
votes
2answers
94 views
C++ AMP How to return values in GPU memory?
Suppose I have an algorithm like so:
array a = foo();
array b = bar(a);
array c = foobar(a, b);
array d = fbar(a, c);
Now this is fine on the CPU and in CUDA, where I can have functions that return ...
4
votes
1answer
250 views
Is the C++ AMP library useful from F#?
I'm experimenting with the C++ AMP library in F# as a way of using the GPU to do work in parallel. However, the results I'm getting don't seem intuitive.
In C++, I made a library with one function ...
3
votes
2answers
273 views
Copy data from GPU to CPU
I am trying to calculate a matrix using C++ AMP. I use an array with width and height of 3000 x 3000 and I repeat the calculating procedure 20000 times:
//_height=_width=3000
extent<2> ...
0
votes
2answers
140 views
Compiling C++ AMP using qmake fails
I have the following main.cpp file:
#include <amp.h>
using namespace concurrency;
int main()
{
int arr[] = {42};
array_view<int, 1> v(1, arr);
return 0;
}
and a .pro file:
...
2
votes
1answer
323 views
DirectX 11.1 trying to create device to not trigger Timeout Detection Recovery
I am trying to use C++ AMP to execute a long running kernel on the GPU. This requires using DirectX to create a device which won't timeout. I am setting the flag but it is still triggering Timeout ...
1
vote
1answer
52 views
Filling a 2D AMP array row by row
Say I have a source of CPU side data that looks like this:
vector< vector<int> > cpuBlobOData;
Assume every row vector inside has the same size (a jagged 2d vector that isn't jagged).
...
3
votes
1answer
135 views
C++ AMP iterating over array_views with different dimensions
I am using C++ AMP with Visual Studio 2012 on Windows 8. I have a case where I have 2D array_view, experimentData and a 1D array_view, experimentFactors. I want to iterate over the first dimension of ...
3
votes
1answer
153 views
Default parameters to restrict(amp) functions
The following code fails to compile. The error messages are :
Error 1 error C3930: 'foo' : no overloaded function has restriction specifiers that are compatible with the ambient context ''
Error 2 ...
0
votes
1answer
180 views
When should I use C++ AMP [closed]
When should I use the C++ AMP (or shouldn't use it)?
What is an overhead of AMP? How long it takes to copy data to GPU memory and back? What is a minimal data size when AMP starts to decrease ...
1
vote
2answers
195 views
Should I use C++ AMP if I'm already manually threading my application?
I'm not sure what C++ AMP is good for. If I've already multithreaded my application (in this case, a ray tracer) to use all n cores on a system, should I use C++ AMP, or will this actually create ...
2
votes
1answer
221 views
What new C++ AMP accelerators will exist in the future?
I've been learning about C++ AMP, and everything I've seen stresses that AMP works on "accelerators", not just GPUs. I think that today, all accelerators are GPUs, but in the future there may be ...
2
votes
1answer
145 views
GPU breakpoint not hit when using C++ AMP
I've set the debugger type to GPU only and set a breakpoint on every line of an 8-line parallel_for_each lambda, including the line parallel_for_each statement, but it never gets hit. I'm using ...
1
vote
3answers
431 views
pack/unpack short into int
I want to pack/unpack two signed 16 bit integers into a 32 bit integer, however I'm not getting to quite work.
Any ideas as to what I might be doing wrong?
template <typename T>
int ...
1
vote
2answers
123 views
Strange results while measuring C++ AMP performance
I'm wrapping a C++ AMP invocation with this timer, with the code shown below. Unfortunately, according to the timer, my C++ AMP call takes about 2 seconds - a lot more than it realistically does. Can ...
3
votes
1answer
227 views
Best practices for string processing on the GPU?
I was wondering just how realistic is it to process strings, rather than numerics, on the GPU? Specifically, what I'm interested in is using C++ AMP to perform comparisons between an array of strings ...
7
votes
1answer
956 views
C++ AMP with fast GPUs slower than CPU
I'm just starting to learn C++ AMP and I've obtained a few examples that I've built with the VS 2012 RC, but I'm finding that the performance of the GPU is slower than the CPU. For instance, the ...
2
votes
1answer
211 views
restrict(amp) function type
I can create restrict(amp) function as follows:
auto f = [](int& item) restrict(amp) {item += 1;};
And I can use this function in other restrict(amp) functions, for example:
...
1
vote
2answers
162 views
Order of execution of lambdas from multiple parallel_for_each calls
Let's say I have C++ AMP code with two parallel_for_each calls in a row. Will all the lambdas from the first call complete before lambdas from the second call begin?
In general, is there any ...
3
votes
2answers
4k views
Confusion on CUDA/openCL and C++ AMP
I read that Microsoft is closely working with Nvidia to improve AMP performances.
But my question is: is AMP a CUDA-replace by Microsoft? Or does AMP use CUDA drivers when a NVIDIA CUDA video card is ...
0
votes
1answer
199 views
Amp Library Error
I'm trying to getting started using the C++ Amp Library. I am following this MSDN Magazine guide but I getting an error for this portion of code which is in the amplibrary(not my code).
protected:
...
3
votes
2answers
290 views
Why is the call to array_view::synchronize() so slow?
i've started experimenting with C++ AMP. I've created a simple test app just to see what it can do, however the results are quite surprising to me. Consider the following code:
#include <amp.h>
...
1
vote
1answer
264 views
Deployed C++ AMP application stops responding
Im trying to deploy a C++ AMP application to another Windows 7 machine.
I have tried to include the vcamp110.dll in the same folder, and also compiled with /MT do get rid of dependency on msvcp110.dll ...
2
votes
3answers
265 views
Improving memory layout for parallel computing
I'm trying to optimize an algorithm (Lattice Boltzmann) for parallel computing using C++ AMP. And looking for some suggestions to optimize the memory layout, just found out that removing one parameter ...
6
votes
1answer
522 views
Is restrict(amp) more restrictive than CUDA kernel code?
In C++ AMP, kernel functions or lambdas are marked with restrict(amp), which imposes severe restrictions on the allowed subset of C++ (listed here). Does CUDA allow any more freedom on the subset of C ...
2
votes
1answer
123 views
Non-rectangular data wrappers for AMP?
I'm experimenting with the Visual Studio 11 Dev Preview. I've got a problem domain which requires the use of "jagged" arrays, i.e., an array of arrays where the second dimension is not of uniform ...
19
votes
2answers
2k views
Will GCC support C++ AMP [closed]
Does anyone know if there are any plans to develop support in g++ (GCC) for the new C++ AMP standard which was released recently by Microsoft as an open specification? I see someone is already asking ...
1
vote
2answers
1k views
Using C++ AMP Library
I'm trying to start playing around with the <amp.h> library. But when I type #include amp.h, I get an error saying cannot open source file <amp.h>. Is there something special I need to do ...
0
votes
1answer
278 views
Controlling the index variables in C++ AMP
I have just started trying C++ AMP and I decided to give it a shot with the current project I am working on. At some point, I have to build a distance matrix for the vectors I have and I have written ...
1
vote
2answers
287 views
Unsupported type error with parallel_for_each
I'm playing around with C++ AMP but for some reason the most dumbed down code won't compile. This:
concurrency::extent<2> e(2,2);
concurrency::parallel_for_each(grid<2>(e), ...
1
vote
2answers
204 views
How to use a 2d array to declare an array_view or array object in c++ AMP
I'm trying to use an array such as int myarray[2][3] to initialize an array_view object. I've tried array_view<int, 2> a(2,3, myarray); However that does not work. I would also like to be able ...
6
votes
1answer
780 views
Will C++ AMP run on a machine without a compatible GPU?
I understand that C++ AMP is accelerated by GPUs that support DirectX 11.
However, my question is, if the compiled C++ AMP program is run on a machine without a DirectX 11 compatible GPU, what ...
0
votes
1answer
136 views
Using int index where double is expected in C++ AMP retrict(direct3d) code
Googling didn’t help much, has anyone used AMP?
In the code snippet below the cast from integer to double (double v = idx.x) leads to a “Failed to create shader” run time error.
I thought the ...
1
vote
2answers
469 views
How do you enumerate all accelerators in C++ AMP?
In C++ AMP, how does one detect and enumerate all C++ AMP accelerators?
Don McCrady distributed an app here that enumerates non-emulated accelerators. Though I had a DX11 card (GTX 260), I didn't see ...
3
votes
4answers
338 views
When is a call to “synchronize()” not necessary in C++ AMP?
Background: For a C++ AMP overview, see Daniel Moth's recent BUILD talk.
Going through the initial walk-throughs here, here, here, and here.
Only in that last reference do they make a call to ...
4
votes
3answers
499 views
Concurrency and memory models
I'm watching this video by Herb Sutter on GPGPU and the new C++ AMP library. He is talking about memory models and mentions Weak Memory Models and then Strong Memory Models and I think he's referring ...
20
votes
5answers
2k views
Does C++11 add the C99 restrict specifier? If not, why not?
restrict is a C99 feature which is getting a lot of attention lately by allowing the compiler to perform "previously-fortran-only" optimizations to pointers. It's also the same keyword announced by ...


