Posts

The Chernobyl accident of Cloud Computing

    When introducing Cloud Computing (CC) people usually like to emphasize the similarities between Electric Power Grids (EPG) and CC.     These analogies include: On demand service, Pay-Per-Use (PPU) model, the Elasticity of the resources, load balancing and even water cooling,     After the Amazon EC2 service disruption on April 21 st , 2011, we can identify more similarities between EPG and CC in disasters related issues. These similarities include: 1. A global damage (with immediate and delayed components). 2. Uncontrolled behavior of the resources (neutron population vs. loss of connectivity or fuel rods meltdown vs. failing servers). 3. During the crisis, similar announcements to the public which minimize the catastrophe. 4. After the crisis, publication of the event investigation in length. 5. Loss of confidence in the technology by the users.

e-Science: Are we there yet?

Image
Distinguished lecture, Prof. David Abramson   You are invited to attend! Guy

Supercomputing trends: Peta mug vs.Tera mug

Image

GPU & Parallel Computing Workshop

            GPU & Parallel Computing Workshop January 6 th 2011 SagivTech and Microsoft R&D Israel are happy to invite you to a workshop on GPU & Parallel Computing. GPU and parallel computing provide developers a great means for acceleration and speed up of computationally intensive applications. In this workshop some recent work conducted in the Israeli industry and academy will be presented. Moreover, insights regarding recent international conferences in these fields will be given. The workshop will be conducted at Microsoft R&D, Shenkar 13, Herzliya , on Thursday January 6 th , 14-18. This workshop is free of charge, but pre-registration is required. For more details contact: chen@sagivtech.com For registration visit: http://www.sagivtech.com/ 21262.html Time Topic Speaker 13:30-14:00 Gathering 14:00-14:10 Welcome Dr. Avi Mendelson, MSFT Dr. Chen Sagiv, SagivTech 14:10-14...

IGT HPC Work Group Meeting

Image
When: Wednesday, November 24 rd , 2010 Where: IGT Offices, Maskit 4, 5th Floor, Hertzliya. 13:45-14:00: Gathering 14:00-14:10: Opening - Avner & Guy 14:10-15:00: Geomage GPU Cluster - Case Study 15:00-15:15: Coffee Break 15:15-16:00: Impressions from Super Computing 2010 Conference 16:00-16:10: Discussion and concluding remarks Detailed Agenda: 14:10-15:00:   Geomage GPU Cluster - Case Study Speaker: Eyal Hirsch, Senior HPC developer , Geomage Abstract Geomage has been using Tesla line GPUs in production for the last 2 years. The cluster operates at high volumes, in terms of computation power, processing seismic projects around the clock. Presentation will talk about seismic processing and the issues we've encountered from the development stage, QA, multi-GPU all the way to production including a real world case study. 15:00-15:15: Coffee Break 15:15-16:00: Impressions from Super Computing 2010 Conference Speaker: Dr. Guy Tel-Zur – IGT Chairman. Abstract The ...

The state of my cloud as of now

Image
not so good :(

Testing Intel’s Parallel Studio

Image
Part 1 – OpenMP Intel claims to bring simplified “end-to-end parallelism to Microsoft Visual Studio C/C++ developers with Intel® Parallel Studio” [1]. I used a simple OpenMP parallel HelloWorld program to study this new tool which comes as an add-on to Visual Studio 2008.The program listing is enclosed in Figure 1.   1: #include <omp.h> 2: #include <stdio.h> 3: // a function to consume cpu time: 4: void consume() { 5: int i; 6: long n=100000000; 7: double s=0; 8: for (i=1;i<n;i++) 9: s+=( double )1/( double )i; 10: } 11: int main ( int argc, char *argv[]) { 12: int th_id, nthreads=5; 13: omp_set_num_threads(nthreads); 14: #pragma omp parallel private (th_id) 15: { 16: th_id = omp_get_thread_num(); 17: consume(); 18: printf( "Hello World from thread %d\n" , th_id); 19: #pragma omp barrier 20: if ( th_id == 0 ) { 21:...