The reduction tag has no wiki summary.
0
votes
1answer
48 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 ...
0
votes
1answer
16 views
Using NP Reductions
I have been having some difficulty understanding reductions using NP problems and would like clarification. Consider the following problem:
Show that the following problem is NP-Complete by designing
...
2
votes
2answers
43 views
What is the usage of reduction in openmp?
I have this piece of code that is parallelized.
int i,n; double area,pi,x;
area=0.0;
#pragma omp parallel for private(x) reduction (+:area)
for(i=0; i<n; i++){
x= (i+0.5)/n;
area+= 4.0/(1.0+x*x);
...
3
votes
4answers
145 views
Is there a more elegant/clever/brief way to bring an unknown number closer to 0?
Basically I'm working out drag in a game with physics. The sideways motion needs to be
reduced (as in brought closer to 0, not just brought into negative), but I don't know which direction it's ...
0
votes
2answers
36 views
Order of execution in Reduction Operation in OpenMP
Is there a way to know the order of execution for a reduction operator in OpenMP? In other words, I would like to know how the threads execute reduction operation- is it left to right? What happens ...
0
votes
0answers
50 views
counting occurrences in CUDA
I have three integers, i, j, and k. Let's say i and j can be of any value from 0 to 1000, while k is between 0 and 100. I want to count the occurrences of 'i-j-k', where the integers take on values ...
0
votes
0answers
66 views
How to derive this result? [migrated]
Problem is to find the total number of zeroes in the decimal representation for the series with input N
0, 1, 2, 3, 4, 5 ... upto N
due to time limit constraints run time complexity was needed ...
1
vote
1answer
32 views
NP-Complete Graph optimization: minimal node selection?
Suppose you have a graph G = (V, E) that represents the floor plan of a one-story shopping mall. The individual stores are represented by vertices, and the edges between vertices represent some ...
0
votes
0answers
27 views
Proof that the Dominating Set is NP-Complete
Take a triangle with vertices u,v,v'. As all triangles are, it is strongly connected.
Correct me if I'm wrong, but it has a dominating set of size 1.
As I work through the proofs to try and reduce ...
0
votes
0answers
13 views
Log-space reduction from EvenURch to Undirected Reachability
URch is: given an undirected graph G, and nodes x,y of G, is there a path from x to y in G?
EvenURch is given an undirected graph G, and nodes x,y of G, is there a path of even length(possibly ...
0
votes
0answers
13 views
how to do feature reduction in web page 's vector
I have transformed the web pages' content into VSM (vector space model), but every web page has thousands of the vectors. I want to do feature reduction(or feature selection?), but after I had tried ...
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 ...
0
votes
0answers
9 views
Tool to simply algebraic expression to minimal and most efficient flops/instructions or approximate?
Say for example I have something like X = A + B * 100 , A = some-other-express, B = some-other expression. Is there any tools to simplify X to a minimal or an some approximation of the lowest number ...
0
votes
1answer
88 views
Cuda Kernel with reduction - logic errors for dot product of 2 matrices
I am just starting off with CUDA and am trying to wrap my brain around CUDA reduction algorithm. In my case, I have been trying to get the dot product of two matrices. But I am getting the right ...
0
votes
1answer
38 views
Python File Reduction - part 2
This is a follow up to my previous question (text file reduction with randomization in Python). Was modifying to run through multiple reductions, but only the first output file contains reductions, ...
1
vote
1answer
142 views
How to reduce colors to a specified number in Delphi?
How can I reduce colors to a specified number (<=256) in Delphi?
I don't want to just use:
Bmp.PixelFormat := pf8bit;
because that way I cannot control number of colors. I don't want dithering, ...
0
votes
2answers
41 views
Efficient reduction of an R vector to a summary vector
I'm trying to do simulation of a sequence, which is of length N (varies between 10k and 3M) represented by a vector which has n 1's and s 0's where N = n+s.
I'd like to reduce this to a vector on the ...
0
votes
1answer
54 views
Noob C++/OpenMP: Why do I get this compile time error? variable in 'reduction' clause must be shared in enclosing context
1 int result = 0;
2 int b = 0;
3 #pragma omp for reduction(+:result) private(b)
4 for(int i = 0; i < size; i++) {
5 ifile >> b;
6 if(b== 100)
7 result++;
8 }
Why do I ...
0
votes
0answers
135 views
Specific Cuda Data Reduction (Max Float Value)
I did some research and found out that the specific problem that I am trying to solve has an easy answer in the cuda sdk and also a thrust library solution. My problem is that I looked at the sdk ...
0
votes
0answers
33 views
Reducing from one language to another(theory of computation)
I need to show a reduction from Linf to Lequal where
Linf is {e|L(Pe) is infinite}
Lequal is {(k,j)|L(Pk)=L(Pj)}
To show Linf reducible to Lequal
Can i show it by using this program
1)Input e
...
0
votes
1answer
42 views
PCA for Face Recognition
Let x1 be a vector(gray) of image1, x2 be a vector(gray) of image2, etc xn be a vector(gray) of imagen. Say, all the image size is represented by r rows and c columns (r*c)
so, X = [x1, x2, x3, ...
1
vote
3answers
93 views
text file reduction with randomization in Python
I solved the following problem in bash, but I feel it's quite inefficient and very slow given the size of files I need to reduce. Was hoping somebody has an idea how to do the same in Python and ...
7
votes
3answers
272 views
Reduce list on the fly in Haskell
Assume I have a function f which accepts some input and produce a number. Within the function f, a list is created according the input, which is then reduced (e.g. using foldl' g) to produce the final ...
1
vote
1answer
109 views
OpenCL reduction from private to local then global?
The following kernel computes an acoustic pressure field, with each thread computing it's own private instance of the pressure vector, which then needs to be summed down into global memory.
I'm pretty ...
1
vote
1answer
45 views
What is reduction variable? Could anyone give me some examples?
What is reduction variable?
Could anyone give me some examples?
1
vote
2answers
209 views
Parallel reduction example
I found this parallel reduction code from Stanford which uses shared memory.
The code is an example of 1<<18 number of elements which is equal to 262144 and gets correct results.
Why for ...
1
vote
2answers
57 views
How to use reduction on an array in Fortran?
I'm just starting to learn openMP and I have the following...
do 100 k=1,lines
!$OMP PARALLEL DO PRIVATE(dotprod) REDUCTION(+:co(k),si(k))
do 110,i=1,ION_COUNT
...
1
vote
2answers
55 views
How to evaluate an expression using β reduction in lamdba calculus?
I want to evaluate the following expression :
(λx.y)((λz.zz)(λw.w))
using β reduction .
The answer is :
(λx.y)((λz.zz)(λw.w)) ->
(λx.y)((λw.w)(λw.w)) ->
(λx.y)(λw.w) -> y
But I don't ...
0
votes
2answers
210 views
CUDA: How can I make this code parallel?
I'm trying very hard to make a code run in parallel (CUDA). The code, simplified, is:
float sum = ... //sum = some number
for (i = 0; i < N; i++){
f = ... // f = a ...
0
votes
1answer
107 views
OpenMP to CUDA: Reduction
I'm trying to figure out how I can use OpenMP's for reduction() equivalent in CUDA. I've done some research online, and none of what I've tried worked. The code:
#pragma omp parallel for ...
0
votes
1answer
60 views
L = {T | T is a turing machine that recognizes {00, 01}} Prove L is undecidable
L = {<T> | T is a turing machine that recognizes {00, 01}}
Prove L is undecidable.
I am really having difficulties even understanding the reduction to use here.
I'm not asking for free lunch, ...
1
vote
1answer
236 views
MPI_Reduce doesn't work as expected
I am very new to MPI and I'm trying to use MPI_Reduce to find the maximum of an integer array. I have an integer array arr of size arraysize, and here is my code:
MPI_Init(&argc, &argv);
...
1
vote
1answer
241 views
Reduction of matrix rows in OpenCL
I have an matrix which is stored as 1D array in the GPU, I'm trying to make an OpenCL kernel which will use reduction in every row of this matrix, for example:
Let's consider my matrix is 2x3 with ...
0
votes
5answers
691 views
Reducing TSP to Hamiltonian circuit
HIHow i can convert TSP to Ham Circuit problem. Means if i have solution to Ham circuit problem then i will use that solution to solve TSP problem.
Thanks
2
votes
3answers
77 views
Get dummy (T/F) variables from list embedded within data frame
I have a data.frame in which cells contain a list of terms.
I wish to produce a new variable for each term found in that list indicating wether the term is present or not in that given cell.
I have ...
0
votes
1answer
99 views
Lambda calculus in practice [closed]
How to choose a language, a lambda term (λx.y)((λx.xxx)(λx.xxx)) actually calculated? In other words, need a language to the normal order reduction and the weak type system.
0
votes
0answers
49 views
Polynomial Reductions
I'm looking for a book (for a source actually) for almost all available Polynomial Reductions.
I already know how these reduction can be done: 3-SAT to IS, Knapsack to TSP, IS to VC and VC to IS.
I ...
1
vote
0answers
80 views
Slower first interactions of CUDA parallel reduction on Macbook
When I run the CUDA parallel reduction with the following arguments:
int size = 1 << 22;
int maxThreads = 512;
int whichKernel = 5;
On a Macbook with the following GPU:
Device 0: "GeForce ...
2
votes
1answer
113 views
Reduce3 example in CUDA SDK
I'm reading the reduction optimization in CUDA SDK, and I have problem following what happens from reduce2 to reduce3:
/*
This version uses sequential addressing -- no divergence or bank ...
1
vote
4answers
179 views
PHP Script to load fonts as needed
I'm looking for a way to add fonts on an 'as-needed' basis.
I originally had 4 Google API Fonts chosen from when I build this particular site. Now that it's grown, I'd like to up the font selection ...
3
votes
0answers
349 views
Call a CUDA kernel from multiple CPU threads (using shared memory)
I wrote a cuda kernel that use shared memory to perform a reduction in order to find the minimum value in an array. This is very similar to the well known example that can be found here :
...
0
votes
0answers
36 views
android, punctual steps proposal for avoidig OOM
In my Android app the Resources instance stays at about 8 MB. Pretty huge. I did convert all my .wav to .ogg, delete a big .png file and used pngcrush on the remaining, entailing a reduction of about ...
2
votes
0answers
69 views
Lambda Calculus simplification [closed]
Below is the lambda expression which I am finding difficult to reduce i.e. I am not able to understand how to go about this problem.
(λmn(λsz.ms(nsz)))(λsz.sz)(λsz.sz)
I am lost with this.
if ...
2
votes
1answer
139 views
Modular exponentiation - how to reduce huge modulus?
the typical equation for modular exponentiation is (a + b) MOD n = ((a MOD n) + (b MOD n)) MOD n. this is awesome if a and b are very huge.
however I'm asked to do this exponentiation with a very huge ...
5
votes
2answers
470 views
CUDA - why is warp based parallel reduction slower?
I had the idea about a warp based parallel reduction since all threads of a warp are in sync by definition.
So the idea was that the input data can be reduced by factor 64 (each thread reduces two ...
3
votes
2answers
83 views
Reducing a data frame for computing harmonic speedup in R
I have a data set containing the following information:
Workload name
Configuration used
Measured performance
Here you have a toy data set to illustrate my problem (performance data does not make ...
0
votes
1answer
75 views
SHA-1 Digest Reduction
I'm using QR Code barcodes to store UUIDs in my system and I need to check that the barcodes generated are mine and not someone else's. I also need to keep the encoded data short so that the QR Codes ...
0
votes
1answer
243 views
Unrecognized pragma: Reduction clause | openMP
For the code below I get an error: unrecognized #pragma: #pragma omp reduction (+: sum). Note that the for-loop inside the function is not a parallel-for-loop because the function itself is ...
0
votes
2answers
665 views
CUDA reduction - basics
I'm trying to sum an array with this code and I am stuck. I probably need some "CUDA for dummies tutorial", because I spent so much time with such basic operation and I can't make it work.
Here is a ...
-1
votes
1answer
358 views
CUDA reduction using thrust inside kernel
I want to do parallel reduction, but inside my kernel with data in shared memory. Is this possible with thrust library ?
Something like
int sum = thrust::reduce(myIntArray, myIntArray+numberOfItems, ...



