Thrust is a template library of parallel algorithms with an interface resembling the C++ Standard Template Library (STL) for NVIDIA CUDA.
0
votes
1answer
16 views
thrust::sort_by_key with device_ptr errors
I have a problem with sorting by key using device ptr (thrust::device_ptr< int>). This:
thrust::sort_by_key(dev_ptr_key,dev_ptr_key+noOfSelectedRows,dev_ptr_val,dev_ptr_val+noOfSelectedRows);
...
1
vote
3answers
65 views
How to partly sort arrays on CUDA?
Problem
Provided I have two arrays:
const int N = 1000000;
float A[N];
myStruct *B[N];
The numbers in A can be positive or negative (e.g. A[N]={3,2,-1,0,5,-2}), how can I make the array A ...
0
votes
1answer
42 views
compile error occured in thrust/type_traits.h
I just try to add trust::sort in my cuda code, but nvcc tell me that:
type_traits.h(322): error C2660: 'test' : function does not take 1 arguments
type_traits.h(322): error ...
2
votes
1answer
37 views
Thrust OpenMP without CUDA?
Can I use Thrust with the OpenMP device system if my machine doesn't have a CUDA GPU? If so, do I still require the CUDA toolkit?
0
votes
1answer
65 views
How to split class definition between multiple .cpp and .cu files?
I've got a class with nested classes mixing both C++, CUDA and Thrust. I want to split member definitions across a number of files.
// In cls.h:
#include <thrust/device_vector.h>
class cls {
...
0
votes
1answer
61 views
If a Thrust device_vector's .begin() iterator is stored, does it still point to the correct position after a resize()?
For instance:
thrust::device_vector<float> vec(...);
thrust::device_vector<float>::iterator i = vec.begin();
vec.resize(...); // vec may get reallocated and moved in memory here
Now, ...
6
votes
1answer
75 views
How to avoid default construction of elements in thrust::device_vector?
It seems when creating a new Thrust vector all elements are 0 by default - I just want to confirm that this will always be the case.
If so, is there also a way to bypass the constructor responsible ...
2
votes
1answer
35 views
how to copy a Thrust::host_vector<char> to a char*
I'm trying my hands at CUDA thrust.
but the environment I'm working in needs me to copy the data at the end into a char* and not thrust::host_vector<char>
So my code right now looks something ...
2
votes
1answer
64 views
How to store the vector.begin() iterator of template type in thrust?
When I attempt to assign a variable to that iterator, i get the error: expected a ";", where vec is a thrust::device_vector<my_type>, j is some int, and my_type is a template type:
for ...
3
votes
1answer
44 views
Template function to print a Thrust vector
I'm writing a matrix template class that prints to both file and std::cout, i.e.:
matrix<float> myMat;
...
myMat.cout(...) // print to std::cout
myMat.write("out.txt") // print to file
...
-2
votes
1answer
44 views
Invoking functions written with CUDA and Thrust C++ in my C# 5 .NET 4.5 application.
I'm getting a grasp on invoking C++ functions from an application written in C# 5 and .NET 4.5. I am working on developing an indie game and have need of CUDA and PhysX, so this capability is ...
0
votes
1answer
64 views
CUDA and Thrust library: Trouble with using .cuh .cu and .cpp files together with -std=c++0x
I want to have a .cuh file where I can declare kernel functions and host functions as well. The implementation of these functions will be made inside the .cu file. The implementation will include the ...
0
votes
0answers
44 views
Cuda: Where can I find the time complexity of each function in the Thrust library?
I'm very new to CUDA programming and I would like to know what's the time complexity of the sort_by_key function of the Thrust library
Unfortunately in the documentation there is no information ...
0
votes
2answers
52 views
Create an object with fields on the device directly
I'm trying to create a class that will get allocated on the device. I want the constructor to run on the device so that the whole object including the fields inside are automatically allocated on the ...
2
votes
2answers
48 views
Thrust device_malloc and device_new
What are the advantages for using Thrust device_malloc instead of the normal cudaMalloc and what does device_new do?
For device_malloc it seems the only reason to use it is that it's just a bit ...
0
votes
0answers
92 views
Thrust transform iterator and kernel fusion
I am trying to use transform_iterator on simple examples for the moment, because I would like to find out if the kernel fusion happen, and if the device code is launched only when the values of the ...
1
vote
1answer
41 views
What is the thrust way to expand a sparse-style matrix?
Basically, I have a "sparse style" data set, with
thrust::device_vector<int> indexes(smallsize);
thrust::device_vector<float> values(smallsize);
I'd like to expand this into a single
...
0
votes
2answers
79 views
CUDA Thrust: reduce_by_key on only some values in an array, based off values in a “key” array
Let's say I have two device_vector<byte> arrays, d_keys and d_data.
If d_data is, for example, a flattened 2D 3x5 array ( e.g. { 1, 2, 3, 4, 5, 6, 7, 8, 9, 8, 7, 6, 5, 4, 3 } ) and d_keys is a ...
2
votes
2answers
166 views
CUDA: Sorting a vector< vector<int> > on the GPU
I have implemented my own comparator for STL's sort function, that helps sorting a std::vector< std::vector<int> > on the CPU.
The user gives as an input a std::vector< ...
0
votes
1answer
47 views
multiple pointers on device memory for single allocated array in cuda
I am wondering if there is it possible to setup multiple pointers to single data already allocated in memory? the reason i am asking this is because i was implementing lexographical sorting with gpu ...
1
vote
1answer
47 views
CUDA Thrust library: How can I create a host_vector of host_vectors of integers?
In C++ in order to create a vector that has 10 vectors of integers I would do the following:
std::vector< std::vector<int> > test(10);
Since I thought Thrust was using the same logic ...
0
votes
0answers
95 views
Issues related to performance of thrust CUDA library
I am a newbie in CUDA programming, but recently i have been confused in a problem in which theoretically i estimated the speedup and i ended up speed-down, what i discovered is that CPU checking for ...
0
votes
1answer
96 views
Replacing for-loops using thrust::transform
I am trying to optimize my code by implementing for loops on threads of the GPU. I am trying to eliminate two for loops using thrust::transform. The code in C++ looks like:
ka_index = 0;
for ...
2
votes
1answer
203 views
Expand and increment data by map count
I'm quite new to thrust (cuda), and am finding something challenging.
(Edited question to be simplified) I have an input vector and a map:
vector = [8,23,46,500,2,7,91,91]
map = [1, 0, 4, ...
1
vote
0answers
39 views
Number of parallel integrations using odeint with thrust
I am performing parallel integration of the same ode starting from sets of different initial conditions. I am using odeint with thrust to parallelize the computation on my GPU (Nvidia GTX660). How can ...
0
votes
1answer
44 views
Why compiler gives error?
thrust::host_vector<int> A;
thrust::host_vector<int> B;
int rand_from_0_to_100_gen(void)
{
return rand() % 100;
}
__host__ void generateVector(int count) {
...
1
vote
0answers
44 views
CUDA threads appending variable amounts of data to common array
My application takes millions of input records, each 8 bytes, and hashes each one into two or more output bins. That is, each input key K creates a small number of pairs (B1,K), (B2,K), ... The ...
1
vote
0answers
72 views
How many gpu cores is my program using?
I am executing a parallel computation on gpu via thrust. Is there a way to know how many cores I am using? Are all the available cores actually exploited for the computation?
0
votes
0answers
69 views
thrust::device_vector of std::shared_ptr
I'd like to speed up the sorting of a std::vector of std::shared_ptr<CustomClass>. By searching here and there, it seems that the Thrust library can be a valuable alternative. I tried to mimic ...
0
votes
0answers
35 views
How can I get the address in an array whose elements are structs rather than primitive type using thrust::scan?
I'm using thrust to make easy my parallel programming with CUDA. The scan (prefix-sum) is a perfect building block when I'm trying to get the addresses of elements from the next layer which was ...
0
votes
1answer
78 views
Is it possible to use thrust::device_vector and thrust::fill for 2D arrays using thrust library in CUDA
I am new to use thrust library. I have my CUDA C code which uses global 2D arrays. I am initializing it using kernel function in my code.
I have to know whether is it possible to use ...
2
votes
2answers
132 views
Stop integration with odeint used with thrust
I'm trying to integrate a system of ODEs with the odeint library and thrust in parallel on a set of points (this means same ODE with many different initial conditions). In particular I'm using the ...
0
votes
1answer
81 views
cudaThreadSynchronize & performance
Some days ago I was comparing performance of some code of mine where I perform a very simple replace and Thrust implementation of the same algorithm. I discovered a mismatching of one order of ...
1
vote
1answer
95 views
memory problems when using float4 in thrust cuda
i've encountered a memory problem when using float4 in thrust cuda
adding the float4 "buggyVariable" as a member to the functor seems to cause the float data to be get left shifted by 1 float.
in ...
1
vote
1answer
98 views
How can I store matrix in GPU memory continuously and use it when needed?
I'm trying to parallelize some function via CUDA, that is being called for many times. Each time it deals with the same matrix. I want to store this matrix in GPU memory and when function is called, I ...
0
votes
0answers
88 views
Program crashing after leaving CUDA kernel function
I have a C++ struct
struct CudaLogSequenceFilter {
float min_interval_length, max_segment_length, bridge_gaps_under;
bool unordered, complement;
int *classes;
int classes_count;
}
...
0
votes
0answers
87 views
thrust::system::system_error in transform_reduce
I am running a monte carlo simulation using Thrust on an Nvidia card with 2.1 compute capability. If I try to transform_reduce the whole device_vector at once, I get the following error. Its not a ...
-3
votes
1answer
145 views
CUDA thrust reduce is so slow? [closed]
I am learning CUDA. Today, I try some code in the book: CUDA Application Design And Development, which make me surprised. Why CUDA Thrust is so slow? Here is the code and the output.
#include ...
0
votes
1answer
218 views
Cuda Random Number Generation
I was wondering what was the best way to generate one pseudo random number between 0 and 49k that would be the same for each thread, by using curand or something else.
I prefer to generate the ...
0
votes
1answer
72 views
How to pass thrust device vectors to cublas [closed]
I am attempting to use thrust as a wrapper for my device arrays. I would like to do some matrix-vector operations, but cuda-memcheck yields literally 100 errors. Here is a reproducible example
...
1
vote
1answer
179 views
thrust host_vector to device_vector gives unspecified launch error
I am trying to debug my thrust program and narrowed down the error to trying to copy the host_vector to the device_vector. The error I get is "unspecified launch failure". I'm compiling with nvcc ...
0
votes
1answer
49 views
using std::bind2nd with thrust
I'm trying to use std::bind2nd with thrust. I have code that compiles with a host pointer, but not with a device pointer. I think they are identical and should work in both cases.
// this compiles ...
0
votes
1answer
86 views
How do I copy the row_indices from a COO matrix to a thrust vector in CUSP
I have been trying to copy the row indices, column indices and values of a COO matrix into separate thrust vectors, but I find that I am unable to do so.
Below is the code
cusp::coo_matrix ...
0
votes
0answers
60 views
CUDA thrust::transform yielding sigabort
I would like to ask for help regarding the use of device_ptrs inside a struct. I am working on a CUDA adaptation of the R library "glmnet". This requires some matrix-vector multiplications, but for ...
1
vote
0answers
92 views
Does CUDA 5 support STL or THRUST inside the device code?
Its mentioned that CUDA 5 allows library calls from kernel
Does that mean CUDA 5 can use thrust or STL inside device code then ?
1
vote
0answers
79 views
R6010 error while using thrust::reduce
I am trying to make some elementary operations using Thrust for CUDA and I always get R6010 error (- abort() has been called) when I use thrust::reduce or similar function (e.g. inner_product) on ...
0
votes
1answer
70 views
Wrapping Thrust Device Vectors in a struct?
I am implementing a math algorithm that requires keeping ~15 different vectors of floats around. I'd like to wrap all of these device vectors into a struct
typedef struct {
...
0
votes
0answers
90 views
Efficient pairwise computation of data with very large datasets
This is more of a general question for directions rather than an exact question with an exact answer, so please forgive me in advance. I have a lot of experimental data in a text file as follows:
...
0
votes
1answer
126 views
Error accessing member of struct from thrust::device_vector
I get an error while trying to access a member element of a struct from my device_vector. The error I am getting is: error: class "thrust::device_reference" has no member "nums". The code for the ...
0
votes
1answer
82 views
thrust::transform_reduce How can I access iterator within unary op?
I am trying to perform a transform reduce on a vector of structs. The struct contains two numbers. I want the unary function to do something with these two numbers and return a single value for each ...
