「CSC」を含む日記 RSS

はてなキーワード: CSCとは

2022-12-21

anond:20221221101902

sincosが便利な性質から三角関数代表になるのはわかるんだが、tan必要

というより

tanは何故sincosに次いで代表っぽくなっているのか?三角関数は他にseccsc、cotがあるのに

という疑問の方が芯を食っているのではないだろうか

2012-08-13

C#基礎文法最速マスター

1. 基礎
classの作成

プログラムclass記述します。たとえばSampleという名前classを作る場合、Sample.csファイル内に次のように書きます。(C#場合ファイル名とクラス名は同一でなくても良い。複数のクラスを書いても良い)

public class Sample {

}
Mainメソッドの作成

プログラムclass内のMainメソッドの先頭から実行されます。Mainメソッドは次のように書きます

public class Sample {

    public static void Main( String[] args ) {
         // 処理を書く
     }

}
Console.WriteLineメソッド

文字列を表字するメソッドです。

Console.WriteLine( "Hello world" );
コメント

コメントです。

// 一行コメント

/*
   複数行コメント
 */
変数の宣言

変数の宣言です。変数の宣言時にはデータ型を指定します。

// 変数
int num;
データ型

データ型です。C#データ型には値型と参照型とがあります。以下は値型のデータ型です。

// int(整数)型
int num;
// char(文字)型
char c;
// float(単精度浮動小数点)型
float val;
// double(倍精度浮動小数点)型
double val;
// bool(論理)型
bool flag;
// DateTime(日付)型
DateTime date;

以下は参照型のデータ型です。

// StringString s;
// 配列String[] array;
プログラムのコンパイル

プログラムコンパイルするには、コマンドラインで以下のようにします。

csc Sample.cs
プログラムの実行

プログラムを実行するには、コマンドラインで以下のようにします。

.net framework on Windows場合

Sample.exe

Mono.frameworkの場合

mono ./Sample.exe
2. 数値
数値の表現

int、float、double型の変数に数値を代入できます。int型には整数だけ代入できます。float、double型には整数でも小数でも代入できます

int i = 2;
int i = 100000000;

float num = 1.234f;

double num = 1.234;
四則演算

四則演算です。

num = 1 + 1;
num = 1 - 1;
num = 1 * 2;
num = 1 / 2;

商の求め方です。割る数と割られる数が両方とも整数場合計算結果の小数点以下が切り捨てられます

num = 1 / 2;  // 0

割る数と割られる数のどちらかが小数場合計算結果の小数点以下が切り捨てられません。

num = 1.0 / 2;    // 0.5
num = 1 / 2.0;    // 0.5
num = 1.0 / 2.0;  // 0.5

余りの求め方です。

// 余り
mod = 4 % 2
インクリメントとデクリメント

インクリメントとデクリメントです。

// インクリメント
 ++i;

// デクリメント
 --i;
3. 文字列
文字列の表現

文字列ダブルクォートで囲みます

String str = "abc";
文字列操作

各種文字列操作です。

// 結合
String join = "aaa" + "bbb";

// 分割
String[] record = "aaa,bbb,ccc".Split( "," );

// 長さ
int length = "abcdef".Length();

// 切り出し
"abcd".Substring( 0, 2 )   // abc

// 検索
int result = "abcd".IndexOf( "cd" ) // 見つかった場合はその位置、見つからなかった場合は-1が返る
4. 配列
配列変数の宣言

配列です。

// 配列の宣言
int[] array;
配列の生成

配列の生成です。配列の生成時には要素数を指定するか、初期データを指定します。

int[] array;

// 要素数を指定して配列を生成
array = new int[5];

// 初期データを指定して配列を生成
array = new int[] { 1, 2, 3 };

// 宣言と同時に配列を生成
int[] array2 = new int[5];
配列の要素の参照と代入

配列の要素の参照と代入です。

// 要素の参照
array[0]
array[1]

// 要素の代入
array[0] = 1;
array[1] = 2;
配列の要素数

配列の要素数を取得するには以下のようにします。

array_num = array.Length;
配列のコピー

配列の要素を別の配列コピーするには以下のようにします。

int[] from = new int[] { 1, 2, 3 };
int[] to = new int[5];

from.CopyTo(to, 0);
5. 制御文
if文

if文です。

if ( 条件 )
{

}
if ~ else文

if ~ else文です。

if ( 条件 )
{

}
else
{

}
if ~ else if 文

if ~ else if文です。

if ( 条件 )
{

}
else if ( 条件 )
{

}
while文

while文です。

int i = 0;
while ( i < 5 )
{
    
    // 処理
    
    ++i;
}
for文

for文です。

for ( int i = 0; i < 5; ++i )
{
    // 処理
}
for-each文

for-each文です。配列の各要素を処理できます

int[] fields = new int[] { 1, 2, 3 };

foreach (int field in fields)
{
    // 処理
}
6. メソッド

C#では関数メソッドと言いますメソッドを作るには次のようにします。戻り値を返却するにはreturn文を使います

static int sum( int num1, int num2 )
{
    int total;

    total = num1 + num2;

    return total;
}
9. ファイル入出力

ファイル入出力です。ファイル入出力を行うには、プログラムの先頭に以下を記述します。

using System.IO;

以下がファイル入力の雛形になりますファイルオープンや読み込みに失敗した場合catch節に処理が移ります

String filename = "text.txt";
StreamReader reader = null;
try
{
    reader = new StreamReader(filename);

    String line;
    while ((line = reader.ReadLine()) != null)
    {

    }

}
catch (IOException e)
{
    // エラー処理:

}
finally
{
    if (reader != null)
    {
        try
        {
            reader.Close();
        }
        catch (IOException e) { }
    }
}

またはC#ではusing ステートメントと言うものがあり、この様にも書ける

String filename = "text.txt";
using (StreamReader reader = new StreamReader(filename))
{
    try
    {

        String line;
        while ((line = reader.ReadLine()) != null)
        {
            // 読み込んだ行を処理
        }

    }
    catch (IOException e)
    {
        // エラー処理:

    }
}

usingをつかうとCloseがなくなったことからわかるようにusing(){}を抜けるとき自動的にDisposeメソッドを呼び出し、オブジェクトを廃棄する。その分コードスッキリするが、使いにくい場面もあるので考えて使うこと。

以下がファイル出力の雛形になりますファイルオープンや書き込みに失敗した場合catch節に処理が移ります

String filename = "text.txt";
StreamWriter writer = null;

try
{
    writer = new StreamWriter(filename));

    writer.WriteLine("abc");
    writer.WriteLine("def");
    writer.WriteLine("fgh");

}
catch (IOException e)
{
    // エラー処理:

}
finally
{
    if (writer != null)
    {
        writer.Close();
    }
}

こちらもusingを使って書ける。が、割愛する。

知っておいたほうがよい文法

C#でよく出てくる知っておいたほうがよい文法の一覧です。

繰り返し文の途中で抜ける

繰り返し文の途中で抜けるにはbreak文を使用します。

for ( i = 0; i < 5; ++i ) {

    if ( 条件 ) {
        break;    // 条件を満たす場合、for文を抜ける。
    }

}
繰り返しの残り部分の処理をスキップする

残りの部分処理をスキップし、次の繰り返しに進むにはcontinue文を使用します。

for ( i = 0; i < 5; ++i ) {

    if ( 条件 ) {
        continue;    // 条件を満たす場合、残りの部分処理をスキップし、次の繰り返しに進む。
    }

}
例外処理

例外を投げるにはthrow文を使用します。

throw new Exception( "Error messsage" );

例外処理をするにはtrycatch文を使用します。

try {

    // 例外が発生する可能性のある処理

} catch ( Exception e ) {

    // 例外発生時の処理

}

2010-10-23

一番いい斉藤のり子

http://anond.hatelabo.jp/20101016001044

746 :dropdb:2008/08/25(月) 23:09:50 ID:QKiHbSS+0

2ちゃんねるに何かあると聞いてすっ飛んできました。

てめぇら人の顔とかデブ発言とかいい加減にしろよな。

744“「女」って自分容姿自意識過剰だよな”、だと?だからなんだ?

でっていう?人様、そして自分ののツラ構えに優越感もクソもあるか。

書ききれないので記事にした。これを読んで満足したらしょんべんしてねろ!

http://d.hatena.ne.jp/dropdb/20070118/p4

765 :名無しさん@ゴーゴーゴーゴー!:2008/08/26(火) 01:03:54 ID:dyYBPKJd0

本人かよwwwクソワロタwwwナイスデブwwww(SQL的な意味

766 :名無しさん@ゴーゴーゴーゴー!:2008/08/26(火) 01:21:26 ID:o/Vj1JD70

さすが中卒。さすが元ヒキニート。芳ばしさが違うwwwぶよぶよメタボ体型のこと気にしてたのかww

それより染色体の千切れた出目金みたいなツラをどうにかしろよwwwww笑えるwwww

16 :dropdb:2008/05/11(日) 17:10:31 ID:Em6YBCJB0

大漁でした。わたしも釣れてるんだけど、ここにエサがあったから。

21 :名無しさん総合案内で板設定変更の議論中:2008/05/11(日) 17:39:37 ID:Em6YBCJB0

なぐれよwほら 私のブログひらいたディスプレイなぐれw

241 :斉藤のり子[123abc@csc.jp]:10/08/20 17:36 HOST:nwproxy11.nw.ccc.co.jp

対象区分:[個人・三種]優先削除あり

削除対象アドレスhttp://kamome.2ch.net/test/read.cgi/net/1279794454/98

http://kamome.2ch.net/test/read.cgi/net/1279794454/96

http://kamome.2ch.net/test/read.cgi/net/1279794454/95

http://kamome.2ch.net/test/read.cgi/net/1279794454/94

http://kamome.2ch.net/test/read.cgi/net/1279794454/85

http://kamome.2ch.net/test/read.cgi/net/1279794454/82

削除理由・詳細・その他: ガイドライン抵触【個人名・三種】【私生活情報】【連続投稿

これらには本名と利用サービス中のアカウント

ニックネームが公開され、個人が特定できる状態。

また、第三者の確認できないプライベート情報

記入されており、それらは事実無根誹謗中傷

106 :dropdb ◆7HgcmcULOE :2010/08/21(土) 14:07:33 ID:QIAH/KY7P

>>105 家じゃ規制されてるもんで。あと会社の人は知ってるよ。

会社にjituzonが電話かけたというので業務に支障来たすなら削除依頼だしとけば、と。

ちなみにご飯食べに行く前で、それはタイムカード切った後の書き込み。これ豆知識な。

108 :名無しさん@ゴーゴーゴーゴー!:2010/08/21(土) 15:27:35 ID:mIoGojHBP

ここの会社って2ちゃんねるの閲覧・書き込みが

規制されていたと思ったけど、復活したのかね?

あとタイムカード切ったとかって上のほうでかいてあるけど

いかにも社外の人の表現方法だね

118 :dropdb ◆7HgcmcULOE:2010/08/23(月) 09:12:25 ID:bNxAiUZFP

私みたいな一般社員ごときで会社の評判は落ちないよ。

むしろ、インターネットに寛容で社員の状況を理解したうえで

よい判断をしてもらったと思ってるよ。



しかしブクマに[次の転職先]タグがあるところを見るとCCCは辞めさせられたようだ。

http://b.hatena.ne.jp/webkit/

次の転職先はNetflixか。

2009-11-14

Top500

Rank Site Computer/Year Vendor Cores Rmax Rpeak Power1 DOE/NNSA/LANL

United States Roadrunner - BladeCenter QS22/LS21 Cluster, PowerXCell 8i 3.2 Ghz / Opteron DC 1.8 GHz, Voltaire Infiniband / 2008

IBM 129600 1105.00 1456.70 2483.47

2 Oak Ridge National Laboratory

United States Jaguar - Cray XT5 QC 2.3 GHz / 2008

Cray Inc. 150152 1059.00 1381.40 6950.60

3 Forschungszentrum Juelich (FZJ)

Germany JUGENE - Blue Gene/P Solution / 2009

IBM 294912 825.50 1002.70 2268.00

4 NASA/Ames Research Center/NAS

United States Pleiades - SGI Altix ICE 8200EX, Xeon QC 3.0/2.66 GHz / 2008

SGI 51200 487.01 608.83 2090.00

5 DOE/NNSA/LLNL

United States BlueGene/L - eServer Blue Gene Solution / 2007

IBM 212992 478.20 596.38 2329.60

6 National Institute for Computational Sciences/University of Tennessee

United States Kraken XT5 - Cray XT5 QC 2.3 GHz / 2008

Cray Inc. 66000 463.30 607.20

7 Argonne National Laboratory

United States Blue Gene/P Solution / 2007

IBM 163840 458.61 557.06 1260.00

8 Texas Advanced Computing Center/Univ. of Texas

United States Ranger - SunBlade x6420, Opteron QC 2.3 Ghz, Infiniband / 2008

Sun Microsystems 62976 433.20 579.38 2000.00

9 DOE/NNSA/LLNL

United States Dawn - Blue Gene/P Solution / 2009

IBM 147456 415.70 501.35 1134.00

10 Forschungszentrum Juelich (FZJ)

Germany JUROPA - Sun Constellation, NovaScale R422-E2, Intel Xeon X5570, 2.93 GHz, Sun M9/Mellanox QDR Infiniband/Partec Parastation / 2009

Bull SA 26304 274.80 308.28 1549.00

11 NERSC/LBNL

United States Franklin - Cray XT4 QuadCore 2.3 GHz / 2008

Cray Inc. 38642 266.30 355.51 1150.00

12 Oak Ridge National Laboratory

United States Jaguar - Cray XT4 QuadCore 2.1 GHz / 2008

Cray Inc. 30976 205.00 260.20 1580.71

13 NNSA/Sandia National Laboratories

United States Red Storm - Sandia/ Cray Red Storm, XT3/4, 2.4/2.2 GHz dual/quad core / 2008

Cray Inc. 38208 204.20 284.00 2506.00

14 King Abdullah University of Science and Technology

Saudia Arabia Shaheen - Blue Gene/P Solution / 2009

IBM 65536 185.17 222.82 504.00

15 Shanghai Supercomputer Center

China Magic Cube - Dawning 5000A, QC Opteron 1.9 Ghz, Infiniband, Windows HPC 2008 / 2008

Dawning 30720 180.60 233.47

16 SciNet/University of Toronto

Canada GPC - iDataPlex, Xeon E55xx QC 2.53 GHz, GigE / 2009

IBM 30240 168.60 306.03 869.40

17 New Mexico Computing Applications Center (NMCAC)

United States Encanto - SGI Altix ICE 8200, Xeon quad core 3.0 GHz / 2007

SGI 14336 133.20 172.03 861.63

18 Computational Research Laboratories, TATA SONS

India EKA - Cluster Platform 3000 BL460c, Xeon 53xx 3GHz, Infiniband / 2008

Hewlett-Packard 14384 132.80 172.61 786.00

19 Lawrence Livermore National Laboratory

United States Juno - Appro XtremeServer 1143H, Opteron QC 2.2Ghz, Infiniband / 2008

Appro International 18224 131.60 162.20

20 Grand Equipement National de Calcul Intensif - Centre Informatique National de l'Enseignement Supérieur (GENCI-CINES)

France Jade - SGI Altix ICE 8200EX, Xeon quad core 3.0 GHz / 2008

SGI 12288 128.40 146.74 608.18

21 National Institute for Computational Sciences/University of Tennessee

United States Athena - Cray XT4 QuadCore 2.3 GHz / 2008

Cray Inc. 17956 125.13 165.20 888.82

22 Japan Agency for Marine -Earth Science and Technology

Japan Earth Simulator - Earth Simulator / 2009

NEC 1280 122.40 131.07

23 Swiss Scientific Computing Center (CSCS)

Switzerland Monte Rosa - Cray XT5 QC 2.4 GHz / 2009

Cray Inc. 14740 117.60 141.50

24 IDRIS

France Blue Gene/P Solution / 2008

IBM 40960 116.01 139.26 315.00

25 ECMWF

United Kingdom Power 575, p6 4.7 GHz, Infiniband / 2009

IBM 8320 115.90 156.42 1329.70

26 ECMWF

United Kingdom Power 575, p6 4.7 GHz, Infiniband / 2008

IBM 8320 115.90 156.42 1329.70

27 DKRZ - Deutsches Klimarechenzentrum

Germany Power 575, p6 4.7 GHz, Infiniband / 2008

IBM 8064 115.90 151.60 1288.69

28 JAXA

Japan Fujitsu FX1, Quadcore SPARC64 VII 2.52 GHz, Infiniband DDR / 2009

Fujitsu 12032 110.60 121.28

29 Total Exploration Production

France SGI Altix ICE 8200EX, Xeon quad core 3.0 GHz / 2008

SGI 10240 106.10 122.88 442.00

30 Government Agency

Sweden Cluster Platform 3000 BL460c, Xeon 53xx 2.66GHz, Infiniband / 2007

Hewlett-Packard 13728 102.80 146.43

31 Computer Network Information Center, Chinese Academy of Science

China DeepComp 7000, HS21/x3950 Cluster, Xeon QC HT 3 GHz/2.93 GHz, Infiniband / 2008

Lenovo 12216 102.80 145.97

32 Lawrence Livermore National Laboratory

United States Hera - Appro Xtreme-X3 Server - Quad Opteron Quad Core 2.3 GHz, Infiniband / 2009

Appro International 13552 102.20 127.20

33 Max-Planck-Gesellschaft MPI/IPP

Germany VIP - Power 575, p6 4.7 GHz, Infiniband / 2008

IBM 6720 98.24 126.34 1073.99

34 Pacific Northwest National Laboratory

United States Chinook - Cluster Platform 4000 DL185G5, Opteron QC 2.2 GHz, Infiniband DDR / 2008

Hewlett-Packard 18176 97.07 159.95

35 IT Service Provider

Germany Cluster Platform 3000 BL2x220, E54xx 3.0 Ghz, Infiniband / 2009

Hewlett-Packard 10240 94.74 122.88

36 EDF R&D

France Frontier2 BG/L - Blue Gene/P Solution / 2008

IBM 32768 92.96 111.41 252.00

37 IBM Thomas J. Watson Research Center

United States BGW - eServer Blue Gene Solution / 2005

IBM 40960 91.29 114.69 448.00

38 Commissariat a l'Energie Atomique (CEA)/CCRT

France CEA-CCRT-Titane - BULL Novascale R422-E2 / 2009

Bull SA 8576 91.19 100.51

39 Naval Oceanographic Office - NAVO MSRC

United States Cray XT5 QC 2.3 GHz / 2008

Cray Inc. 12733 90.84 117.13 588.90

40 Institute of Physical and Chemical Res. (RIKEN)

Japan PRIMERGY RX200S5 Cluster, Xeon X5570 2.93GHz, Infiniband DDR / 2009

Fujitsu 8256 87.89 96.76

41 GSIC Center, Tokyo Institute of Technology

Japan TSUBAME Grid Cluster with CompView TSUBASA - Sun Fire x4600/x6250, Opteron 2.4/2.6 GHz, Xeon E5440 2.833 GHz, ClearSpeed CSX600, nVidia GT200; Voltaire Infiniband / 2009

NEC/Sun 31024 87.01 163.19 1103.00

42 Information Technology Center, The University of Tokyo

Japan T2K Open Supercomputer (Todai Combined Cluster) - Hitachi Cluster Opteron QC 2.3 GHz, Myrinet 10G / 2008

Hitachi 12288 82.98 113.05 638.60

43 HLRN at Universitaet Hannover / RRZN

Germany SGI Altix ICE 8200EX, Xeon X5570 quad core 2.93 GHz / 2009

SGI 7680 82.57 90.01

44 HLRN at ZIB/Konrad Zuse-Zentrum fuer Informationstechnik

Germany SGI Altix ICE 8200EX, Xeon X5570 quad core 2.93 GHz / 2009

SGI 7680 82.57 90.01

45 Stony Brook/BNL, New York Center for Computational Sciences

United States New York Blue - eServer Blue Gene Solution / 2007

IBM 36864 82.16 103.22 403.20

46 CINECA

Italy Power 575, p6 4.7 GHz, Infiniband / 2009

IBM 5376 78.68 101.07 859.19

47 Center for Computational Sciences, University of Tsukuba

Japan T2K Open Supercomputer - Appro Xtreme-X3 Server - Quad Opteron Quad Core 2.3 GHz, Infiniband / 2009

Appro International 10368 77.28 95.39 671.80

48 US Army Research Laboratory (ARL)

United States Cray XT5 QC 2.3 GHz / 2008

Cray Inc. 10400 76.80 95.68 481.00

49 CSC (Center for Scientific Computing)

Finland Cray XT5/XT4 QC 2.3 GHz / 2009

Cray Inc. 10864 76.51 102.00 520.80

50 DOE/NNSA/LLNL

United States ASC Purple - eServer pSeries p5 575 1.9 GHz / 2006

IBM 12208 75.76 92.78 1992.96

51 National Centers for Environment Prediction

United States Power 575, p6 4.7 GHz, Infiniband / 2008

IBM 4992 73.06 93.85 797.82

52 Rensselaer Polytechnic Institute, Computational Center for Nanotechnology Innovations

United States eServer Blue Gene Solution / 2007

IBM 32768 73.03 91.75 358.40

53 Naval Oceanographic Office - NAVO MSRC

United States Power 575, p6 4.7 GHz, Infiniband / 2008

IBM 4896 71.66 92.04 782.48

54 Joint Supercomputer Center

Russia MVS-100K - Cluster Platform 3000 BL460c/BL2x220, Xeon 54xx 3 Ghz, Infiniband / 2008

Hewlett-Packard 7920 71.28 95.04 327.00

55 US Army Research Laboratory (ARL)

United States SGI Altix ICE 8200 Enhanced LX, Xeon X5560 quad core 2.8 GHz / 2009

SGI 6656 70.00 74.55

56 NCSA

United States Abe - PowerEdge 1955, 2.33 GHz, Infiniband, Windows Server 2008/Red Hat Enterprise Linux 4 / 2007

Dell 9600 68.48 89.59

57 Cray Inc.

United States Shark - Cray XT5 QC 2.4 GHz / 2009

Cray Inc. 8576 67.76 82.33

58 NASA/Ames Research Center/NAS

United States Columbia - SGI Altix 1.5/1.6/1.66 GHz, Voltaire Infiniband / 2008

SGI 13824 66.57 82.94

59 University of Minnesota/Supercomputing Institute

United States Cluster Platform 3000 BL280c G6, Xeon X55xx 2.8Ghz, Infiniband / 2009

Hewlett-Packard 8048 64.00 90.14

60 Barcelona Supercomputing Center

Spain MareNostrum - BladeCenter JS21 Cluster, PPC 970, 2.3 GHz, Myrinet / 2006

IBM 10240 63.83 94.21

61 DOE/NNSA/LANL

United States Cerrillos - BladeCenter QS22/LS21 Cluster, PowerXCell 8i 3.2 Ghz / Opteron DC 1.8 GHz, Infiniband / 2008

IBM 7200 63.25 80.93 138.00

62 IBM Poughkeepsie Benchmarking Center

United States BladeCenter QS22/LS21 Cluster, PowerXCell 8i 3.2 Ghz / Opteron DC 1.8 GHz, Infiniband / 2008

IBM 7200 63.25 80.93 138.00

63 National Centers for Environment Prediction

United States Power 575, p6 4.7 GHz, Infiniband / 2009

IBM 4224 61.82 79.41 675.08

64 NCAR (National Center for Atmospheric Research)

United States bluefire - Power 575, p6 4.7 GHz, Infiniband / 2008

IBM 4064 59.68 76.40 649.51

65 National Institute for Fusion Science (NIFS)

Japan Plasma Simulator - Hitachi SR16000 Model L2, Power6 4.7Ghz, Infiniband / 2009

Hitachi 4096 56.65 77.00 645.00

66 Leibniz Rechenzentrum

Germany HLRB-II - Altix 4700 1.6 GHz / 2007

SGI 9728 56.52 62.26 990.24

67 ERDC MSRC

United States Jade - Cray XT4 QuadCore 2.1 GHz / 2008

Cray Inc. 8464 56.25 71.10 418.97

68 University of Edinburgh

United Kingdom HECToR - Cray XT4, 2.8 GHz / 2007

Cray Inc. 11328 54.65 63.44

69 University of Tokyo/Human Genome Center, IMS

Japan SHIROKANE - SunBlade x6250, Xeon E5450 3GHz, Infiniband / 2009

Sun Microsystems 5760 54.21 69.12

70 NNSA/Sandia National Laboratories

United States Thunderbird - PowerEdge 1850, 3.6 GHz, Infiniband / 2006

Dell 9024 53.00 64.97

71 Commissariat a l'Energie Atomique (CEA)

France Tera-10 - NovaScale 5160, Itanium2 1.6 GHz, Quadrics / 2006

Bull SA 9968 52.84 63.80

72 IDRIS

France Power 575, p6 4.7 GHz, Infiniband / 2008

IBM 3584 52.81 67.38 572.79

73 United Kingdom Meteorological Office

United Kingdom UKMO B - Power 575, p6 4.7 GHz, Infiniband / 2009

IBM 3520 51.86 66.18 562.60

74 United Kingdom Meteorological Office

United Kingdom UKMO A - Power 575, p6 4.7 GHz, Infiniband / 2009

IBM 3520 51.86 66.18 562.60

75 Wright-Patterson Air Force Base/DoD ASC

United States Altix 4700 1.6 GHz / 2007

SGI 9216 51.44 58.98

76 University of Southern California

United States HPC - PowerEdge 1950/SunFire X2200 Cluster Intel 53xx 2.33Ghz, Opteron 2.3 Ghz, Myrinet 10G / 2009

Dell/Sun 7104 51.41 65.64

77 HWW/Universitaet Stuttgart

Germany Baku - NEC HPC 140Rb-1 Cluster, Xeon X5560 2.8Ghz, Infiniband / 2009

NEC 5376 50.79 60.21 186.00

78 Kyoto University

Japan T2K Open Supercomputer/Kyodai - Fujitsu Cluster HX600, Opteron Quad Core, 2.3 GHz, Infiniband / 2008

Fujitsu 6656 50.51 61.24

79 SARA (Stichting Academisch Rekencentrum)

Netherlands Power 575, p6 4.7 GHz, Infiniband / 2008

IBM 3328 48.93 62.57 531.88

80 SciNet/University of Toronto

Canada Power 575, p6 4.7 GHz, Infiniband / 2008

IBM 3328 48.93 62.57 531.88

81 IT Service Provider (B)

United States Cluster Platform 3000 BL460c, Xeon 54xx 3.0GHz, GigEthernet / 2009

Hewlett-Packard 7600 48.14 91.20

82 Moscow State University - Research Computing Center

Russia SKIF MSU - T-Platforms T60, Intel Quadcore 3Mhz, Infiniband DDR / 2008

SKIF/T-Platforms 5000 47.17 60.00 265.00

83 National Supercomputer Centre (NSC)

Sweden Neolith - Cluster Platform 3000 DL140 Cluster, Xeon 53xx 2.33GHz Infiniband / 2008

Hewlett-Packard 6440 47.03 60.02

84 IBM - Rochester

United States Blue Gene/P Solution / 2007

IBM 16384 46.83 55.71 126.00

85 IBM Thomas J. Watson Research Center

United States Blue Gene/P Solution / 2009

IBM 16384 46.83 55.71 126.00

86 Max-Planck-Gesellschaft MPI/IPP

Germany Genius - Blue Gene/P Solution / 2008

IBM 16384 46.83 55.71 126.00

87 Texas Advanced Computing Center/Univ. of Texas

United States Lonestar - PowerEdge 1955, 2.66 GHz, Infiniband / 2007

Dell 5848 46.73 62.22

88 HPC2N - Umea University

Sweden Akka - BladeCenter HS21 Cluster, Xeon QC HT 2.5 GHz, IB, Windows HPC 2008/CentOS / 2008

IBM 5376 46.04 53.76 173.21

89 Clemson University

United States Palmetto - PowerEdge 1950/SunFire X2200 Cluster Intel 53xx/54xx 2.33Ghz, Opteron 2.3 Ghz, Myrinet 10G / 2008

Dell/Sun 6120 45.61 56.55 285.00

90 Financial Services (H)

United States Cluster Platform 3000 BL460c G1, Xeon L5420 2.5 GHz, GigE / 2009

Hewlett-Packard 8312 43.75 83.12

91 Ohio Supercomputer Center

United States xSeries x3455 Cluster Opteron, DC 2.6 GHz/QC 2.5 GHz, Infiniband / 2009

IBM 8416 43.46 68.38

92 Consulting (C)

United States Cluster Platform 3000 BL460c G1, Xeon E5450 3.0 GHz, GigE / 2009

Hewlett-Packard 6768 43.00 81.22

93 National Institute for Materials Science

Japan SGI Altix ICE 8200EX, Xeon X5560 quad core 2.8 GHz / 2009

SGI 4096 42.69 45.88

94 IT Service Provider (D)

United States Cluster Platform 3000 BL460c, Xeon 54xx 3.0GHz, GigEthernet / 2009

Hewlett-Packard 6672 42.41 80.06

95 Maui High-Performance Computing Center (MHPCC)

United States Jaws - PowerEdge 1955, 3.0 GHz, Infiniband / 2006

Dell 5200 42.39 62.40

96 Commissariat a l'Energie Atomique (CEA)

France CEA-CCRT-Platine - Novascale 3045, Itanium2 1.6 GHz, Infiniband / 2007

Bull SA 7680 42.13 49.15

97 US Army Research Laboratory (ARL)

United States Michael J. Muuss Cluster (MJM) - Evolocity II (LS Supersystem) Xeon 51xx 3.0 GHz IB / 2007

Linux Networx 4416 40.61 52.99

98 University of Bergen

Norway Cray XT4 QuadCore 2.3 GHz / 2008

Cray Inc. 5550 40.59 51.06 274.73

99 Jeraisy Computer and Communication Services

Saudia Arabia Cluster Platform 3000 BL460c, Xeon 54xx 3 GHz, Infiniband / 2009

Hewlett-Packard 4192 39.70 50.30

100 R-Systems

United States R Smarr - Dell DCS CS23-SH, QC HT 2.8 GHz, Infiniband / 2008

Dell 4608 39.58 51.61

 
ログイン ユーザー登録
ようこそ ゲスト さん