Tagged Questions

High Performance Computing (HPC) refers to the use of supercomputers and computer clusters to solve a wide range of computationally intensive problems. Systems with benchmark performance of 10s of teraflops are usually considered to be supercomputers.

learn more… | top users | synonyms

20
votes
11answers
2k views

Scalable / Parallel Large Graph Analysis Library?

I am looking for good recommendations for scalable and/or parallel large graph analysis libraries in various languages. The problems I am working on involve significant computational analysis of ...
16
votes
9answers
3k views

Have you successfully used a GPGPU?

I am interested to know whether anyone has written an application that takes advantage of a GPGPU by using, for example, nVidia CUDA. If so, what issues did you find and what performance gains did ...
11
votes
2answers
329 views

Enumerating combinations in a distributed manner

I have a problem where I must analyse 500C5 combinations (255244687600) of something. Distributing it over a 10 node cluster where each cluster processes roughly 10^6 combinations per second means the ...
11
votes
14answers
538 views

How to manipulate *huge* amounts of data

I'm having the following problem. I need to store huge amounts of information (~32 GB) and be able to manipulate it as fast as possible. I'm wondering what's the best way to do it (combinations of ...
9
votes
7answers
560 views

F# as a HPC language

I develop a Lattice Boltzmann (Fluid dynamics) code using F#. I am now testing the code on a 24 cores, 128 GB memory server. The code basically consists of one main recursive function for time ...
9
votes
3answers
3k views

Intel MKL vs. AMD Math Core Library

Does anybody have experience programming for both the Intel Math Kernel Library and the AMD Math Core Library? I'm building a personal computer for high performance statistical computations and am ...
9
votes
2answers
409 views

Log files in massively distributed systems

I do a lot of work in the grid and HPC space and one of the biggest challenges we have with a system distributed across hundreds (or in some case thousands) of servers is analysing the log files. ...
7
votes
3answers
149 views

Strict load balancing of multiple .NET processes

I have a multi-process .NET (F#) scientific simulation running on Windows Server 2008 SE and 64 processors. Each time step of the simulation oscillates from 1.5 sec to 2 sec. As each process must wait ...
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 ...
7
votes
1answer
276 views

Large-scale pseudoinverse

I would like to compute the Moore–Penrose pseudoinverse of an enormous matrix. Ideally, I would like to do it on a matrix that has 23 million rows and 1000 columns, but if necessary I can reduce the ...
7
votes
4answers
484 views

HPC (mainly on Java)

I'm looking for some way of using the number-crunching ability of a GPU (with Java perhaps?) in addition to using the multiple cores that the target machine has. I will be working on implementing (at ...
7
votes
2answers
221 views

Using many mutex locks

I have a large tree structure on which several threads are working at the same time. Ideally, I would like to have an individual mutex lock for each cell. I looked at the definition of ...
6
votes
8answers
448 views

Please recommend an alternative to Microsoft HPC

We aim to implement a distributed system on a cluster, which will perform resource-consuming image-based computing with heavy storage I/O, having following characteristics: There is a dedicated ...
6
votes
5answers
401 views

When is a program limited by the memory bandwidth?

I want to know if a program that I am using and which requires a lot of memory is limited by the memory bandwidth. When do you expect this to happen? Did it ever happen to you in a real-life ...
6
votes
4answers
801 views

C++ programming for clusters and HPC

I need to write a scientific application in C++ doing a lot of computations and using a lot of memory. I have part of the job but due to high requirements in terms of resources I was thinking to ...
5
votes
3answers
6k views

MPICH vs OpenMPI

Can someone elaborate the differences between the OpenMPI and MPICH implementations of MPI ? Which of the two is a better implementation ?
4
votes
4answers
162 views

What's the difference between code written for a desktop machine and a supercomputer?

Hypothetically speaking, if my scientific work was leading toward the development of functions/modules/subroutines (on a desktop), what would I need to know to incorporate it into a large-scale ...
4
votes
1answer
152 views

Boost::Intrusive for HPC

How good is boost::intrusive library for high performance computing? I want to use a container for a non-copyable non-assignable class. I was planning to use normal STL with shared_ptr. I found out ...
4
votes
1answer
76 views

Do Bluegene systems support ltdl or any other kind of dlopen() support?

so I have some code that uses dlopen for loading libraries, and I want it to work on a bluegene system, but I don't have a bluegene to test things on, and I've never directly worked with one. Does ...
4
votes
2answers
897 views

.net 4.0 Task Parallel Library vs. MPI.NET

Does .net 4.0 Task Parallel Library replace MPI.NET for High-performace computings? MPI.NET found here http://www.osl.iu.edu/research/mpi.net/svn/ is a high-performance, easy-to-use implementation of ...
4
votes
1answer
807 views

SunGridEngine, Condor, Torque as Resource Managers for PVM

Anyone have any idea which Resource manager is good for PVM? Or should I not have used PVM and instead relied on MPI (or any version of it, such as MPICH-2 [are there any other ones that are ...
4
votes
3answers
2k views

CUDA, OpenCL, PGI, etc… but what happened to GLSL and Cg?

CUDA, OpenCL, and the GPU options offered by the Portland Group are intriguing... Results are impresive (125-times speedup for some groups). It sounds like the next wave of GPGPU tools are poised to ...
3
votes
3answers
113 views

High Performance Computing Terminology: What's a GF/s? [closed]

I'm reading this Dr Dobb's Article on CUDA In my system, the global memory bandwidth is slightly over 60 GB/s. This is excellent until you consider that this bandwidth must service 128 ...
3
votes
2answers
320 views

Multiple levels of parallelism using OpenMP - Possible? Smart? Practical?

I am currently working on a C++ sparse matrix/math/iterative solver library, for a simulation tool I manage. I would have preferred to use an existing package, however, after extensive investigation, ...
3
votes
2answers
354 views

Is the PVM (parallel virtual machine) library widely used in HPC?

Has everyone migrated to MPI (message passing interface) or is PVM still widely used in supercomputers and HPC?
3
votes
3answers
215 views

Can I emulate MS Compute Cluster Server on my dev machine?

I have a project for a client that will consist of managing jobs on a MS Compute Cluster. I will be developing the application outside of their network, and would like a way to develop/debug my app ...
2
votes
2answers
357 views

what is the difference between a NVIDIA Quadro 6000 and Tesla C2075 graphic cards?

I am looking into GPU computing and I can't figure out what the technical / performance differences are between a NVIDIA Quadro 6000 and a NVIDIA Tesla C2075 graphics card. They both have 6GB of RAM ...
2
votes
2answers
80 views

When not to use MPI

This is not a question on specific technical coding aspect of MPI. I am NEW to MPI, and not wanting to make a fool of myself of using the library in a wrong way, thus posting the question here. As ...
2
votes
3answers
222 views

OpenCL code runs faster on MBP than on NVIDIA GTX 480

I'm I have come across a strange problem. I'm implementing some linear algebra, only matrix multiplications so far, in OpenCL, and have been testing this on my laptop. The code is really simple: ...
2
votes
1answer
82 views

MS Compute Cluster 2003 Command line - Powershell WMI

I have a compute cluster installation with one headnode and multiple compute nodes. This is shared between multiple environments. I run into issues when there are unattended build upgrades. Robocopy ...
2
votes
1answer
161 views

Windows HPC and Azure

My company is testing/comparing various grid+cloud alternatives to perform scientific calculation. I have read the interesting white paper on the HPC/Azure topic by David Chappell, which is excellent ...
2
votes
2answers
90 views

Is it possible to use OpenMP directives in multiple files in a program?

I've got a C program which consists of multiple .c files and multiple .h files. I'd like to have one #pragma omp parallel directive (so that all of the threads are only created once) in the main ...
2
votes
1answer
210 views

Can you transpose array when sending using MPI_Type_create_subarray?

I'm trying to transpose a matrix using MPI in C. Each process has a square submatrix, and I want to send that to the right process (the 'opposite' one on the grid), transposing it as part of the ...
2
votes
2answers
167 views

Condor job using DAG with some jobs needing to run the same host

I have a computation task which is split in several individual program executions, with dependencies. I'm using Condor 7 as task scheduler (with the Vanilla Universe, due do constraints on the ...
2
votes
3answers
536 views

PVM terminates after Adding Host

On Ubuntu 9.10 using PVM 3.4.5-12 (the PVM package when you use apt-get) The program terminates after adding a host. laptop> pvm pvm> add bowtie-slave add bowtie-slave terminated laptop> ...
2
votes
1answer
377 views

MPI , Sungrid vs JPPF?

I have a little experience with SungridEngine and MPI (using OpenMPI). Whats the different between these frameworks/API and JPPF?
2
votes
8answers
2k views

Rent A Cluster

I am wondering if there are clusters available to rent. Scenario: We have a program that will take what we estimate a week to run(after optimization) on a given file. Quite possibly, longer. ...
2
votes
4answers
3k views

What are the advantages and disadvantages of GPGPU (general-purpose GPU) development?

I am wondering what is the key thing that helps you in GPGPU development and of course what is the constraints that you find unacceptable. Comes to mind for me: Key advantage: the raw power of ...
1
vote
1answer
62 views

ICC, GCC and OpenMP

I am launching a given problem that parallelizates by means of OpenMP. It runs a given number of iterations of the same piece of code that processes a volume of data. Is in that level where OpenMP is ...
1
vote
3answers
96 views

High performance computing projects using Python [closed]

For a paper I want to argue why I have used Python for the implementation of my algorithm. Besides the typical arguments that it is fast -using suitable libraries- and it is easy to implement the ...
1
vote
0answers
112 views

Is FORTRAN to HPC as Assembly Language/C is to Operating Systems? [closed]

I am working on High Performance Computing for quiet some time now and have been regularly using various C++ Libraries like Boost uBLAS, MTL4 etc for my work. And I have been wondering about the ...
1
vote
1answer
57 views

Does CentOS support Condor?

I plan to make HPC cluster using Condor as middle-ware. Is CentOS a good choice to be the OS I mean does it support condor and is there any tutorial which could be helpful in installation process? ...
1
vote
1answer
74 views

HPC + Oracle Connections = Recipe for disaster?

I am running a Java application on a HPC (High Performance Computing) cluster. The application makes a JDBC thin connection through to an Oracle 11.2.0 database. Given that this is on a cluster, a ...
1
vote
1answer
80 views

MPI how to send and receive unknown datatypes

We have developed an algorithm library in C++ which allows the user to implement his own datatypes for sharing data between individual algorithms (also implemented by the user). This works fine, but ...
1
vote
3answers
154 views

Tips and tricks on improving Fortran code performance [closed]

As part of my Ph.D. research, I am working on development of numerical models of atmosphere and ocean circulation. These involve numerically solving systems of PDE's on the order of ~10^6 grid points, ...
1
vote
2answers
86 views

C# event subscription limits for single threaded programs

I'm attempting to monitor the status of many HPC jobs running in parallel in a single threaded program, I'm subscribing to events raised by OnJobState and when monitoring as few as three jobs event ...
1
vote
2answers
45 views

Hadoop node & core allocation strategy

I have a cluster with 50 nodes and each node has 8 cores for computation. If I have job to which I'm planning to impose 200 reducers, what would be good computational resource allocation strategy for ...
1
vote
1answer
50 views

App Fabric capable of caching files or just database queries?

I have a function that resides on each of our nodes. The function requires access to a folder path for accessing files (not a database). Currently, I synchronize the folders on each of the nodes so ...
1
vote
1answer
100 views

how can Python see 12 cpus on a cluster where I got allocated 4 cores by LSF?

I access a Linux cluster where resources are allocated using LSF, which I think is a common tool and comes from Scali (http://www.scali.com/workload-management/high-performance-computing). In an ...
1
vote
1answer
130 views

How to successfully compile mpi4py using MS HPC Server 2008 R2's MPI stack?

So the story goes: I need a MPI wrapper for Python. I know there's mpi4py. For the current work I (mostly) use Python and Windows, I'd like to use the Microsoft HPC Cluster Pack, having access to a ...

1 2 3