HPCCommunity.org
 
Register

Go Back   HPC Community - High Performance Computing (HPC) Community > Members List

Bearcat Bearcat is offline

Junior Member

Statistics

Total Posts
Projects
General Information
  • Last Activity: December 2nd, 2008 05:41 PM
  • Join Date: May 2nd, 2008
  • Referrals: 0

Blog

View Bearcat's BlogRecent Entries
Latest Entry

Posted November 20th, 2008 at 12:55 PM Comments 0
Posted in Uncategorized
Today, we'll have a quick look at OpenMP. OpenMP is a set of programming APIs, and compiler pragmas that support multi-platform, shared memory multiprocessing programming in C/C++ and Fortran. The interesting thing about OpenMP, is that it is a very nice simple way to split loops (for, do) into tasks for multi-threading. Our program has a number of "for" loops in it, so that is the obvious avenue to explore for our particular program.

Anyone can get a quick overview of OpenMP...

Posted September 2nd, 2008 at 12:18 PM Comments 0
Posted in Uncategorized
In the previous article about multi-threading, I mentioned that there are 2 options for breaking up the work that needs to be done. Option 1 was to have each thread work on a subset of the portfolio, but do all the experiments. Option 2 was to have each thread work on a subset of the experiments, and to work on all of the portfolio.

Today, we'll look at option 2, and I'll try to explain what was needed in the program to accomplish this task. Option 1 and option 2 programs will look...

Posted August 25th, 2008 at 04:38 PM Comments 0
Posted in Uncategorized
One of the questions I hear a lot is: Is multi-threaded programming difficult?

The answer to that question is: It depends. Not really an answer, but it does depend on a number of factors. The multi-threaded api is fairly simple, so coding a multi-threaded application is easy. What’s difficult depends on your application, what it does, and how the data is used and structured. If your application uses a lot of shared data, which you need to control access to, with semaphores and mutexes,...

Posted August 11th, 2008 at 12:40 PM Comments 2
Posted in Uncategorized
One of the topics I want to cover here, is HPC programming. That includes many things, so I want to look at such things as threading, toolkits such as openMP, graphics processor (GPU) toolkits, and cluster kits, such as MPI, as well as others that crop up from time to time. Learning how to use these toolkits can range from simple to complex. Getting the most out of each toolkit is an exercise for the reader. I will cover some basics about using each one, and run some performance tests to compare...

Posted June 27th, 2008 at 05:26 PM Comments 2
Posted in Uncategorized
High Performance programs, typically do the same thing multiple times with different data, or with different parameters, such as a simulation. Real World applications, such as a program that monitors a port, gets data, processes the data, returns a result, may need to operate on multiple cores as well, but I typically call this type of multi-threading, "concurrency", where your program is doing different things concurrently. This may not be everyone's definition, but I tend to look at...
Recent Comments
Updated the attachments...
Posted August 11th, 2008 at 04:11 PM by Bearcat Bearcat is offline
Hi Leo,

...
Posted August 11th, 2008 at 03:50 PM by mehdi mehdi is offline
Hi Stefan,
...
Posted August 11th, 2008 at 01:21 PM by Bearcat Bearcat is offline
Hi Bearcat,
...
Posted July 2nd, 2008 at 10:15 AM by eilemann eilemann is offline

All times are GMT. The time now is 11:21 PM.


Powered by vBulletin® Version 3.8.0 Release Candidate 1
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.