The directcompute tag has no wiki summary.
7
votes
4answers
3k views
OpenCL vs. DirectCompute?
I'm looking for comparisons between OpenCL and DirectCompute, but I haven't found anything. OpenCL's advantages of being cross-platform and having a wider range of supported GPUs don't matter to me. ...
7
votes
3answers
3k views
Where can I find some in-depth DirectX 11 tutorials?
So far the only tutorials I've been able to find are on directx11tutorials.com, which are essentially inferred from the existing samples. Does anyone know where to find other tutorials, or better yet ...
4
votes
2answers
2k views
DirectCompute versus OpenCL for GPU programming?
I have some (financial) tasks which should map well to GPU computing, but I'm not really sure if I should go with OpenCL or DirectCompute. I did some GPU computing, but it was a long time ago (3 ...
2
votes
1answer
201 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 ...
1
vote
2answers
349 views
Can DirectCompute really be used on a DX10.1 GPU?
Are there any limitations with using DirectCompute on DX10.1 GPUs? I will do most of my development on a DX11 desktop, but I'd like to demo code on a DX10.1 laptop. It'll be a Macbook Pro running ...
0
votes
1answer
76 views
Sample code for AES Encryption/Decryption using DirectCompute
would anyone happen to know of an implementation of AES Encryption/Decryption (any type) using DirectCompute (including the HLSL source code)?
I've read a few of the papers discussing AES on the GPU ...
0
votes
1answer
126 views
Dispatching more than 65535 threads
I'm attempting to skin vertices using DirectCompute. The method of skinning employed is such that you can have a variable amount of weights influencing each vertex (e.g. Md5 meshes are defined this ...