-- MySQL dump 8.23 -- -- Host: localhost Database: slides --------------------------------------------------------- -- Server version 3.23.58 -- -- Table structure for table `book` -- DROP TABLE IF EXISTS book; CREATE TABLE book ( id_content int(11) NOT NULL default '0', title varchar(255) default NULL, text1 text, text2 text, PRIMARY KEY (id_content) ) TYPE=MyISAM; -- -- Dumping data for table `book` -- INSERT INTO book VALUES (110,'Электронный учебник','',''); INSERT INTO book VALUES
The Octotron Approach: Towards Autonomous and Reliable Operation of Supercomputers Alexander Antonov, Dmitry Nikitenko, Pavel Shvets, Sergey Sobolev, Konstantin Stefanov, Vadim Voevodin, Vladimir Voevodin, Sergey ... @parallel.ru Research Computing Center, M.V.Lomonosov Moscow State University, Moscow, Russia Project Goals · to discover all types of failures in supercomputers as well as their root causes and relationships; · to react automatically to any ... Model-based Approach Benefits 1. ...
[
Текст
]
Ссылки http://hpc.msu.ru/files/HPC/ISC_2015_Posters_submission_14.pdf -- 572.0 Кб -- 07.07.2015 Похожие документы
... 9 , 2010 MPI/OpenMP 60 1 2 3 ( PARALLEL) #pragma omp parallel [ [ [, ] ] ...] : default(shared | ... include stdio.h int main () { int n =100000, i; double pi, h, sum , x; h = 1.0 / ( double ) n; sum = 0.0; for (i = 1; i = n; i ++) { x = h * (( double )i - 0.5); sum += (4.0 / (1.0 + x*x)); } pi = h * sum ; printf( pi is approximately %.16f , pi); return 0; } 9 , 2010 MPI / OpenMP 84 1 2 3 OpenMP int main () { int n =100, i; double pi, h, sum , x; h = 1.0 / ( double ) n; ...
[
Текст
]
Ссылки http://angel.cmc.msu.ru/~basrav/supercomp2010/Lecture_20100309.pdf -- 777.5 Кб -- 23.03.2010 Похожие документы