Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

38
votes
6answers
2k views

General rules for simplifying SQL statements

I'm looking for some "inference rules" (similar to set operation rules or logic rules) which I can use to reduce a SQL query in complexity or size. Does there exist something like that? Any papers, ...
9
votes
4answers
862 views

View Reduction Steps in Haskell

I was wondering if there is anyway to view the reduction steps in haskell, i.e trace the recursive function calls made, for e.g chez scheme provides us with trace-lambda, is there an equivalent form ...
8
votes
2answers
1k views

Is it possible to do a reduction on an array with openmp?

Does OpenMP natively support reduction of a variable that represents an array? This would work something like the following... float* a = (float*) calloc(4*sizeof(float)); omp_set_num_threads(13); ...
7
votes
2answers
350 views

Lambda Calculus reduction

All, 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. (λm λn λa λb . m (n a b) b) (λ f x. x) (λ f x. f x) This is ...
4
votes
1answer
119 views

Algorithm to maximize profit: ways to solve/approach? (Advanced NP-Complete)

This one's hard, so all help really appreciated! I know it is NP-Complete and thus cannot be solved in polynomial time, but looking for help in analysis, what type of NP-Complete problem it reduces ...
3
votes
2answers
208 views

Call by value in the lambda calculus

I'm working my way through Types and Programming Languages, and Pierce, for the call by value reduction strategy, gives the example of the term id (id (λz. id z)). The inner redex id (λz. id z) is ...
3
votes
2answers
173 views

Sequence reduction in R

Assume you have a vector like so: v <- c(1,1,1,2,2,2,2,1,1,3,3,3,3) How can it be best reduced to a data.frame like this? v.df <- data.frame(value=c(1,2,1,3),repetitions=c(3,4,2,4)) In a ...
3
votes
2answers
67 views

Is there a library for .NET that does parenthesis or expression reduction and optimization?

Is there a library for .NET that does parenthesis or expression reduction and optimization? Something that would take an expression such as (A & (((B) | (C)) | D))) and return A & (B | C | D) ...
2
votes
3answers
81 views

A very complex problem in reduction notion

I have studied many about reduction but I have a bad problem in it: I take this from CLRS : " ... by “reducing” solving problem A to solving problem B, we use the “easiness” of B to prove the ...
2
votes
3answers
252 views

OpenMP: nowait and reduction clauses on the same pragma

I am studying OpenMP, and came across the following example: #pragma omp parallel shared(n,a,b,c,d,sum) private(i) { #pragma omp for nowait for (i=0; i<n; i++) a[i] += b[i]; ...
2
votes
4answers
806 views

CUDA: reduction or atomic operations?

I'm writing a CUDA kernel which involves calculating the maximum value on a given matrix and I'm evaluating possibilities. The best way I could find is: Forcing every thread to store a value in the ...
2
votes
2answers
853 views

How to create a coupon on specific product in Magento?

Let's say I have 10% off coupon code. This coupon is applicable only to Product B A customer have in its cart : Product P1 Product B Product P2 I don't want my 10% off coupon apply to other ...
2
votes
1answer
261 views

proof it is a NP-Complete problem

here is the question. I am wondering if there is a clear and efficient proof: Vertex Cover: input undirected G, integer k > 0. Is there a subset of vertices S, |S|<=k, that covers all edges? ...
2
votes
2answers
535 views

Shorten array in PHP: 20 values => X values

In PHP I have an array containing 20 elements or more. The keys have been assigned automatically. The values are random numbers from 1 to 50. <?php $randomList = array(); for ($i = 0; $i < 20; ...
1
vote
1answer
46 views

Lambda calculus predecessor function reduction steps

I am getting stuck with the Wikipedia description of the predecessor function in lambda calculus. What Wikipedia says is the following: PRED := λnfx.n (λgh.h (g f)) (λu.x) (λu.u) Can someone ...
1
vote
3answers
94 views

Complexity of an old Top Coder riddle: Making a number by inserting +

This is a follow up to my previous question (about an old top coder riddle). Given a string of digits, find the minimum number of additions required for the string to equal some target number. ...
1
vote
2answers
105 views

CUDA - Calling a Kernel Multiple Times

I'm having difficulty with a CUDA program I'm trying to write. I have an array of about 524k floating point values (1.0) and I'm using reduction technique to add all the values. The problem works ...
1
vote
1answer
141 views

Parallel Reduction in CUDA for calculating primes

I have a code to calculate primes which I have parallelized using OpenMP: #pragma omp parallel for private(i,j) reduction(+:pcount) schedule(dynamic) for (i = sqrt_limit+1; i < limit; i++) ...
1
vote
2answers
219 views

CUDA , finding Max using reduction, error

here is my code trying to do reduction to find maximum of a 50 value array in a block. I have padded the array to 64. For threads 1-31 I have correct maxVal printing out but for threads 32-49 it's a ...
1
vote
6answers
73 views

Can I reduce this Javascript code?

Can I reduce function n() { var a; if(a = document.getElementById('fb0')) { a.onclick = i0; document.getElementById('fb1').onclick = i1; } } to function n() { ...
1
vote
1answer
157 views

Proving NP-Completeness of a problem

We are given a set A = {a1,a2,...,an} Given subsets of A named B1,B2, ..., Bm. If a subset of A named H has intersection with all given B's, we call H "Covering subset". Is there any "covering ...
1
vote
3answers
71 views

How to reduce the number of points in (x,y) data

I have a set of data points: (x1, y1) (x2, y2) (x3, y3) ... (xn, yn) The number of sample points can be thousands. I want to represent the same curve as accurately as possible with minimal (lets ...
1
vote
4answers
313 views

CSS Reduction Tool

I was wondering whether anyone knows of any tools available that perform the task of analyzing one or more CSS files, determining the similarity between the various rules within the files and ...
1
vote
4answers
395 views

Performing expression evaluation/reduction in Visual Studio 2008

Is it possible to get Visual Studio to do mathematical expression evaluation/reduction? For example if I type '-0.005 + -0.345' how do I get Visual Studio to reduce that (i.e. replace it with the ...
1
vote
4answers
344 views

Lookup table size reduction

I have an application in which I have to store a couple of millions of integers, I have to store them in a Look up table, obviously I cannot store such amount of data in memory and in my requirements ...
0
votes
2answers
86 views

OpenCL: Reduction examples, and retaining memory objects / converting cuda code to openCL

I've been going through a few examples, reducing an array of elements to one element, without success. Someone posted this on an NVIDIA forum. I have changed from floating point variables to ...
0
votes
1answer
95 views

openCL reduction, and passing 2d array

Here is the loop I want to convert to openCL. for(n=0; n < LargeNumber; ++n) { for (n2=0; n2< SmallNumber; ++n2) { A[n]+=B[n2][n]; } ...
0
votes
1answer
19 views

OPENMP Iteriation never exits

I am trying to create a code of an iterative process while keeping the while inside the parallel region to minimize the parallelization overhead. the code is something like this The problem is it ...
0
votes
1answer
82 views

Calling sum reduction kernel from another kernel

I'm trying to sum reduce an array from a kernel without needing to send the data back to the CPU host, but I'm not getting the right results. Here is the sum kernel I use (slightly modified from the ...
0
votes
1answer
129 views

How to reduce 3COLOR to 3SAT?

We know that 3SAT ≤p 3COLOR(i.e. 3SAT is polynomial time reducible to 3COLOR). Can anyone give a short argument why 3COLOR ≤p 3SAT? And give an actual Cook reduction showing that 3COLOR ≤p 3SAT ...
0
votes
1answer
203 views

CUDA Maximum Reduction Algorithm Not Working

A previous question asked how to find to find the maximum value of an array in CUDA efficiently: Finding max value in CUDA, the top response provided a link to a NVIDIA presentation on optimizing ...
0
votes
1answer
155 views

CUDA reduction using registers

I need to calculate N signals' mean values using reduction. The input is a 1D array of size MN, where M is the length of each signal. Originally I had additional shared memory to first copy the data ...
0
votes
2answers
95 views

Using R for variable/dimension reduction on large data set

I have some data in R with various variables for my cases: B T H G S Z Golf 1 1 1 0 1 0 Football 0 0 0 1 1 0 Hockey 1 0 0 1 0 0 Golf2 1 1 1 1 1 0 Snooker 1 0 1 0 1 1 I also ...
0
votes
1answer
41 views

How to reduce the size of the citation(like [1]) generated by \cite{1} tag in latex

Wikipedia neatly superscripts n reduces the size of all the citations. Is there a way to get it in latex.
0
votes
0answers
147 views

wordpress image size based on url

I'm using a custom field to select an image's url. My client is inserting and uploading all the image so this needs to be really simple. Thats why I'm trying to handle it behind the scene. The ...
0
votes
3answers
601 views

Finding max value in CUDA

I am trying to write a code in CUDA for finding the max value for the given set of numbers. Assume you have 20 numbers, and the kernel is running on 2 blocks of 5 threads. Now assume the 10 threads ...
0
votes
4answers
70 views

How to simplify this Xpath expression?

I have the following XML code : <root> <a><l_desc/></a> <b><l_desc>foo</l_desc></b> <c><l_desc>bar</l_desc></c> ...
0
votes
1answer
585 views

comparing Matlab vs CUDA correlation and reduction on a 2D array

I am trying to compare cross-correlation using FFT vs using windowing method. My Matlab code is: isize = 20; n = 7; for i = 1:n %%7x7 xcorr for j = 1:n xcout(i,j) = sum(sum(ffcorr1 .* ...
0
votes
1answer
322 views

Simple reduction (NP completeness)

hey guys I'm looking for a means to prove that the bicriteria shortest path problem is np complete. That is, given a graph with lengths and weights, I need to know if a there exists a path in the ...