High Performance Computing (HPC) refers to the use of supercomputers and computer clusters to solve a wide range of computationally intensive problems.

learn more… | top users | synonyms

0
votes
2answers
19 views

Maximum number of resident threads per multiprocessor VS. Maximum number of resident blocks per multiprocessor

I'm running an issue on my K20 about resources with concurrent kernel execution. My streams only got a little overlap and then I thought this might because of a resources limitation. So I referred to ...
0
votes
0answers
13 views

Finding the correct Molecular Dynamics library

I am working in an academic setting, and I was looking around for a good MD library to use in my research. There is one right now at the university set up in C, with openMC parallelization, but the ...
1
vote
1answer
32 views

How to choose a non busy CUDA device?

I'm working on a cluster with a lot of nodes, and each node has two gpus. In the cluster, I can't launch "nvidia-smi" to check which device is busy. My code selects the best device (with ...
0
votes
1answer
67 views

How to avoid TLB miss (and high Global Memory Replay Overhead) in CUDA GPUs?

The title might be more specific than my actual problem is, although I believe answering this question would solve a more general problem, which is: how to decrease the effect of high latency (~700 ...
0
votes
1answer
28 views

Controlled premature termination of mpi program running under slurm?

I am running a script that does multiple subsequent mpirun calls through slurms squeue command. Each call to mpirun will write its output to an own directory, but there is a dependency between them in ...
0
votes
0answers
33 views

File locking error on Polyserve file system ADIOI_Set_lock

I'm running an MPI application on a Polyserve file system and I'm getting the following error; File locking failed in ADIOI_Set_lock(fd 11,cmd F_SETLK/6,type F_WRLCK/1,whence 0) with return value ...
0
votes
3answers
88 views

openmp - while loop for text file reading and using a pipeline

I discovered that openmp doesn't support while loops( or at least doesn't like them too much). And also doesn't like the ' != ' operator. I have this bit of code. int count = 1; #pragma omp parallel ...
-1
votes
0answers
61 views

parallel programming, across multiple OS & hardware platforms [closed]

I am working on a parallel implementation of a particular text parsing software, which may have mathematical tools built in later. The program is being built in C. I have a few queries I would like ...
0
votes
1answer
28 views

C# HPC Scheduler, Job not completes

I am trying to test a simply designed code piece on Microsoft HPC. It looks like the job is not completing the all code. My test method might be wrong though. I am just printing out some check points. ...
0
votes
1answer
53 views

Weak vs Strong Scaling Speedup and Efficiency

I have a theoretical question. As you know, for the analysis of scaling, the speedup is defined as S(N) = T(1) / T(N) where T(i) is the runtime with i processors. The efficiency is then defined as ...
1
vote
3answers
86 views

Use infiniband with Akka in Scala?

Is it possible to use infiniband instead of TCP/IP with Akka? I want to use Akka for HPC on the local cluster and the network bottleneck is significant using TCP/IP...
0
votes
0answers
29 views

Windows Azure HPC Scheduler Sample - No such host is known

I have installed sample service from Windows Azure HPC Scheduler samples to my Azure environment. I go into the remote desktop head node VM and try to run: clusrun /all hostname But it does not ...
0
votes
1answer
44 views

C# Microsoft HPC IScheduler - Debugging Issue

I have an issue to run a simple code (Hello World) on Microsoft HPC. The code has a breakpoint. After compiling the code in the debug mode, when I submit the executable to the node ( the one I am ...
0
votes
1answer
44 views

What is (if any) the standard approach for designing out of core/ external memory algorithms?

I am looking for rules of thumb for designing algorithms where the data is accessed slowly due to limitations of disk speed, pci speed(gpgpu) or other bottleneck. Also, how does one manage gpgpu ...
0
votes
0answers
50 views

Set up computational cluster using infiniband fails [closed]

My task: I need to assemble computational cluster, consists of two nodes using infiniband technology. When I try to start mpirun ... for two nodes, the process hangs. If i try to use flag ...
1
vote
4answers
96 views

$SGE_TASK_ID not getting set with qsub array grid job

With a very simple zsh script: #!/bin/zsh nums=(1 2 3) num=$nums[$SGE_TASK_ID] $SGE_TASK_ID is the sun-grid engine task id. I'm using qsub to submit an array of jobs. I am following what is ...
0
votes
2answers
51 views

Parallel hasing using openmp

I have a piece of code for parallel hashing, the insert code is as follows: int main(int argc, char** argv){ ..... Entry* table;//hash table for(size_t i=0;i<N;i++){ keys[i]=i; ...
0
votes
1answer
69 views

What are the open source equivalents of Apple's Accelerate Framework libraries?

If we take a look under the umbrella of Accelerate Framework we will see several libraries: I know that BLAS and LAPACK are open source and that the same code used otherwhere can be compiled against ...
3
votes
4answers
86 views

Do multiple CPUs compete for the same memory bandwidth?

In a multi-CPU machine, do the different CPUs compete for the same memory bandwidth, or do they access DRAM independently? In other words, if a program is memory bandwidth limited on, say, a 1-CPU ...
0
votes
0answers
47 views

Counting FLOPs and size of data and check whether function is memory-bound or cpu-bound

I am going to analyse and optimize some C-Code and therefore I first have to check, whether the functions I want to optimize are memory-bound or cpu-bound. In general I know, how to do this, but I ...
1
vote
3answers
107 views

Undefined reference to main fortran program

I am writing a fortran code for benchmarking three loop kernels: program Kernel_benchmark implicit none double precision,dimension (:),save,allocatable:: a,b,c,d,x,y ...
1
vote
1answer
37 views

How to write job file for cluster computer?

I am very new to high performance computers. In my laptop, I can run a program by type the command like this "./prog". But in HPC, I am required to write a job file before running any job. I was given ...
-4
votes
1answer
87 views

Ideas for final year project, Clusters and MPI? [closed]

Dear friends, I am doing bachelors in computer science, and I intend to build a 16-node Linux HPC cluster, do some MPI programming on it. I am in the initial stages of learning MPI and ...
0
votes
1answer
38 views

Is it possible to list running jobs with DRMAA?

I was wondering if it is possible to list all running jobs in the resource manager, using the DRMAA library, not just the ones started via DRMAA itself? That is, getting data similar to what is ...
0
votes
0answers
35 views

System calls using Popen in a for loop fail after the first iteration fine in a paralel environment using mpi4py

A simple script below will show that Popen in the simplest case of just sending "ECHO" in a loop only works in the first iteration (run on IBM iDataplex x86 system with RHEL 5). The first iteration it ...
0
votes
1answer
58 views

Can a local Java program start jobs remotely via SSH using DRMAA?

How does DRMAA work? Can a local Java program using DRMAA start jobs on a remote cluster over SSH (so that nothing will need to be installed on the server-side)? Background: I'm developing a general ...
1
vote
1answer
37 views

Profiling distributed systems

I was wondering about possible ways to track down performance bottlenecks in distributed systems. I am aware of tools like X-Trace and its offspring (e.g. Dapper) but I am more curious about the ...
0
votes
2answers
987 views

What are examples of FPGA or ASIC clusters outside of Bitcoin? [closed]

Bitcoin miners have been building GPU & FPGA clusters for a while, now they are moving on to ASIC clusters. In these systems work is sent to a PCBs with multiple FPGA or ASIC chips that are ...
3
votes
2answers
245 views

Red-Black Gauss Seidel and OpenMP

I was trying to prove a point with OpenMP compared to MPICH, and I cooked up the following example to demonstrate how easy it was to do some high performance in OpenMP. The Gauss-Seidel iteration is ...
-1
votes
2answers
67 views

Best practices for talking to cli interface from java over SSH? [closed]

I'm developing a graphical HPC client (in Java) that will talk to a command-line client (which doesn't need to be in Java) on the HPC system via SSH in order to do operations on the HPC system, as ...
3
votes
0answers
42 views

PANEL structure within HPL (high performance Linpack) code

Recently, I am delving into HPL code and try to understand the underlying implementation mechanism of HPL. (http://www.netlib.org/benchmark/hpl/) Right now, I am a little confused with some ...
1
vote
1answer
17 views

Slurm AccountingStorageEnforce=associations without effect

I'm managing a cluster with slurm and slurmdbd (with MySQL) I have set the following option in /etc/slurm/slurm.conf AccountingStorageEnforce=associations I have reloaded the config: scontrol ...
0
votes
1answer
86 views

master consuming 100% CPU in Rmpi program

I'm using the Rmpi (v. 0.6-2) package to parallelize my R (v. 2.15) code. I have the following peace of code: library(Rmpi) source("slaveFunction04.r") mpi.spawn.Rslaves(nslaves=2) ...
1
vote
2answers
156 views

Using OpenMP to for optimizing BiLinear Interpolation

I'm working on ARM, and I'm trying to optimize downsampling an image, I have used OpenCV cv::resize and its slow ~3ms for 1280*960 to 400*300, I'm trying to use OpenMP to accelerate it, however while ...
0
votes
1answer
15 views

Populate VBA Object with HPC

We are looking into HPC for improving processing on some of our larger, more complex spreadsheets. We have demo'd this to some colleagues and the area they can see this being useful is with a ...
0
votes
1answer
73 views

Windows HPC 2008 scheduler for an existing program?

I need to use windows hpc sheduler for create a distribuite task in a 48 distribite core with a existing program. How can i create a task that permits me to distribuite a simple work with a variable ...
0
votes
1answer
40 views

How can I add to LSF Platform new users?

I scourged the web and the manual for the simple answer this question needs. If I create new users on my cluster, and if I check 'busers all', they don't appear. Thus, they cannot use 'bjobs', ...
2
votes
2answers
527 views

Open a excel file through Com-interop C# API on microsoft HPC

I'm working on a Windows hpc and I'm trying to make a small program which run excel's macro on the grid. I'm using the Com Interop API It works fine on my computer, it runs the different VBA macros, ...
0
votes
0answers
85 views

Fast Distributed Fault Tolerant Blob Storage

My application requires saving many many small file (4Kb to 100MB) of protocol buffer objects (which can total to 10Tb of data) and I need to build a Distributed Fast Fault Tolerant Blob Storage for ...
1
vote
1answer
208 views

Trying to use UDF .xll to parallelize Excel on HPC grid

I'm looking to parallelize a Excel calculation on a HPC grid, I'm using Excel 2007 so I'm trying to multithread it through the UDF in a XLL because it is the only way (at least for 2007). I would ...
4
votes
4answers
207 views

STL containers speed vs. arrays

I just started working on a scientific project where speed really matters (HPC). I'm currently designing the data structes. The core of the project is a 3D-Grid of double values, in order to solve a ...
0
votes
0answers
128 views

no CUDA-capable device is detected, using Cuda over MPI on Beowulf cluster

I have set up a 2-machine Beowulf cluster, both machines running Debian Squeeze. Both machines have older Cuda cards installed, and I am able to run Cuda sample programs on both. I am also able to run ...
0
votes
0answers
104 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
2answers
100 views

simultaneous send and receive using MPI

I have a network where processes sends a random message to its neighbours and simultaneously receive messages from its neighbours. I'm able to do it using sockets and threads. One thread receives ...
0
votes
1answer
170 views

Microsoft HPC 2012 Code Samples

Are there any C# code samples or tutorials for developing application using Microsoft HPC 2012? According to the HPC Pack 2012 SDK download page on msdn the code samples are “coming soon”.
1
vote
3answers
135 views

C++ array operator overhead

I remember reading a while back some code that allowed the compiler to do some work and simplify an expression like this one: // edit: yes the parameters where meant to be passed by reference // ...
0
votes
1answer
64 views

MPI application on HPC doesn't communicate between the nodes

I'm trying to do some parallel programming on a HPC running on Windows server 2008. I'm trying to use MPI and particulary MPI.NET an implentation of the MPI protocol in C#. Right now I'm following the ...
0
votes
0answers
74 views

R foreach load package using fortran code [closed]

I am creating a fork of the glmnet R package which has a cross validation function cv.glmnet. This function calls the core "glmnet" function multiple times on different data sets. Currently, it runs ...
-3
votes
2answers
525 views

GWT Java benchmarks, running the same code in JavaSE vs GWT+browsers [closed]

I have posted GWT (Google Web Toolkit) java benchmarks results here http://thegoodcodeinn.blogspot.it/2013/02/gwt-benchmarks-gwtjsvm-vs-javavm.html . These benchmarks are about executing the same Java ...
0
votes
2answers
47 views

New to linux server, about execute binaries with possibly different versions of MPI

I wrote and compilied some binaries and uploaded them to a linux server that operating on a remote supercomputer through SSH, if the binaries were compiled with, lets say, Intel's MPI libaries, but ...

1 2 3 4 5