PowerPoint プレゼンテーション
|
|
|
- いちえい ふくだ
- 7 years ago
- Views:
Transcription
1 Computer simulations create the future 性能解析ツール Scalasca Hands-On セットアップ 2014 年 3 月 7 日 中村朋健理化学研究所計算科学研究機構 RIKEN ADVANCED INSTITUTE FOR COMPUTATIONAL SCIENCE
2 作業環境の最初 作業環境 /home/ss/xxx/scalasca/npb_original/ 作業環境の最終形 /home/ss/xxx/scalasca/npb_original/ /NPB_Test/ /NPB_Summary/ /NPB_Filt/ /NPB_Trace/ /NPB_Papi/ /NPB_Pomp/ /NPB_User/ 2014/3/7 RIKEN AICS HPC Spring School 2
3 Nas Parallel Benchmarks 1. メールで送信 springschoolscalasca.tar.gz ファイル 2. 環境変数 ( パス ) の設定 (.bashrc などへ ) export PATH=/home/ss/scalasca/bin:$PATH 3. pi へ転送 1. sftp, scp などを使って pi へ転送 $ sftp [email protected] $ put SpringSchoolScalasca.tar.gz 4. 展開 $ ssh [email protected] $ tar zxvf SpringSchoolScalasca.tar.gz 2014/3/7 RIKEN AICS HPC Spring School 3
4 Nas Parallel Benchmarks 6. コピーを作成 $ cd ~/Scalasca $ cp r NPB_original NPB_test 7. NPB の config ファイルの設定 $ cd ~/Scalasca/NPB_test/config $ cp make.def.template make.def $ cp suite.def.template suite.def 1. suite.def ファイルの編集 mg A 4 ( この 1 行だけに ) 2014/3/7 RIKEN AICS HPC Spring School 4
5 Nas Parallel Benchmarks 7. NPB の config ファイルの設定 2. make.def ファイルの編集 32 行目 MPIF77 = f77 MPIF77 = mpifrtpx 39 行目 FMPI_LIB = -L/usr/local/lib lmpi FMPI_LIB = -L/opt/FJSVfxlang/1.2.1/lib64 44 行目 MPI_INC = -I/usr/local/include FMPI_INC = -I/opt/FJSVtclang/1.2.1/include/mpi/fujitsu 49 行目 FFLAGS = -O FFLAGS = -Kfast,parallel,ocl,openmp 55 行目 FLINKFLAGS = -O FLINKFLAGS = -Kfast,parallel,ocl,openmp 2014/3/7 RIKEN AICS HPC Spring School 5
6 NPB MG の動かし方 $ cd ~/Scalasca/NPB_test $ make suite $ cd ~/Scalasca/NPB_test/bin $ ls -l ( 作成した実行可能ファイルの確認 ) 実行 $ pjsub./run.sh run.sh.oxxxxx を確認 2014/3/7 RIKEN AICS HPC Spring School 6
7 Computer simulations create the future Scalasca Hands-on RIKEN ADVANCED INSTITUTE FOR COMPUTATIONAL SCIENCE
8 本日の Hands-on 1. 基本的なコマンド4つ 2. 自動 Instrumentation 1. Summary 解析 2. フィルタの使い方 3. Trace 解析 4. PAPIを用いた解析 3. 半自動 Instrumentation 4. 手動 Instrumentation 2014/3/7 RIKEN AICS HPC Spring School 8
9 X Window System の設定 X の設定 1. Mac Mountain Lion 以降 /Applications/Utilities/Xquartz.app がインストールされているか確認 2. Mac Mountain Lion より前のバージョンなら問題ないはず 3. Windows cygwin で X11 をインストール X の確認 $ ssh Y [email protected] $ xeyes 2014/3/7 RIKEN AICS HPC Spring School 9
10 基本的なコマンド scalasca $ scalasca Scalasca Toolset for scalable performance analysis of large-scale parallel applications usage: scalasca [-v][-n] {action} 1. prepare application objects and executable for measurement: scalasca -instrument <compile-or-link-command> # skin 2. run application under control of measurement system: scalasca -analyze <application-launch-command> # scan 3. interactively explore measurement analysis report: scalasca -examine <experiment-archive report> # square -v: enable verbose commentary -n: show actions without taking them -h: show quick reference guide (only) 2014/3/7 RIKEN AICS HPC Spring School 10
11 基本的なコマンド skin $ skin SCALASCA 1.4.3: application instrumenter usage: skin [-v] [-comp] [-pomp] [-user] <compile-or-link-command> -comp={all none...}: routines to be instrumented by compiler [default: all] (... custom instrumentation specification depends on compiler) -pomp: process source files for POMP directives -user: enable EPIK user instrumentation API macros in source code -v: enable verbose commentary when instrumenting 2014/3/7 RIKEN AICS HPC Spring School 11
12 基本的なコマンド scan $ scan ( フロントエンドでは使わない ) Scalasca 1.4.3: measurement collection & analysis nexus usage: scan {options} [launchcmd [launchargs]] target [targetargs] where {options} may include: -h Help: show this brief usage message and exit. -v Verbose: increase verbosity. -n Preview: show command(s) to be launched but don't execute. -q Quiescent: execution with neither summarization nor tracing. -s Summary: enable runtime summarization. [Default] -t Tracing: enable trace collection and analysis. -a Analyze: skip measurement to (re-)analyze an existing trace. -e epik : Experiment archive to generate and/or analyze. (overrides default experiment archive) -f filtfile : File specifying measurement filter. -l lockfile : File that blocks start of measurement. -m metrics : Metric specification for measurement. 2014/3/7 RIKEN AICS HPC Spring School 12
13 基本的なコマンド square $ square SCALASCA 1.4.3: analysis report explorer usage: square [-v] [-s] [-f filtfile] [-F] <experiment archive cube file> -F : Force remapping of already existing reports -f filtfile : Use specified filter file when doing scoring -s : Skip display and output textual score report -v : Enable verbose mode 2014/3/7 RIKEN AICS HPC Spring School 13
14 自動 Instrumentation Summary 解析 どんなとき? まず大雑把にアプリケーションの挙動を確認したい 2014/3/7 RIKEN AICS HPC Spring School 14
15 自動 Instrumentation Summary 解析 ( 準備 ) $ cd ~/Scalasca $ cp r NPB_test NPB_Summary $ cd NPB_Summary $ make clean ( 不要なものを削除 ) $ cd bin $ rm f mg* ( 不要なものを削除 ) $ cd../mg ( エディタで Makefile ファイルを編集 ) 13 行目 ${FLINK} skin ${FLINK} 16 行目 ${FCOMPILE} skin ${FCOMPILE} 2014/3/7 RIKEN AICS HPC Spring School 15
16 自動 Instrumentation Summary 解析 (instrumentation) $ cd ~/Scalasca/NPB_Summary $ make suite $ cd bin $ ls l ( 作成したファイルを確認 ) 2014/3/7 RIKEN AICS HPC Spring School 16
17 自動 Instrumentation Summary 解析 (measurement) (run.sh ファイルを編集 ) 以下の 1 行をコメントにする mpiexec -n 4./mg.A.4 以下の # を外す #. /home/ss/scalasca/env_scalasca #export SCAN_ANALYZE_OPTS="-i -s #scan e epik_summary mpiexec n 4./mg.A.4 $ pjsub./run.sh 2014/3/7 RIKEN AICS HPC Spring School 17
18 自動 Instrumentation Summary 解析 ( 解析 ) # cd ~/Scalasca/NPB_Summary/bin # square./epik_summary 2014/3/7 RIKEN AICS HPC Spring School 18
19 自動 Instrumentation Summary での解析 CUBE の操作 ツリーの展開 ( 展開後は子の処理コストを含まない ) 色によるコスト分類 metric tree 処理時間, 通信回数, 通信と演算の割合 ヘルプ ( オンラインドキュメント ) の表示 call tree 各関数の計算時間, 割合 ソースコード表示 検索 (ex. MPI_Wait) System tree 3 次元での表示 2014/3/7 RIKEN AICS HPC Spring School 19
20 Weak scaling の調べ方 等しい iteration 2.5 倍 等しい class: B, 4 procs class: C, 32 procs class: D, 256 procs class: E, 2048 procs resid_ 関数では weak scale で性能低下はない 2014/3/7 RIKEN AICS HPC Spring School 20
21 自動 Instrumentation Filter の使い方 ( 今回の MG は例として適当ではありませんが ) どんなとき? Summary 解析で不要な情報まで取得したくない オーバヘッドが大きくなりうまく性能を測れない 後で出てくる Trace 解析で Scalasca の制限にひっかかる イベントトレースの合計は 34GB まで 各ランクのトレースバッファサイズは 8.5GB まで 2014/3/7 RIKEN AICS HPC Spring School 21
22 $ cd ~/Scalasca $ cp r NPB_Summary NPB_Filter $ cd NPB_Filter/bin/epik_summary $ square s./ $ cat epik.score Filter の使い方 例えば resid_ 関数,ready_ 関数,take3_ 関数についてはトレース情報は必要ない場合以下のような scalasca.filt ファイルを作成 $ cat scalasca.filt resid_ ready_ take3_ (run.sh を編集 ) 以下の行をコメントに scan mpiexec -n 4./mg.A.4 以下の # を外す #scan f scalasca.filt e epik_filter mpiexec -n 4./mg.A /3/7 RIKEN AICS HPC Spring School 22
23 自動 Instrumentation Trace 解析 どんなとき? フィルタで要らない情報を取らないようにした後, 通信待ちオペレーションの発生箇所を特定する 通信待ちオペレーションによるボトルネックを見つける 2014/3/7 RIKEN AICS HPC Spring School 23
24 自動 Instrumentation Trace 解析 ( 準備, instrumentation) $ cd ~/Scalasca $ cp r NPB_Summary NPB_Auto $ cd NPB_Auto $ make clean $ cd bin $ rm fr epik_* ( 実行ファイルは Summary 解析と同じものを使います ) (run.sh を編集 ) 以下の行をコメントに scan f scalasca.filt e epik_filter mpiexec -n 4./mg.A.4 以下の # を外す #scan -t e epik_auto mpiexec -n 4./mg.A /3/7 RIKEN AICS HPC Spring School 24
25 自動 Instrumentation Trace 解析 (measurement, 表示 ) $ cd ~/Scalasca/NPB_Auto/bin (MG はフィルタを必要としないのでつけません ) $ pjsub./run.sh $ square./epik_auto 2014/3/7 RIKEN AICS HPC Spring School 25
26 自動 Instrumentation Trace 解析 ( 表示 & 解析 ) CUBE の操作 metric tree Late Sender などの待ち時間を確認 ヘルプ ( オンラインドキュメント ) の表示 2014/3/7 RIKEN AICS HPC Spring School 26
27 自動 Instrumentation Trace 解析 ( 表示 & 解析 ) ( 例として以下を確認 ) ホットスポットをみつける 各ノードの演算時間 通信と演算の比 Late Sender,Early Reciever など起こっている部分の確認 2014/3/7 RIKEN AICS HPC Spring School 27
28 自動 Instrumentation PAPI を使った解析 どんなとき? 以下のようなハードウェアカウンタの値を見たいとき キャッシュミス TLB ミス 浮動小数点演算回数 2014/3/7 RIKEN AICS HPC Spring School 28
29 PAPI を使った解析 (instrumentation, measurement) $ cd ~/Scalasca $ cp r NPB_Summary NPB_Papi $ cd NPB_Papi/bin $ rm fr epik* (run.sh ファイル編集 ) 以下のコメントを外す #/opt/fjsvxospa/bin/xospastop ( 課金 PA 機能を止める ) #scan t m L1_MISS: 以下をコメントに scan -t e epik_auto mpiexec -n 4./mg.A.4 $ pjsub./run.sh $ square./epik_papi 2014/3/7 RIKEN AICS HPC Spring School 29
30 PAPI を使った解析 Metric tree に L1_MISS L1_I_MISS など -m オプションで指定したものが表示 例として以下を確認 L1_MISS が多い関数 resid_, psinv_, ready_, give3_, take3_ L1_I_MISS が多い関数 rprj3_, psinv_, interp_, resid_ FLOATING_POINT が多い関数 zran3_, resid_, rprj3_, psinv_ scan の -m オプションに指定可能なものは以下のファイルを参照 /home/scalasca/doc/papi_avail.txt ただし, ハードウェアカウンタが 8 個あり, バッティングしないものなら同時に調べられる (SPARC64TM VIIIfx Extensions p304,305 を参照 ) 2014/3/7 RIKEN AICS HPC Spring School 30
31 半自動 POMP User Instrumentation どんなとき? 自動 Instrumentation で失敗する場合 プログラムの一部の詳細を分析したい場合 2014/3/7 RIKEN AICS HPC Spring School 31
32 半自動 POMP User Instrumentation $ cd ~/Scalasca $ cp r NPB_Summary NPB_Pomp $ cd ~/Scalasca/NPB_Pomp/MG (mg.f を半手動でのインストルメント ) rpj3 サブルーチンのループ部分の詳細を分析したいときの例 (91 行目あたり )!POMP$ INST INIT! main プログラムに 1 回だけ (824 行目あたり )!POMP$ INST BEGIN(rprj3_loop) (857 行目あたり )!POMP$ INST END(rprj3_loop) 実行は同様 $ cd ~/Scalasca/NPB_Pomp 2014/3/7 RIKEN AICS HPC Spring School 32
33 手動 EPIK User Instrumentation どんなとき? 自動や半自動で Instrumentation に失敗する場合 プログラムの一部の詳細を分析したい場合 2014/3/7 RIKEN AICS HPC Spring School 33
34 手動 EPIK User Instrumentation 準備 $ cd ~/Scalasca $ cp r NPB_Summary NPB_User $ cd NPB_User/bin $ rm fr (runmg_*.sh 以外削除 ) $ cd.. $ make clean $ cd MG $ mv mg.f mg.f (CPP を通すため ) (Makefile を編集 ) mg.f を mg.f に変更 skin を skin user に変更自動 instrumentation が必要なければ.o ファイル作成時に -comp=none をつける 2014/3/7 RIKEN AICS HPC Spring School 34
35 手動 EPIK User Instrumentation Instrumentation mg.f ファイルの編集 54 行目あたりに以下を追加 #include "/home/ss/scalasca/include/fe/epik_user.inc (Makefile に -I オプションでディレクトリを指定しても構いません ) subroutine mg3p(u,v,r,a,c,n1,n2,n3,k) EPIK_FUNC_REG( func_mg3p ) EPIK_USER_REG(r_name1, iter_loop ) EPIK_USER_REG(r_name2, iter_loop_4call ) 2014/3/7 RIKEN AICS HPC Spring School 35
36 手動 EPIK User Instrumentation Instrumentation mg.f ファイルの編集つづき EPIK_FUNC_START() EPIK_USER_START(r_name1) do k = lb+1, lt-1 j = k-1 EPIK_USER_START(r_name2) call zero3(u(ir(k)),m1(k),m2(k),m3(k)) call interp(u(ir(j)),m1(j),m2(j),m3(j),u(ir(k)),m1(k),m2(k),m3(k),k) call resid(u(ir(k)),r(ir(k)),r(ir(k)),m1(k),m2(k),m3(k),a,k) call psinv(r(ir(k)),u(ir(k)),m1(k),m2(k),m3(k),c,k) EPIK_USER_END(r_name2) enddo EPIK_USER_END(r_name1) EPIK_FUNC_END() return end 2014/3/7 RIKEN AICS HPC Spring School 36
37 EPIK User Instrumentation C #include " /home/ /epik_user.inc "... void foo() { EPIK_FUNC_START();... if (...) { EPIK_FUNC_END(); return; } else { EPIK_USER_REG(r_name,"region"); EPIK_USER_START(r_name);... EPIK_USER_END(r_name); } EPIK_FUNC_END(); return; } Fortran #include /home/ /epik_user.inc"... subroutine bar() EPIK_FUNC_REG("bar") EPIK_USER_REG(r_name, "region") EPIK_FUNC_START() if (...) then EPIK_FUNC_END() return else EPIK_USER_START(r_name)... EPIK_USER_END(r_name) endif EPIK_FUNC_END() return end subroutine bar 2014/3/7 RIKEN AICS HPC Spring School 37
PowerPoint プレゼンテーション
Computer simulations create the future 2015 年度第 1 回 AICS 公開ソフト講習会 K MapReduce ハンズオン 滝澤真一朗松田元彦丸山直也 理化学研究所計算科学研究機構プログラム構成モデル研究チーム 1 RIKEN ADVANCED INSTITUTE FOR COMPUTATIONAL SCIENCE KMR の導入方法を学ぶ 目的 KMRRUN
Red Hat Enterprise Linux 6 Portable SUSE Linux Enterprise Server 9 Portable SUSE Linux Enterprise Server 10 Portable SUSE Linux Enterprise Server 11 P
Dynamic System Analysis (DSA) を使用した稼動システムのインベントリー情報収集について 本文 IBM Dynamic System Analysis (DSA) は サーバーのインベントリ情報を収集し ファイル出力することが可能な診断ツールです 稼動システムのインベントリー情報を収集することで 障害時の問題判別を円滑に実施することができます 以下の IBM の Web サイトから入手することが可能です
GNU Emacs GNU Emacs
GNU Emacs 2015 10 2 1 GNU Emacs 1 1.1....................................... 1 1.2....................................... 1 1.2.1..................................... 1 1.2.2.....................................
X Window System X X &
1 1 1.1 X Window System................................... 1 1.2 X......................................... 1 1.3 X &................................ 1 1.3.1 X.......................... 1 1.3.2 &....................................
Microsoft Word - Meta70_Preferences.doc
Image Windows Preferences Edit, Preferences MetaMorph, MetaVue Image Windows Preferences Edit, Preferences Image Windows Preferences 1. Windows Image Placement: Acquire Overlay at Top Left Corner: 1 Acquire
Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool
Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded systems that
I I / 47
1 2013.07.18 1 I 2013 3 I 2013.07.18 1 / 47 A Flat MPI B 1 2 C: 2 I 2013.07.18 2 / 47 I 2013.07.18 3 / 47 #PJM -L "rscgrp=small" π-computer small: 12 large: 84 school: 24 84 16 = 1344 small school small
はじめに このドキュメントではftServerに関する障害調査を行う際に 必要となるログ データの取得方法を説明しています ログ データの取得には 初期解析用のデータの取得方法と 詳細な調査を行うときのデータ取得方法があります 特別な理由でOS 側のログが必要となった場合には RHELログの取得につ
ftserver におけるログ取得手順 (Linux 編 ) Rev 0.5: 2017/06/08 1 はじめに このドキュメントではftServerに関する障害調査を行う際に 必要となるログ データの取得方法を説明しています ログ データの取得には 初期解析用のデータの取得方法と 詳細な調査を行うときのデータ取得方法があります 特別な理由でOS 側のログが必要となった場合には RHELログの取得について
GettingStartedTK2
T-Kernel 2.0 Getting Started T-Engine フォーラム ダウンロード T-Engine フォーラムの web ページから T-Kernel 2.0 Software Package をダウンロード 必要なソフトウェアや開発環境が全て含まれている 2 Copyright 2011 by T-Engine Forum, All Rights Reserved. 1 ReadMe.txt
Microsoft PowerPoint - 演習1:並列化と評価.pptx
講義 2& 演習 1 プログラム並列化と性能評価 神戸大学大学院システム情報学研究科横川三津夫 [email protected] 2014/3/5 RIKEN AICS HPC Spring School 2014: プログラム並列化と性能評価 1 2014/3/5 RIKEN AICS HPC Spring School 2014: プログラム並列化と性能評価 2 2 次元温度分布の計算
28 Docker Design and Implementation of Program Evaluation System Using Docker Virtualized Environment
28 Docker Design and Implementation of Program Evaluation System Using Docker Virtualized Environment 1170288 2017 2 28 Docker,.,,.,,.,,.,. Docker.,..,., Web, Web.,.,.,, CPU,,. i ., OS..,, OS, VirtualBox,.,
Microsoft PowerPoint - Borland C++ Compilerの使用方法(v1.1).ppt [互換モード]
Borland C++ Compiler の 使用方法 解説書 (v1.1) 1 準備 (1/2) 1. スタートメニューから コントロールパネル を開いて その中に デスクトップのカスタマイズ フォルダーオプション があるので開く エクスプローラー内の ツール フォルダーオプション などからも開ける 2. 表示 タブにある 登録されている拡張子は表示しない のチェックを外して OKを押す これでファイルの拡張子が表示されるようになった
1. TSUBAME2.0 通常実行まで 1.1. 環境設定 (MPI ライブラリ & コンパイラ ) 最新の Open MPI と Intel コンパイラを使用するため,${HOME}/.bashrc 等で環境変数 ( パス等 ) を設定します. ~ 設定例 ~ export SELECT_MPI
プロファイルツール実行例アプリ ntchem-rimp2 2013 年 9 月 3 日日本電気株式会社 0. はじめに 本ドキュメントでは, アプリ ntchem-rimp2 におけるプロファイルツール連携の作業履歴を記 載します. 目次 1. TSUBAME2.0 通常実行まで... 2 1.1. 環境設定 (MPI ライブラリ & コンパイラ )... 2 1.2. コンパイルとソース修正...
01_OpenMP_osx.indd
OpenMP* / 1 1... 2 2... 3 3... 5 4... 7 5... 9 5.1... 9 5.2 OpenMP* API... 13 6... 17 7... 19 / 4 1 2 C/C++ OpenMP* 3 Fortran OpenMP* 4 PC 1 1 9.0 Linux* Windows* Xeon Itanium OS 1 2 2 WEB OS OS OS 1 OS
PowerPoint プレゼンテーション
計算機実習 Ⅰ FORTRAN 担当 2018.05.29 本日の課題 プログラムの基本ルールを理解し 以下が含まれるプログラムを作成する (1) 文法の基礎 ( フローチャートなど ) (2) 変数宣言 (3) 入出力 (4) 四則演算 (5) 組込関数 (6) 判定文 (7) リダイレクション PROGRAM MAIN INTEGER I, J, K REAL A, B, C CHARACTER
¥Ñ¥Ã¥±¡¼¥¸ Rhpc ¤Î¾õ¶·
Rhpc COM-ONE 2015 R 27 12 5 1 / 29 1 2 Rhpc 3 forign MPI 4 Windows 5 2 / 29 1 2 Rhpc 3 forign MPI 4 Windows 5 3 / 29 Rhpc, R HPC Rhpc, ( ), snow..., Rhpc worker call Rhpc lapply 4 / 29 1 2 Rhpc 3 forign
Microsoft PowerPoint - InfPro_I6.pptx
今日の学習内容 ファイルとディレクトリ ( 続 )(pp.34-36) 色々なUNIXのコマンド (pp.203-209) 今日の基礎教養セミナ講演会 Yahooの坂本さん 3コマ (13:10~) A204 ディレクトリ ( 復習 ) UNIXファイルシステムにはファイルとディレクトリがあり ツリー状の階層型構造をしている ツリー構造の頂点 ( ツリー構造の根の部分 ) 一番上の唯一のディレクトリをルートディレクトリと呼ぶ
情報処理概論(第二日目)
実習資料 Linux 入門講習会 九州大学情報基盤研究開発センター 注意 : この内容は najima.cc.kyushu-u.ac.jp の任意の ID で利用できますが, ファイルの削除等を含んでいるので各コマンドの意味を理解するまでは講習会用 ID で利用することをお勧めします. 1 実習 1 ログイン ファイル操作 ディレクトリの作成 ファイルの移動, コピー, 削除 ログアウト 2 ログイン
fx-9860G Manager PLUS_J
fx-9860g J fx-9860g Manager PLUS http://edu.casio.jp k 1 k III 2 3 1. 2. 4 3. 4. 5 1. 2. 3. 4. 5. 1. 6 7 k 8 k 9 k 10 k 11 k k k 12 k k k 1 2 3 4 5 6 1 2 3 4 5 6 13 k 1 2 3 1 2 3 1 2 3 1 2 3 14 k a j.+-(),m1
I117 II I117 PROGRAMMING PRACTICE II SOFTWARE DEVELOPMENT ENV. 1 Research Center for Advanced Computing Infrastructure (RCACI) / Yasuhiro Ohara
I117 II I117 PROGRAMMING PRACTICE II SOFTWARE DEVELOPMENT ENV. 1 Research Center for Advanced Computing Infrastructure (RCACI) / Yasuhiro Ohara [email protected] / SCHEDULE 1. 2011/06/07(Tue) / Basic of
ProVAL Recent Projects, ProVAL Online 3 Recent Projects ProVAL Online Show Online Content on the Start Page Page 13
ProVAL Unit System Enable Recording Log Preferred Language Default File Type Default Project Path ProVAL : Unit SystemUse SI Units SI SI USCS Enable Recording Log Language Default File Type Default Project
RT300/140/105シリーズ 取扱説明書
REMOTE & BROADBAND ROUTER RT300i/RT140p/RT140f/RT140i RT140e/RT105p/RT105i/RT105e 2 3 4 5 6 7 8 9 10 Bold face Enter Ctrl Tab BS Del Console RT105i RT300i RT140p RT140f RT140i RT140e RT105p RT105i RT105e
120802_MPI.ppt
CPU CPU CPU CPU CPU SMP Symmetric MultiProcessing CPU CPU CPU CPU CPU CPU CPU CPU CPU CPU CPU CPU CP OpenMP MPI MPI CPU CPU CPU CPU CPU CPU CPU CPU CPU CPU MPI MPI+OpenMP CPU CPU CPU CPU CPU CPU CPU CP
Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for
Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded systems that use microcontrollers (MCUs)
Microsoft Word - appli_OpenMX_install.docx
OpenMX version 3.8.3 インストール手順書 (Linux 64 ビット版 ) 目次 1. アプリケーション概要... 1 2. システム環境... 1 3. アプリケーションのインストール... 1 4. 動作確認の実施... 4 本手順書は OpenMX の入手からインストールまでを説明した資料です 2018/3/7 1. アプリケーション概要 本手順書が対象としているアプリケーションは以下の通りです
昨年度までの研究紹介 および 研究計画
第 12 回 ICN 研究会ワークショップ Cefore で キャッシュプラグイン開発 2018 年 8 月 30 日 ( 木 ) キャッシュプラグイン csmgrd は起動時に使用するキャッシュプラグインを指定 Cache plugin: キャッシュデータ保存方式 Cache algorithm: キャッシュ選択 / 置換アルゴリズム Cache Plugin Cache algorithm csmgrd
,,,,., C Java,,.,,.,., ,,.,, i
24 Development of the programming s learning tool for children be derived from maze 1130353 2013 3 1 ,,,,., C Java,,.,,.,., 1 6 1 2.,,.,, i Abstract Development of the programming s learning tool for children
ThermoFisher
Thermo Fisher Connect Relative Quantification 操作簡易資料 http://www.thermofisher.com/cloud 使用には事前登録が必要になります 画面は予告なく変わることがあります The world leader in serving science Thermo Fisher Connect とは? キャピラリシーケンサ リアルタイム
1 I EViews View Proc Freeze
EViews 2017 9 6 1 I EViews 4 1 5 2 10 3 13 4 16 4.1 View.......................................... 17 4.2 Proc.......................................... 22 4.3 Freeze & Name....................................
<4D F736F F D2096C B838B B835E838A F B E92CA926D B838B5F E315
一覧 一覧 第 1.1 版 2010 年 11 月 02 日 NTT コミュニケーションズ株式会社 _1.0 改版履歴 版数発行年月日変更内容 1.0 2010/03/19 初版作成 1.1 2010/11/02 2.2.1(3) の補足説明を削除 目次 1. はじめに... 4 2. 通知メール... 4 2.1. バウンスメール... 4 2.2. ウイルスチェック警告メール... 5 2.2.2.
1. TSUBAME2.5 通常実行まで 1.1. 環境設定 (MPI ライブラリ & コンパイラ ) まずは para-tcci で使用する環境変数を.bashrc に定義します. 後述の Scalasca で OpenMPI を使用するため, ここでも最新の OpenMPI と Intel コン
プロファイルツール実行例アプリ para-tcci 2013 年 9 月 19 日日本電気株式会社 はじめに 本ドキュメントでは, アプリ para-tcci のプロファイルツール連携の作業履歴を記載します. 目次 はじめに... 1 1. TSUBAME2.5 通常実行まで... 2 1.1. 環境設定 (MPI ライブラリ & コンパイラ )... 2 1.2. コンパイルとソース修正... 2
EnSight 10.1の新機能
EnSight の処理の自動化のためのテクニックのご紹介 CEI ソフトウェア株式会社 松野康幸 2016 年 11 月 4 日 本日の予定 EnSight の処理の自動化に向けて EnSight のコマンドでできること EnSight で利用できるコマンドの種類 コマンド ファイルの作り方 Python 形式のコマンドの作り方作成したコマンド ファイルの実行方法ユーザー定義ツールの作り方ユーザー定義ツールの使い方
Maser - User Operation Manual
Maser 3 Cell Innovation User Operation Manual 2013.4.1 1 目次 1. はじめに... 3 1.1. 推奨動作環境... 3 2. データの登録... 4 2.1. プロジェクトの作成... 4 2.2. Projectへのデータのアップロード... 8 2.2.1. HTTPSでのアップロード... 8 2.2.2. SFTPでのアップロード...
ドライバインストールガイド
PRIMERGY Single Port ファイバーチャネルカード (8Gbps) Dual Port ファイバーチャネルカード (8Gbps) (PG-FC205/PG-FC205L) (PG-FC206/PG-FC206L) CA092276-8938-01 ドライバインストールガイド i 目次 1. ドライバのインストール / アンインストール方法... 3 1.1. ドライバのダウンロード
PBASIC 2.5 PBASIC 2.5 $PBASIC directive PIN type New DEBUG control characters DEBUGIN Line continuation for comma-delimited lists IF THEN ELSE * SELEC
PBASIC 2.5 PBASIC 2.5 BASIC Stamp Editor / Development System Version 2.0 Beta Release 2 2.0 PBASIC BASIC StampR PBASIC PBASIC PBASIC 2.5 Parallax, Inc. PBASIC 2.5 PBASIC 2.5 [email protected] 1
CPP46 UFO Image Analysis File on yucatan091206a By Tree man (on) BLACK MOON (Kinohito KULOTSUKI) CPP46 UFO 画像解析ファイル yucatan091206a / 黒月樹人 Fig.02 Targe
CPP46 UFO Image Analysis File on yucatan091206a By Tree man (on) BLACK MOON (Kinohito KULOTSUKI) CPP46 UFO 画像解析ファイル yucatan091206a / 黒月樹人 Fig.02 Target (T) of Fig.01 Original Image of yucatan091206a yucatan091206a
共通 障害調査依頼の際には ログの他に分かる範囲で以下の情報の提供をお願いします 障害の概要 ( 障害の具体的な内容どの様な現象が発生したか等の情報 ) 障害の発生日時 障害の発生手順 ( 障害発生時に どの様な操作 運用を行ったかの情報 ) 画面上に表示されているエラーメッセージ ネットワーク構成
管理サーバの障害解析用のログ一覧 対応バージョン SSC2.0 / SSC2.1 概要 SigmaSystemCeter の障害解析時のログ一覧を記載します SSC コンポーネント毎の管理サーバ側ログの種類 PVM DPM:Win DPM:UX ESM/SM SMN SBC 性能 1. 運用 詳細ログ *1 *2 *5 *6 *7 *9 2. アプリケーションログ *0 *0 *0 3. システムログ
2 2.1 Mac OS CPU Mac OS tar zxf zpares_0.9.6.tar.gz cd zpares_0.9.6 Mac Makefile Mekefile.inc cp Makefile.inc/make.inc.gfortran.seq.macosx make
Sakurai-Sugiura z-pares 26 9 5 1 1 2 2 2.1 Mac OS CPU......................................... 2 2.2 Linux MPI............................................ 2 3 3 4 6 4.1 MUMPS....................................
2 I I / 61
2 I 2017.07.13 I 2 2017.07.13 1 / 61 I 2 2017.07.13 2 / 61 I 2 2017.07.13 3 / 61 7/13 2 7/20 I 7/27 II I 2 2017.07.13 4 / 61 π-computer gnuplot MobaXterm Wiki PC X11 DISPLAY I 2 2017.07.13 5 / 61 Mac 1.
手動操作によるパーティション作成方法 4. リストア方法 (3) システム情報の復元 の 3-2) の手順で sfdisk コマンドによるシステムのパーティション情報の復元に失敗する場合は fdisk コマンドにて手動でパーティションを作成してください 作成するパーティションのサイズは バックアップ
本書は サポートポータルで公開している Express5800/R320c(RHEL6) システムディスクのバックアップリストア手順 ( コンテンツ ID: 3140101118) に掲載している システムのバックアップリストア手順書 の補足情報です システムディスクに 増設用 200GB SSD ( 型番 : N8850-052) を利用している環境で リストア実行時にパーティション作成に失敗して付録の
Microsoft Word - SI_Refinements_ docx
Submissin Interface Refinements 2017-08-23 Submissin Interface 改良点 2017-08-23 英和対訳 一般財団法人日本規格協会 SUBMISSION INTERFACE REFINEMENTS Released 2017 08 23 Stages allwed t submit dcuments have been mdified Fr
untitled
SUBJECT: Applied Biosystems Data Collection Software v2.0 v3.0 Windows 2000 OS : 30 45 Cancel Data Collection - Applied Biosystems Sequencing Analysis Software v5.2 - Applied Biosystems SeqScape Software
アラートの使用
CHAPTER 7 この章は 次の項で構成されています (P.7-2) アラートプロパティの設定 (P.7-4) アラートの一時停止 (P.7-6) アラート通知用電子メールの設定 (P.7-7) アラートアクションの設定 (P.7-7) 7-1 次のを実行して [Alert Central] へのアクセス アラート情報のソート アラートの有効化 無効化 削除 アラートのクリア アラートの詳細の表示などのタスクを実行できます
インテル(R) Visual Fortran Composer XE 2013 Windows版 入門ガイド
Visual Fortran Composer XE 2013 Windows* エクセルソフト株式会社 www.xlsoft.com Rev. 1.1 (2012/12/10) Copyright 1998-2013 XLsoft Corporation. All Rights Reserved. 1 / 53 ... 3... 4... 4... 5 Visual Studio... 9...
LAN Copyright c Daikoku Manabu This tutorial is licensed under a Creative Commons Attribution 2.1 Japan License
LAN 2014 3 19 Copyright c 1993 2014 Daikoku Manabu This tutorial is licensed under a Creative Commons Attribution 2.1 Japan License. 1 2 1.1................................... 2 1.2.........................
情報処理概論(第二日目)
実習資料 Linux 入門講習会 九州大学情報基盤研究開発センター 注意 : この内容は najima.cc.kyushu-u.ac.jp の任意の ID で利用できますが, ファイルの削除等を含んでいるので各コマンドの意味を理解するまでは講習会用 ID で利用することをお勧めします. 1 実習 1 ログイン ファイル操作 ディレクトリの作成 ファイルの移動, コピー, 削除 ログアウト 2 ログイン
Metasploit 2012.indb
7 2 Metasploit Metasploit Framework MSF Metasploit Metasploit 2 Metasploit Metasploit 2.1 Metasploit 2.1.1 エクスプロイト Web SQL 2.1.2 Framework リバースシェル Windows 5 バインドシェル 8 2 Metasploit OS 2.1.3 シェルコード Meterpreter
Microsoft PowerPoint - 演習2:MPI初歩.pptx
演習 2:MPI 初歩 - 並列に計算する - 2013 年 8 月 6 日 神戸大学大学院システム情報学研究科計算科学専攻横川三津夫 MPI( メッセージ パッシング インターフェース ) を使おう! [ 演習 2 の内容 ] はじめの一歩課題 1: Hello, world を並列に出力する. 課題 2: プロセス 0 からのメッセージを受け取る (1 対 1 通信 ). 部分に分けて計算しよう課題
untitled
Fortran90 ( ) 17 12 29 1 Fortran90 Fortran90 FORTRAN77 Fortran90 1 Fortran90 module 1.1 Windows Windows UNIX Cygwin (http://www.cygwin.com) C\: Install Cygwin f77 emacs latex ps2eps dvips Fortran90 Intel
memo ii
memo ii iii iv 1 2 3 4 5 6 7 8 1. 2. memo 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 1 2 3 47 1 2 3 48 memo 49 50 51 memo 52 memo 54
CLUSTERPRO MC StorageSaver istorage M シリーズ使用時の設定手順 (HP-UX 版 Linux 版 Windows 版 ) 2013(Apr) NEC Corporation istorage M シリーズを使用する場合の StorageSaver 設定手順 (H
CLUSTERPRO MC StorageSaver istorage M シリーズ使用時の設定手順 (HP-UX 版 Linux 版 Windows 版 ) 2013(Apr) NEC Corporation istorage M シリーズを使用する場合の StorageSaver 設定手順 (HP-UX 版 ) istorage M シリーズを使用する場合の StorageSaver 設定手順
RT300i/RT140x/RT105i 取扱説明書
2 3 4 5 6 7 8 9 10 Bold face Enter Ctrl Tab BS Del Typewriter face RT105i RT300i RT140p RT140f RT140i RT140e RT105i RT300i 11 RARP 9600 bit/s 8 http://www.rtpro.yamaha.co.jp/ ftp.rtpro.yamaha.co.jp 12
Microsoft Word - PrivateAccess_UM.docx
`````````````````SIRE Page 1 English 3 日本語 7 Page 2 Introduction Welcome to! is a fast, simple way to store and protect critical and sensitive files on any ixpand Wireless Charger. Create a private vault
Microsoft Word - appendix_b_srft.doc
付録 B 高速ファイル転送ソフト SRFT について 1 SRFT とは 本センターに導入されている SR11000 では ファイルシステムとして主に HSFS が使用されています このファイルシステムは最適化されたプログラムが大量のデータを扱うときには高い性能を発揮しますが HSFS の特性を考慮していない一般のプログラムでは本来の性能は得られません ファイル転送に使用する SCP は HSFS
PowerPoint Presentation
大規模計算機システム利用講習会スーパーコンピュータ利用入門 大阪大学サイバーメディアセンター大規模計算研究部門吉野元 [email protected] 参考資料 大規模計算機システム利用講習会スーパーコンピュータ利用入門 (2013 年 9 月 10 日 ) 大阪大学サイバーメディアセンター大阪大学情報推進部情報基盤課研究系システム班 2 目 次 UNIX 環境を利用するための基礎知識
<4D F736F F F696E74202D D F95C097F D834F E F93FC96E5284D F96E291E85F8DE391E52E >
SX-ACE 並列プログラミング入門 (MPI) ( 演習補足資料 ) 大阪大学サイバーメディアセンター日本電気株式会社 演習問題の構成 ディレクトリ構成 MPI/ -- practice_1 演習問題 1 -- practice_2 演習問題 2 -- practice_3 演習問題 3 -- practice_4 演習問題 4 -- practice_5 演習問題 5 -- practice_6
Text
1 / 10 2014/03/23 10:26 今回の講習の目的は,OpenFOAM をカスタマイズ ソースコードを変更する ) ための手順の全体像を学ぶことである 時間 に制約があるため, ソースコードの詳細には触れない http://openfoamwiki.net/index.php/how_to_add_temperature_to_icofoam この資料は,OpenFOAM 2.3.0
HA8000シリーズ ユーザーズガイド ~BIOS編~ HA8000/RS110/TS10 2013年6月~モデル
P1E1M01500-3 - - - LSI MegaRAID SAS-MFI BIOS Version x.xx.xx (Build xxxx xx, xxxx) Copyright (c) xxxx LSI Corporation HA -0 (Bus xx Dev
Intel MPI Library Linux
インテル MPI ライブラリ Linux* 版 v1.0 GOLD インストール ガイド 重要 製品をインストールするには 有効なライセンス ファイルが必要です 製品をインストールする前に 本書を必ずお読みいただき 有効なライセンス ファイルを入手してください 詳しくは 1 ページの インストールの前に 製品の登録が必要です をご参照ください エクセルソフト株式会社 www.xlsoft.com インテル
3.Cygwin で日本語を使いたい Cygwin で以下のコマンドを実行すると それ以降 メッセージが日本語になります export LANG=ja_JP.UTF-8 これは 文字コードを日本語の UTF-8 に設定することを意味しています UTF-8 は Cygwin で標準の文字コードで, 多
Cygwin 使いこなしマニュアル 2011/10/17 1.Cygwin の起動 Cygwin のインストールが完了したら 一般ユーザーで Windows にログインし Cygwin を起動してみましょう 下の図は ユーザー名 densan でログインして Cygwin を起動した後 いくつかコマンドを実行してみたところです 2.Cygwin のファイルはどこにある? Windows から Cygwin
OpenMP¤òÍѤ¤¤¿ÊÂÎó·×»»¡Ê£±¡Ë
2011 5 26 scalar Open MP Hello World Do (omp do) (omp workshare) (shared, private) π (reduction) scalar magny-cours, 48 scalar scalar 1 % scp. ssh / authorized keys 133. 30. 112. 246 2 48 % ssh 133.30.112.246
Geant4を使ってみよう
Geant4 を使ってみよう まずは サンプルを動かしてみましょう ここからは 特に記載がない限り /home/****/++++(win:c:\cygwin\home\++++) を基準 ディレクトリとして扱います (**** は学年のディレクトリ ++++ は自分の名前です ) まずは サンプルを動かすための下準備です xterm( ウィンドウ ) を開いて下さい (Windows 版の場合は
help gem gem gem my help
hikiutils 1234 2017 3 1 1 6 1.0.1 help gem................... 7 gem.................................... 7 gem................................... 7 my help.................................. 7 my help......................
再起動した状態になり パスワードを入力すると 図 2 のように DEXCS2011 のアイコ ンがデスクトップ上に表示される 2 端末を準備する メニューバーにある端末の形を左クリック 図 2 デスクトップ メニューバーに端末の形がない場合 図 3 メニューバー アプリケーション アクセサリー 端末
OpenFOAM の使い方準備編 目次 DALAB 鍔田 12/7/14 1. DEXCS2011 をインストール 2. OpenFOAM-2.1.1 を DEXCS に導入する 3. 例題を実行する 4. ParaView でのマウスによる操作方法 5. Tab キーの活用 6. 講習に使用するファイルのダウンロード この構築は Windows7(64bit メモリ :4GB) のパソコン上の仮想マシン
Windows Cygwin Mac *1 Emacs Ruby ( ) 1 Cygwin Bash Cygwin Windows Cygwin Cygwin Mac 1 Mac 1.2 *2 ls *3 *1 OS Linux *2 *3 Enter ( ) 2
September 2016 1 Windows Cygwin Mac *1 Emacs Ruby 1 1.1 ( ) 1 Cygwin Bash Cygwin Windows Cygwin Cygwin Mac 1 Mac 1.2 *2 ls *3 *1 OS Linux *2 *3 Enter ( ) 2 ~/16:00:20> ls 2 2 ls ls -a ~/16:00:20> ls -a
cocos2d-x #cocos2d-x
cocos2d-x #cocos2d-x 1 1: cocos2d-x 2 2 Examples 2 Mac OS X 2 2 2 2 Windows 3 3 3 4 8 You can share this PDF with anyone you feel could benefit from it, downloaded the latest version from: cocos2d-x It
Introduction Purpose This course explains how to use Mapview, a utility program for the Highperformance Embedded Workshop (HEW) development environmen
Introduction Purpose This course explains how to use Mapview, a utility program for the Highperformance Embedded Workshop (HEW) development environment for microcontrollers (MCUs) from Renesas Technology
EMC VNX Monitoring and Reportingユーザー ガイド
EMC VNX Monitoring and Reporting 1.0 P/N 300-014-420 02 Copyright 2012 EMC Corporation. All rights reserved. 2012 11 EMC Corporation EMC Corporation EMC EMC 2 EMC EMC EMC Corporation EMC http://japan.emc.com/support-training/support/online-support.htm
