Tagged Questions

Unified Parallel C, a parallel extension to ISO C. A parallel programming language that exploits partitioned global address space (PGAS).

learn more… | top users | synonyms

7
votes
2answers
101 views

UPC in HPC - experience and suggestions [closed]

I am currently exploring some aspects of unified parallel C as an alternative to standard parallelization approaches in HPC (like MPI, OpenMP, or hydrid approaches). My question is: Does anyone have ...
1
vote
1answer
50 views

Array of private pointers to shared array in UPC

I am programming in UPC and have an array shared between two threads. Each thread has private pointers to these shared areas: #define SIZE 10000 #define HALFSIZE (SIZE/2) shared [ HALFSIZE ] int ...
1
vote
3answers
102 views

What's the best way to search for a UPC code in a Database?

I have a UPC Database of 12-digit UPC-A formatted barcodes (1,900,000 records). Currently they're stored as a varchar(13) due to leading zeros. I am using SQL Server 2008 R2. I also have an WCF 4.0 ...
0
votes
1answer
23 views

UPC allocating dynamic array and sorting

I try to read floats from a file and then sort them. Sort must be paralell UPC. That's current code: #include <upc_relaxed.h> #include <upc_collective.h> #include <stdio.h> #include ...
0
votes
0answers
47 views

ZBAR iPhone SDK issue.

I have an app that uses the Zbar SDK I have everything up and running and it scans QR codes great. However when I try to scan UPC-A barcodes (Grocery stuff) it comes back with a completely different ...
0
votes
1answer
87 views

Problem running UPC code over a network : connecion refused

when I run a UPC code over a network of 2 nodes, with -v option enabled to give me detailed information of execution, I notice that the master node (glitch.rutgers.edu) tries to connect to itself as ...
0
votes
1answer
79 views

MPI error due to Timeout in making connection to a remote process

I'm trying to run a NAS-UPC benchmark to study it's profile. UPC uses MPI to communicate with remote processes . When I run the benchmark with 64 processes , i get the following error upcrun -n 64 ...
0
votes
1answer
122 views

can we instrument UPC code with PAPI API calls

I want to instrument my UPC program with PAPI APIs to get information on hardware counters during the execution of UPC program. But i keep getting linking errors for eg, "undefined reference to ...
0
votes
2answers
206 views

Unified Parallel C - examples and list of extensions

Where can I find examples of code, written in "Unified Parallel C"? I also interested in normative documents about this language (standards, reference manuals, online-accessible books and courses). ...
-1
votes
0answers
28 views

Zxing Bar Code Scanner - Product Name

My objective: Develop an application which will scan the bar codes using the android phone and retrieve the product name. Tasks Completed: Based on research I have found the Zxing library and ...