PyCUDA is the Python module which provides a comprehensive pythonic interface to the NVIDIA CUDA GPU computing environment.

learn more… | top users | synonyms

0
votes
1answer
21 views

Integrating ODEs on the GPU using boost and python

I posted here not too long ago about a model I am trying to build using pycuda which solves About 9000 coupled ODEs. My model is too slow however and an SO member suggested that memory transfers from ...
1
vote
1answer
24 views

Cuda/PyCuda - Large matrix traversal and block/grid size

I am working on something that has highlighted the fact I don't have a firm grasp of how blocks and grids work in cuda. I have a 1000x10 matrix that I would like to traverse and fill in each element ...
-3
votes
0answers
30 views

CUDA Python implementation of hamming distance [closed]

I am able to calculate the hamming distance between two strings using python but wanted to know if anyone has tried implementing the same in any CUDA based python implementation e.g. using CUDAMat, ...
0
votes
1answer
57 views

Combining CUDA with Python's ODEInt and Parallel Reduction

I'm a graduate student in biophysics, trying to program a protein aggregation model using PyCUDA and Scipy's ODEInt. Within the past two weeks, I've gotten the code running, but it's very slow. Let ...
-1
votes
0answers
41 views

Error in boost hpp file when trying to install pycuda on cygwin [closed]

I am trying to setup pycuda and python 3 inside a cygwin environment running on Windows 7. I have cygwin running with both python 2.7 and python 3.3 as well as libboost and libboost_python installed. ...
1
vote
1answer
103 views

PyCUDA inconsistent results on the same platform

I am implementing a password cracker for college work using PyCUDA. Everything seems to be working correctly except the implementation of the NTLM algorithm on CUDA. To test it out, I created a small ...
0
votes
0answers
68 views

GPU to calculate SHA hashes

I was reading about the proof of work that bitcoin was based on, and while I probably understood it incorrectly, I thought it would make a neat toy project. So I made a little Python script that ...
1
vote
1answer
26 views

PyCUDA: syntax for function that calls a function

When using a function from a SourceModule that depends on another function in the SourceModule, how do I pass it in the function call, i.e. what is "???" in the following code: import numpy import ...
-1
votes
1answer
62 views

Python hashing + DES: migrating to PyCuda

I've a fully functional python code who generates some hashes and uses cryptography. It is an implementation of MS-CHAPV2 GenerateNTResponse() method so I use SHA1, MD4 and DES. Since I need to deal ...
1
vote
0answers
44 views

Problems with pycuda code:Segmentation fault (core dumped)

The code goes like this: import pycuda.driver as cuda import pycuda.autoinit from pycuda.compiler import SourceModule import numpy dtype = numpy.float32 total_size = numpy.int32(1500) hist_rgb = ...
0
votes
1answer
62 views

Working of CUDA scheduler

How do I know the behavior of CUDA scheduler? Apart from testing it by varying the grid sizes, block sizes etc. in my application is there any vendor provided documentation that explains exactly in ...
0
votes
1answer
39 views

Change values of multiple cells in CUDA

It has to be a simple one, though I can't find an answer. I'm writing a program which has to calculate states of cellular automatons and in order to get a feeling how does CUDA works I tried to write ...
1
vote
2answers
125 views

EPD Python vs System Python--OSX Mountain Lion 10.8

I'm a two week old mac user, so bear with me here. I'm trying to set EPD python up as my default python interpreter instead of the system python that came with the mac. It was my understanding that ...
2
votes
1answer
162 views

PyCuda / Multiprocessing Issue on OS X 10.8

I'm working on a project where I distribute compute tasks to multiple python Processes each associated with its own CUDA device. When spawning the subprocesses, I use the following code: import ...
0
votes
1answer
156 views

Pycuda Blocks and Grids to work with big datas

I need help to know the size of my blocks and grids. I'm building a python app to perform metric calculations based on scipy as: Euclidean distance, Manhattan, Pearson, Cosine, joined other. The ...
0
votes
1answer
231 views

pycuda ImportError in pycuda.driver

I try compile some source for working with my GPU. I use pycuda for this. When I compile source code, I recive some errors from python: C:\Users\Dmitriy\wcm>python ws_gpu.py test.dcm Traceback ...
0
votes
0answers
21 views

Pycuda Union, Intersect operations

How do operation intersection with Pycuda? I tried to use std :: set_intersection but give error: this declaration may not have extern "C" linkage. In fact, give error by including iostream.
0
votes
0answers
72 views

Generating Many Random Simulations with PyCUDA + CURAND

For numDraws up to 100000 (1M), I can do the following easily def Simple_Elt(numDraws): import numpy as np gauss = np.random.normal import pycuda.gpuarray as ga from pycuda.cumath ...
0
votes
1answer
154 views

Multiply two-dimensional matrices.‏ with pycuda

how can I iterate in two arrays? __global__ void euclidean(float *x, float *y, int dim_x, int dim_y, int ms, float *solution) { int idx = threadIdx.x + blockDim.x * blockIdx.x; ...
4
votes
1answer
243 views

Disappointing results in pyCUDA benchmark for distance computing between N points

The following script was set-up for benchmark purposes. It computes the distance between N points using an Euclidean L2 norm. Three different routines are implemented: High-level solution using the ...
5
votes
1answer
189 views

scipy.interpolate.griddata equivalent in CUDA

I'm trying to perform Fitted Value Iteration (FVI) in python (involving approximating a 5 dimensional function using piecewise linear interpolation). scipy.interpolate.griddata works perfectly for ...
0
votes
0answers
68 views

PyCUDA OLS/GLM Regression for Big Dataset

I need to use PyCUDA to run OLS multiple regression (GLM Regression) on datasets that are each 1 million observations of 60 covariates (age, time of day, etc). This needs to be optimized such that it ...
2
votes
1answer
87 views

cudaBindTextureToArray in PyCuda

Is-there a way to bind an array that is already on the gpu to a texture using PyCuda ? There is already a cuda.bind_array_to_texref(cuda.make_multichannel_2d_array(...), texref) that binds an array ...
1
vote
1answer
89 views

Why does changing a kernel parameter deplete my resources?

I made a very simple kernel below to practice CUDA. import pycuda.driver as cuda import pycuda.autoinit import numpy as np from pycuda.compiler import SourceModule from pycuda import gpuarray import ...
0
votes
0answers
72 views

Efficient method to check for matrix stability in CUDA

A number of algorithms iterate until a certain convergence criterion is reached (e.g. stability of a particular matrix). In many cases, one CUDA kernel must be launched per iteration. My question is: ...
1
vote
1answer
133 views

Optimizing Cuda kernel regarding normalisation of array

I'm trying to normalise the array as follows. Pick the first two elements of the array, find the sum and divide them using that sum. Do the same for rest of the elements. It works fine. But when ...
4
votes
1answer
176 views

Addition Assignment Operator in Cuda C

I'm experiencing a problem with addition assignment operator in Cuda C. I'm getting the following error: kernel.cu(5): error: expression must have integral or enum type My code is : import ...
0
votes
0answers
71 views

Why is my reduction kernel returning an error?

I wrote a reduction kernel to return the average of the values of a 2-dimensional array representing an image: average_kernel = ReductionKernel(dtype_out=np.float32, neutral="0", ...
1
vote
1answer
119 views

How do I calculate variance of gpu_array?

I am trying to compute the variance of a 2D gpu_array. A reduction kernel sounds like a good idea: http://documen.tician.de/pycuda/array.html However, this documentation implies that reduction ...
2
votes
1answer
119 views

Why doesn't my CUDA kernel alter my array?

I am teaching myself CUDA from the ground up. I made this simple kernel that adds 1 to each of the relevant elements within a 2D array. The elements of the 2D array stem from the red channel of an ...
1
vote
1answer
54 views

How do I feed a 2-dimensional array into a kernel with pycuda?

I have created a numpy array of float32s with shape (64, 128), and I want to send it to the GPU. How do I do that? What arguments should my kernel function accept? float** myArray? I have tried ...
1
vote
1answer
59 views

Why is my array not getting set?

I am trying to teach myself CUDA. This has not been easy so far, but I don't give up easily either :) I have created a very simple program. It merely returns a value from the GPU. import ...
2
votes
1answer
237 views

How should I interpret this CUDA error?

I am teaching myself CUDA with pyCUDA. In this exercise, I want to send over a simply array of 1024 floats to the GPU and store it in shared memory. As I specify below in my arguments, I run this ...
0
votes
0answers
72 views

python and fortran ordering make trouble

I am using one python library which is a wrapped of a cuda library. This library store the matrices col-major in memory so when I am calling one function and getting back the result my answer is ...
1
vote
1answer
177 views

operator overloading in Cuda

I successfully created an operator+ between two float4 by doing : __device__ float4 operator+(float4 a, float4 b) { // ... } However, if in addition, I want to have an operator+ for uchar4, by ...
0
votes
2answers
203 views

Launch out of resources

I wrote the following simple CUDA kernel: __global__ void pr_kernel(float* O, const float* I, const float* W, int N) { int x = threadIdx.x; float sum; int i; if (x < N) { for (i = 0; i ...
1
vote
1answer
188 views

Why is my rather trivial CUDA program erring with certain arguments?

I made a simple CUDA program for practice. It simply copies over data from one array to another: import pycuda.driver as cuda import pycuda.autoinit import numpy as np from pycuda.compiler import ...
2
votes
1answer
187 views

Element wise function on pycuda::complex array

I want to run a function on a large, 2D complex array (eventually 2*12x2*12 datapoints). However, pycuda does not work as expected. The ElementWise function doesn't work at 2d arrays, so I used the ...
6
votes
0answers
222 views

pycuda seems nondeterministic

I've got a strange problem with cuda, In the below snippet, #include <stdio.h> #define OUTPUT_SIZE 26 typedef $PRECISION REAL; extern "C" { __global__ void test_coeff ( ...
2
votes
1answer
37 views

PyCuda multiple threads execution error

This is my pycuda code.When I execute I get threading errors.I am trying to implement pycuda threads in this.I have searched google but couldn't find an answer.Respurces are also very limited for ...
4
votes
2answers
330 views

driver.Context.synchronize()- what else to take into consideration — -a clean-up operation failed

I have this code here (modified due to the answer). Info 32 bytes stack frame, 0 bytes spill stores, 0 bytes spill loads ptxas info : Used 46 registers, 120 bytes cmem[0], 176 bytes ...
0
votes
1answer
153 views

Measuring time using pycuda.driver.Event gives wrong results

I ran SimpleSpeedTest.py from the PyCuda examples, producing the following output: Using nbr_values == 8192 Calculating 100000 iterations SourceModule time and first three results: 0.058294s, [ ...
-2
votes
1answer
92 views

PyCuda Error in Execution

This is my pycuda code for rotation.I have installed the latest cuda drivers and I use a nvidia gpu with cuda support.I have also installed the cuda toolkit and pycuda drivers.Still I get this strange ...
0
votes
2answers
167 views

pycuda only block(N,1,1) works

I can't understand why the below program runs ok for block=N,1,1 but not for 1,1,N (result is invalid value ) or 1,N,1 ( result is 0,1,0.....0) or 10,50,1 (result is 0,1,0..0) (N=500). import ...
0
votes
2answers
595 views

cuda — out of memory (threads and blocks issue) --Address is out of bounds

I am using 63 registers/thread ,so (32768 is maximum) i can use about 520 threads.I am using now 512 threads in this example. (The parallelism is in the function "computeEvec" inside global ...
2
votes
0answers
79 views

Print messages in PyCUDA

In simple CUDA programs we can print messages by threads by including cuPrintf.h but doing this in PyCUDA is not explained anywhere. How to do this in PyCUDA?
1
vote
1answer
272 views

Call device function from global function in pycuda

I'm newbie to PyCUDA. I want to call function declared with __device__ from function declared with __global__. How can I do this in pyCUDA? import pycuda.driver as cuda from pycuda.compiler ...
0
votes
0answers
578 views

Pycuda installation on Ubuntu

I'm having a difficult time installing pycuda. I am running on Ubuntu 12.04. I first installed the Enthought python distribution (even though I already had python on the computer). I added the ...
0
votes
0answers
106 views

pycuda inclussion issue with <ctrdefs.h>

I have the following code, taken from the tutorial of PyCuda's documentation: import pycuda.driver as cuda import pycuda.autoinit from pycuda.compiler import SourceModule import numpy a = ...
0
votes
0answers
83 views

PyCuda execution error with prefork

So I have a program that I am running on unbuntu 10.04 LTS with python 2.6, pycuda 2011.2.2 on a GTS 240, CUDA 4.0 and it works perfectly. When I try to run it on a different machine, using pycuda ...

1 2 3