The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
89 views

using HLSL to invisibly stress a graphics card - How to stress the memory?

I've been developing for a bit an invisible (read: doesn't produce any visual output) stressor to test the capabilities of my graphics card (and as a exploration of DirectCompute in general, with ...
1
vote
1answer
144 views

DirectCompute writing to buffer speed

Im working on a particle sim and have ran into a bit of a bottleneck, using UAV to write to a RWStructured single float buffer is around 10 times too slow. From experimentation it seems there is no ...
0
votes
1answer
146 views

directcompute hlsl numthreads?

Since you already define the thread groups to be executed when dispaching a compute shader, what do the numbers inside the shader file signify? example: [numthreads(1, 1, 1)]
0
votes
1answer
243 views

Create R32_UINT view from R8G8B8A8_UNORM resource

I need to do in place image editing using DirectCompute - ala: http://msdn.microsoft.com/en-us/library/ff728749%28v=vs.85%29.aspx My backbuffer is R8G8B8A8_UNORM and I need to create a UAV of format ...
0
votes
1answer
228 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 ...
3
votes
0answers
347 views

HLSL buffer stride and threading - what is happening here?

I'm really new to DirectCompute technologies, and have been attempting to learn from the documentation on the msdn website, which is.. dense, to say the least. I'd like to make a basic hlsl file that ...
1
vote
0answers
75 views

DirectCompute and Multiple Devices?

Is it possible to split work up between multiple devices (GPUs), like you can with CUDA? How does this look in code? Hard to find proper documentation for DirectCompute, and the SDK doesn't show any ...
0
votes
0answers
30 views

DirectCompute weird output

I'm trying to use a compute shader to output a Texture2D to use as a heightmap. The heightmap I want should be composed of 6 octaves of simplex noise, using the DispatchThreadID of the threads in the ...
0
votes
0answers
70 views

Process different sections of an array using Compute Shader

I have an array that I want to process different sections of using the Directx 11 Compute Shader, using values from another array. So as a simplified example, the main array of floats is: ...