gpu
Rendering 1.2 GB of textures smoothly, how does a 1 GB GPU do this?
My goal is to see what would happen when using more texture data than what would fit in physical GPU memory. My first attempt was to load up to 40 DDS textures, resulting in a memory footprint way hig[详细]
2023-04-02 19:01 分类:问答Is local memory slower than shared memory in CUDA?
I only found a remark that local memory is slower than register memory, the two-per-thread types. Shared memory is supposed to be fast, but is it faster than local memory [of the thread]?[详细]
2023-04-01 12:06 分类:问答Gaming development for portables and remotely processing graphics - how possible this is?
Is it possible to process graphics remotely and send it to another device (like an iP开发者_C百科hone), so you could run a game with better graphics than the iPhone itself could handle ?[详细]
2023-03-30 20:08 分类:问答Vector, proxy class and dot operator in C++
A question related to a custom Vector class in C++. template <typename T> class Vector { ... private:[详细]
2023-03-30 19:00 分类:问答Why does CUDA Profiler indicate replayed instructions: 82% != global replay + local replay + shared replay?
I got information from CUDA Profiler. I am so confused why Replays Instruction != Grobal memory replay + Local memory replay + Shared bank conflict replay?[详细]
2023-03-30 09:27 分类:问答OpenCL - How to I query for a device's SIMD width?
In CUDA, there is a concept of a warp, which is defined as 开发者_JAVA技巧the maximum number of threads that can execute the same instruction simultaneously within a single processing element.For NVID[详细]
2023-03-29 05:18 分类:问答Does Matlab cause Cuda to leak memory due to CUcontext caching?
Is using cudaDeviceReset() after computations the normal way to use the GPU from Matlab?I can\'t use the GPU computation in the latest version of Matlab because my GPU doesn\'t support Compute Capabil[详细]
2023-03-28 01:06 分类:问答Minimum number of GPU threads to be effective
开发者_开发问答I\'m going to parallelize on CUDA a local search algorithm for some optimization problem. The problem is very hard, so the size of the practically solvable problems is quite small.[详细]
2023-03-27 17:18 分类:问答How to convert GpuMat to CvMat in OpenCV?
开发者_开发百科I know how to do the opposite i.e. get GpuMat from CvMat using upload, but I need a CvMat from GpuMat, is there any method that can be used for this?explicit conversion: Mat -> GPUMat[详细]
2023-03-26 22:01 分类:问答Convolutions on the gpu: Which language (HLSL/Cuda etc) will have the longest support lifetime?
I\'m currently writing an automated inspection system that uses scale-space representation for ridge and edge detection. It\'s currently got a software implementation, but i think GPU is the way to go[详细]
2023-03-26 20:03 分类:问答