0
votes
1answer
56 views

New CUDA Texture Object — getting wrong data in 2D case

In CUDA 5.0, NVIDIA added a "texture object" (cudaTextureObject_t) that makes textures a bit easier to work with. Previously, it was necessary to define textures as global variables. I followed ...
1
vote
1answer
121 views

How to access each channel of a pixel using cuda tex2D

I'm learning cuda texture memory. Now, I got a opencv Iplimage, and I get its imagedata. Then I bind a texture to this uchar array, like below: Iplimage *image = cvCreateImage(cvSize(width, height), ...
1
vote
1answer
39 views

CUDA| Texture memory | Should I synchronize before unbind texture ?

I'm using a texture memory for one of my kernel programs. I bind the texture memory, than call the kernel execution that uses the texture memory , finally I unbind the texture, I'm trying to figure ...
0
votes
1answer
112 views

Read cudaArray in device code

Is there a way to read the values in a cudaArray from the device without wrapping it in a texture reference/object? All of the examples I've looked at use cudaArrays exclusively for creating textures. ...
0
votes
1answer
70 views

Using textures in Cuda when kernel code is in PTX file and Host code also generates PTX file

I am having trouble getting texture read to work using Cuda [4.2] on Windows. My program reads a ptx file containing all the kernel modules. In addition the compilation process spits out an ...
0
votes
1answer
144 views

Accuracy of 1D linear interpolation by CUDA texture interpolation

I'm comparing 1D linear interpolation using a "standard" CUDA implementation and a "texture-based" CUDA implementation on complex numbers (float2). The "standard" CUDA implementation comprises the ...
2
votes
1answer
384 views

cudaArray vs. device pointer

I am confused about the difference between the intended use of device pointers and cudaArray structures. Could someone please explain why I would use one versus the other? My basic problem is that ...
1
vote
1answer
165 views

Convenience of 2D CUDA texture memory against global memory

I'm implementing a simple boxcar filter only as an excuse to evaluate the different speed of 2D local texture and global memory accesses. More in detail, the .cu file is the following #include ...
0
votes
1answer
98 views

Purpose of Texture Unbinding?

What is the purpose of unbinding a CUDA texture bound to linear memory or CUDA Array? In many of my CUDA programs, I use textures bound to pitch linear memory using cudaBindTexture2D. At the end of ...
0
votes
1answer
157 views

CUDA Texture Linear Filtering

In the CUDA C Programming Guide Version 5, Appendix E.2 (Linear Filtering), it is stated that: In this filtering mode, which is only available for floating-point textures, the value returned by ...
1
vote
1answer
65 views

CUDA texture memory with floating point co-ordinates

Is it possible to assign value to a texture memory, for a non-integer co-ordinate? i.e. assume we have a 1 Dimensional texture memory array. I understand we can allocate array elements at integer ...
2
votes
1answer
229 views

Using cuda texture memory for 1D interpolation

I'm trying to use texture memory to solve an interpolation problem, hopefully in a faster way than using global memory. Being the very first time for me to use texture memory, I'm oversimplifying my ...
0
votes
1answer
105 views

Constant data stored in texture memory: choose linear memory or 2D/3D arrays?

My different kernels will be using some constant data. In order to optimize my code, I was considering using texture memory instead of constant memory, since each thread will be loading a different ...
4
votes
2answers
514 views

Cuda - copy from device global memory to texture memory

I'm trying to perform two tasks (separated into 2 kernels) on the GPU using Cuda and C++. As input I take a NxM matrix (stored in memory on the host as a float array). I will then use a kernel that ...
7
votes
1answer
205 views

CUDA: Is the texture cache on FERMI separate from L1 cache?

Does it make sense to rewrite the code so that it loads data trough texture cache ( assuming that i don't need filtering and other texture unit options) or is it the same? How about loading some data ...
0
votes
1answer
103 views

cuda Texture declaration compile-time error

I'm trying to compile the following piece of code: #include <stdio.h> #include <time.h> #include <cuda.h> #include <cuda_runtime_api.h> texture<float, 2, ...
2
votes
1answer
93 views

Bulk texture uploads

I have a specialised rendering app that needs to load up any number of jpegs from a pdf, and then write out the images into a rendered page inside a kernel. This is oversimplified, but the point is ...
0
votes
1answer
202 views

Half precision floating points texture filtering in CUDA

Can I take advantage of CUDA texture filtering when using 16-bit float texture type? I have already made test with 32-bit float texture in CUDA 3D Array and filtering works fine. CUDA doesn't support ...
0
votes
0answers
445 views

Cuda extern texture declaration

I want to declare my texture once and use it in all my kernels and files. Therefore, I declare it in extern in a header and include the header on all other files (following the SO What are extern ...
2
votes
1answer
330 views

How to use Cuda NPP(NVIDIA Performance Primitives) on openGL textures

I'm currently developing a project where I do a lot of video processing. The project uses C++, openGL and glsl. Recently I added some CUDA routines to it, to do some more advanced image processing ...
1
vote
1answer
563 views

CUDA streams, texture binding and async memcpy

Writing some signal processing in CUDA I recently made huge progress in optimizing it. By using 1D textures and adjusting my access patterns I managed to get a 10× performance boost. (I previously ...
2
votes
1answer
224 views

CUDA 1D texture fetch always return 0

I am trying to test the CUDA 1D texture with a piece of simple code. It is quite straightforward: first allocates a global memory, then bind it to a texture reference; access the texture from within a ...
0
votes
2answers
188 views

Cannot read out Values from Texture Memory

Hi I'm writing a simple Program for practicing to work with texture memory. I Just want to write my data into Texture Memory and write it back into Global Memory. But i cannont read out the Values. ...
0
votes
1answer
124 views

Cuda Texture Memory does not inherit the right Values

I'm Trying to bin a 2D array to a texture and to do interpolation between the data. My Problem is. When I'm binding my Array to the texture the the Values i access are total nonsense. Even when I'm ...
1
vote
1answer
171 views

is there any way to bin an 3d surface created in CUDA to an OpenGL texture?

here is the scenario: I pass an 3D OpenGL Texture to CUDA by cudaBindTextureToArray transforming it with a non rigid transformation and writed it to a 3d surface and then I want to pass it by ...
0
votes
1answer
139 views

Saving Values after Calculating with Texture Memory

Hi I have a simple Calculation Using Texture Memory. But i am not able to save the right results. The result should be a interpolation. For example angle = 0.5 A[0] = 1, B[0] = 2, result[0] should be ...
0
votes
1answer
233 views

CUDA: how to read 4 (or 16) chars in one transaction per thread using textures and char4 (or int4)?

I have a large character array in the device global memory that is accessed in a coalescent manner by threads. I've read somewhere that I could speed up memory access by reading 4 or 16 chars in one ...
1
vote
1answer
188 views

Is coalesced access pattern important for texture and surface memories in CUDA?

In my experience with CUDA, I mostly preferred the texture memory with CUDA array references because of its 2D/3D spatial caching mechanism and my input data could be arranged as a 2D texture most of ...
3
votes
1answer
2k views

CUDA - Multiprocessors, Warp size and Maximum Threads Per Block: What is the exact relationship?

I know that there are multiprocessors on a CUDA GPU which contain CUDA cores in them. In my workplace I am working with a GTX 590, which contains 512 CUDA cores, 16 multiprocessors and which has a ...
1
vote
1answer
798 views

In CUDA kernel function, why the tex3D cannot return any value?

Here, I have two different version of my code. The first one is a complete CUDA program that from CUDA SDK. In kernel, tex3D works well. The second version is more complex with many OpenGL ...
1
vote
1answer
597 views

How to translate OpenGL texture to CUDA texture?

Here I have a OpenGL texture: GLuint tex1; Now I want to use the tex1 as a searching table in CUDA, so maybe I should translate it to a CUDA texture. As we know, CUDA texture, as a type of ...
1
vote
1answer
777 views

Bind CUDA Texture to a float Image

I have a 1 channel, float image in C side like the following: int width, height; float* img; I want to pass this image to a CUDA texture. I'm reading the NVIDIA CUDA C Programming Guide (page ...
1
vote
1answer
381 views

When using 3D Texture In CUDA, why we don't need to set Texture coordinate?

In OpenGL, after creating a 3D Texture, we always need to draw a proxy geometry such as GL_QUADS to contain the 3D Texture and set the texture coordinate in this function: glTexCoord3f. However, ...
0
votes
1answer
159 views

why, in my case, the texture memory is slower than the global

Please help me. I can't understand why this function, that uses texture memory __global__ void corr (int * data) { int idx = (blockIdx.y*blockDim.y+threadIdx.y)*64+ (blockIdx.x * blockDim.x + ...
0
votes
1answer
189 views

Texture Coordinates in Cuda

Im looking at this implementation of DCT using cuda: http://www.cse.nd.edu/courses/cse60881/www/source_code/dct8x8/dct8x8_kernel1.cu The part in question is here: __shared__ float ...
1
vote
1answer
246 views

Minimum Texture Size limit in CUDA

Is there any minimum size limit for 2D CUDA Textures? I know there are maximum limits on Fermi (65535 x 65535) and G80 (65535 x 32768). But are there any minimum limits?
2
votes
2answers
634 views

CUDA: are access times for texture memory similar to coalesced global memory?

My kernel threads access a linear character array in a coalesced fashion. If I map the array to texture I don't see any speedup. The running times are almost the same. I'm working on a Tesla C2050 ...
1
vote
3answers
2k views

What is the maximum size of the texture memory on a modern GPU?

We believe that texture memory is part of the global memory, is this true? If so, how much can you allocate? (Indirectly, how much is there?) And is it true that all multiprocessors can read from the ...
1
vote
1answer
1k views

Disadvantages of using Texture Cache / Image2D for 2D Arrays?

When accessing 2D arrays in global memory, using the Texture Cache has many benefits, like filtering and not having to care as much for memory access patterns. The CUDA Programming Guide is only ...
0
votes
2answers
177 views

Can one index CUDA texture with integers

Just like topic says. Can one access CUDA texture using integer coordinates? ex. tex2D(myTex, 1, 1); I'd like to store float values in texture, and use it as my framebuffer. I will pass it to ...
0
votes
1answer
272 views

Binding texture memory to a GPU allocated matrix

I created a float point matrix on the GPU of size (p7P_NXSTATES)x(p7P_NXTRANS) like so: // Special Transitions // Host pointer to array of device pointers float **tmp_xsc = ...
0
votes
1answer
219 views

Do i need to recreate a texture when using opengl/CUDA interoperability?

I want to manipulate a texture which I use in opengl using CUDA. Knowing that I need to use a PBO for this I wonder if I have to recreate the texture every time I make changes to the PBO like this: ...
1
vote
2answers
993 views

Why is texture memory version of below program slower than global memory version

i am confused why my texture version is slower than my global memory version because the texture version should exploit spatial locality. I am trying to compute the dot product in the below case. ...
0
votes
3answers
2k views

Fetching CUDA texture problems

I am having trouble fetching a texture of floats. The texture is defined as follows: texture<float, 2, cudaReadModeElementType> cornerTexture; The binding and parameter settings are: ...
3
votes
2answers
568 views

CUDA textures and clamping

Is there any way to clamp out of range texture addresses to a certain value? In my case, I want them to be set to a simple zero, but the address mode I need doesn't seem to exist. Thanks. Edit: Any ...
6
votes
5answers
3k views

How to read successfully from a 2D texture

How can I: Bind cudaMallocPitch float memory to a 2D texture reference Copy some host data to the 2D array on the device Add one to the texture reference and write to either a.) the Pitch 2D array ...
0
votes
1answer
1k views

Bind texture with pinned mapped memory in CUDA

I was trying to bind a host memory that was mapped for zero-copy to a texture, but it looks like it isn't possible. Here is a code sample: float* a; float* d_a; ...
2
votes
2answers
1k views

Can CUDA results be stored in an OpenGL accessible texture?

Can CUDA be used to generate OpenGL textures? I know it can be done by reading the CUDA results back into system memory, and then loading that into a texture... But I'd like to find a way to save this ...
2
votes
2answers
4k views

OpenCL Texture Memory

I'm fairly new to OpenCL so please bear with me. In the first iteration of my code, I used basic memory buffers for large datasets and declared them global. However now that I'm looking to improve ...