MATLAB® における並列・分散コンピューティング ~ Parallel Computing Toolbox™ & MATLAB Distributed Computing Server™ ~

Size: px
Start display at page:

Download "MATLAB® における並列・分散コンピューティング ~ Parallel Computing Toolbox™ & MATLAB Distributed Computing Server™ ~"

Transcription

1 MATLAB における並列 分散コンピューティング ~ Parallel Computing Toolbox & MATLAB Distributed Computing Server ~ MathWorks Japan Application Engineering Group Takashi Yoshida 2016 The MathWorks, Inc. 1

2 System Configuration Desktop Computer Local Computer Cluster Scheduler MATLAB Desktop (Client) Scale-out 2

3 Parallel Computing Toolbox ローカル環境によるスケールアップ Desktop Computer Local 並列 分散コンピューティング向けアプリ開発環境を提供 最大 512CPU コアをサポート GP-GPU (NVIDIA 社製グラフィックスカード Compute Capability 2.0 以上 ) をサポート 初心者から上級者向けまでの機能を提供 ビルトイン関数の並列化 Parallel FOR-loop MPI プログラミング MATLAB Desktop (Client) Parallel Computing Toolbox 3

4 MATLAB Distributed Computing Server クラスタ環境へのスケールアウト クラスタ上での並列 分散コンピューティング環境を提供 大規模解析 シミューレーション MATLAB / Simulink Product Family をサポート 汎用スケジューラとの連携 IBM Platform LSF Microsoft Windows HPC Server Altair PBS Professional TORQUE Generic Scheduler Grid Engine / SLURM / etc. Computer Cluster Scheduler MATLAB Distributed Computing Server 4

5 クラウドを利用したソフトウェア開発 PaaS (Platform as a Service) MATLAB / Simulink のクラウド利用の例 MATLAB のライセンスは Bring Your Own License Activation MathWorks Remote Access 5

6 クラウドを利用した計算環境の拡張 IaaS (Infrastructure as a Service) MATLAB Distributed Computing Server のクラウド利用の例 MATLAB のライセンスは Bring Your Own License ライセンス認証 license.dat 計算 License Server 6

7 Distributed Simulation パラメータ スウィープなシミューレーションを分散処理 parfor 既存モデルの繰り返し実行の例 QROUT = zeros(320,320,10); parfor n = 1:10 end QROUT(:,:,n) = QR_Trans_PCT_wrapper(n); 7

8 Offload Simulation シミューレーション実行環境の移行 batch 既存モデルのオフロード実行の例 >> %% Run a model on a cluster using BATCH >> mycluster = parcluster( mycluster ); % Select a cluster profile >> job = batch('callmodelscript'); % Create a job and submit it >> wait(job); % Wait until the submitted job has done >> out = load(job); % Retrieve the output from a worker >> >> %% Do a post-process >> delete(job); % Delete the job object >> datastr = get(out.ans, 'ScopeData'); % Get the output from outport block >> clear out % Discard large data >> %% Plot the result of simulation >> figure; >> plot(datastr.time, datastr.signals.values); mdl = 'sldemo_suspn_3dof'; open_system(mdl,'loadonly'); sim(mdl); callmodelscript.m 8

9 Benchmark Testing 評価モデル Dual Clutch Transmission Model 詳細に関しては以下をご覧ください シフトスケジュール 161 セットの中から燃費効率の最も良いケースを探索 9

10 Benchmark Testing Offload Simulation 環境 CPU Memory Storage Type OS Lenovo T520 c3.2xlarge Intel Core i7 2.80GHz (2 physical cores / 2 virtual cores) Intel Xeon 2.80GHz (4 physical cores / 8 virtual cores) c4.8xlarge Intel Xeon 2.90GHz 2 (Total : 18 physical / 36 virtual cores) 8GB HDD Windows 7 SP1 64bit Enterprise Edition 15GB SSD Windows Server 2012 R2 Standard 60GB SSD Windows Server 2012 R2 Standard シミュレーション 1 回辺りの計算時間 ( 秒 ) T520 c3.2xlarge c4.8xlarge 10

11 Benchmark Testing Distributed Simulation 環境 CPU Memory Storage Type OS Lenovo T520 c3.2xlarge Intel Core i7 2.80GHz (2 physical cores / 2 virtual cores) Intel Xeon 2.80GHz (4 physical cores / 8 virtual cores) c4.8xlarge Intel Xeon 2.90GHz 2 (Total : 18 physical / 36 virtual cores) 8GB HDD Windows 7 SP1 64bit Enterprise Edition 15GB SSD Windows Server 2012 R2 Standard 60GB SSD Windows Server 2012 R2 Standard 全 161 シミュレーションの計算時間 ( 秒 ) T520 c3.2xlarge c3.2xlarge 2 c4.8xlarge2 11

12 まとめ 1 回のシミュレーション時間短縮 開発と実行 両方をサーバ シミュレーション時間の短縮 複数回のシミュレーション時間短縮 開発はローカル 実行はサーバ 12

13 まとめ HPC 環境へのリモートアクセス 1 回のシミュレーション時間短縮 開発と実行 両方をサーバ シミュレーション時間の短縮 複数回のシミュレーション時間短縮 開発はローカル 実行はサーバ サーバ環境に MATLAB/Simulink を用意 MATLAB ライセンスは BYOL On-premise Remote access Cloud (Amazon EC2) 13

14 まとめ HPC 環境を使った Offload Simulation 1 回のシミュレーション時間短縮 開発と実行 両方をサーバ シミュレーション時間の短縮 複数回のシミュレーション時間短縮 開発はローカル 実行はサーバ ローカルホストには Parallel Computing Toolbox サーバ環境には MATLAB Distributed Computing Server ネットワークライセンスの負荷低減 MATLAB Distributed Computing Server On-premise Cloud (Amazon EC2) 14

15 まとめ HPC 環境へのリモートアクセスと分散シミュレーション 1 回のシミュレーション時間短縮 開発と実行 両方をサーバ シミュレーション時間の短縮 複数回のシミュレーション時間短縮 開発はローカル 実行はサーバ サーバ環境に MATLAB/Simulink そして Parallel Computing Toolbox MATLAB Distributed Computing Sever による拡張 Remote access Parallel Computing Toolbox On-premise Parallel Computing Toolbox Cloud (Amazon EC2) 15

16 まとめ HPC 環境を用いた分散シミュレーション 1 回のシミュレーション時間短縮 開発と実行 両方をサーバ シミュレーション時間の短縮 複数回のシミュレーション時間短縮 開発はローカル 実行はサーバ ローカルホストには Parallel Computing Toolbox サーバ環境には MATLAB Distributed Computing Server MATLAB Distributed Computing Server On-premise Cloud (Amazon EC2) 16

Presentation Title

Presentation Title 並列計算 並列実行による高速化ソリューション MathWorks Japan アプリケーションエンジニアリング部アプリケーションエンジニア吉田剛士 2012 The MathWorks, Inc. 1 アジェンダ MATLAB R2012b ハイライト PCT / MDCS 新機能ハイライト Simulink プロダクトの並列化 まとめ 2 MATLAB R2012b のハイライト 1 新しいデスクトップ

More information

GPGPU

GPGPU GPGPU 2013 1008 2015 1 23 Abstract In recent years, with the advance of microscope technology, the alive cells have been able to observe. On the other hand, from the standpoint of image processing, the

More information

1 Microsoft Windows Server 2012 Windows Server Windows Azure Hyper-V Windows Server 2012 Datacenter/Standard Hyper-V Windows Server Windo

1 Microsoft Windows Server 2012 Windows Server Windows Azure Hyper-V Windows Server 2012 Datacenter/Standard Hyper-V Windows Server Windo Windows Server 2012 2012 1 Cloud OS Windows Azure Platform On-Premises Service Provider 1 Microsoft Windows Server 2012 Windows Server 2012 1 Windows Azure Hyper-V Windows Server 2012 Datacenter/Standard

More information

untitled

untitled Oracle Direct Seminar IT Agenda 1. Oracle RAC on Oracle VM 2. Oracle Database 11gR2 3. Oracle Exadata Oracle Direct Concierge SQL Server MySQL PostgreSQL Access

More information

............................................................................................................................. 3.......................

............................................................................................................................. 3....................... Xeon Microsoft* System Center Virtual Machine Manager Self-Service Portal 2.0 Microsoft* System Center Virtual Machine Manager Self-Service Portal 2.0 Xeon 5500 Xeon 5600 IT IT Xeon Windows Server* Hyper-V*

More information

Z8 G4 WorkstationでのANSYS19.1 Mechanical ベンチマーク結果紹介資料(フル版)

Z8 G4 WorkstationでのANSYS19.1 Mechanical ベンチマーク結果紹介資料(フル版) Z8 G4 Workstation での ANSYS19.1 Mechanical ベンチマーク結果紹介資料 ( フル版 ) 株式会社日本 HP サービス ソリューション事業本部技術本部クライアント技術部清水康輔 (Workstation Technical Specialist) Sep 2018 システム構成 Workstation : Z8 G4 Workstation CPU : Xeon

More information

HPEハイパフォーマンスコンピューティング ソリューション

HPEハイパフォーマンスコンピューティング ソリューション HPE HPC / AI Page 2 No.1 * 24.8% No.1 * HPE HPC / AI HPC AI SGIHPE HPC / AI GPU TOP500 50th edition Nov. 2017 HPE No.1 124 www.top500.org HPE HPC / AI TSUBAME 3.0 2017 7 AI TSUBAME 3.0 HPE SGI 8600 System

More information

Microsoft Enterprise Mobility License

Microsoft Enterprise Mobility License 2015 4 Microsoft Enterprise Mobility License Microsoft Enterprise Mobility License Contents 3 3 3 4 Azure Active Directory Premium (Azure ADP) Microsoft Intune Azure Rights Management Service (Azure RMS)

More information

HP High Performance Computing(HPC)

HP High Performance Computing(HPC) ACCELERATE HP High Performance Computing HPC HPC HPC HPC HPC 1000 HPHPC HPC HP HPC HPC HPC HP HPCHP HP HPC 1 HPC HP 2 HPC HPC HP ITIDC HP HPC 1HPC HPC No.1 HPC TOP500 2010 11 HP 159 32% HP HPCHP 2010 Q1-Q4

More information

HPE Moonshot System ~ビッグデータ分析&モバイルワークプレイスを新たなステージへ~

HPE Moonshot System ~ビッグデータ分析&モバイルワークプレイスを新たなステージへ~ Brochure HPE Moonshot System HPE Moonshot System 4.3U 45 HPE Moonshot System Xeon & HPE Moonshot System HPE Moonshot System HPE HPE Moonshot System &IoT & SoC Xeon D-1500 Broadwell-DE HPE ProLiant m510

More information

PC Development of Distributed PC Grid System,,,, Junji Umemoto, Hiroyuki Ebara, Katsumi Onishi, Hiroaki Morikawa, and Bunryu U PC WAN PC PC WAN PC 1 P

PC Development of Distributed PC Grid System,,,, Junji Umemoto, Hiroyuki Ebara, Katsumi Onishi, Hiroaki Morikawa, and Bunryu U PC WAN PC PC WAN PC 1 P PC Development of Distributed PC Grid System,,,, Junji Umemoto, Hiroyuki Ebara, Katsumi Onishi, Hiroaki Morikawa, and Bunryu U PC WAN PC PC WAN PC 1 PC PC PC PC PC Key Words:Grid, PC Cluster, Distributed

More information

untitled

untitled ALTIRIS DEPLOYMENT SOLUTION 6.9 Quick Startup Guide Rev. 1.2 2008 7 11 1.... 2 DEPLOYMENT SERVER... 2 DEPLOYMENT CONSOLE... 2 DEPLOYMENT DATABASE... 2 DEPLOYMENT SHARE... 3 PXE SERVER... 3 DEPLOYMENT AGENT...

More information

スライド 1

スライド 1 VMware CIT Japan 006 6 CIT Agenda VMWARE Pfizer Japan Inc. 953 648 6 09 -5-00 Discovery Approaches 7,000,000 Compounds Screened,000 Screening Hits Candidates 6 Candidates Product 700 MR* MR Medical Representative

More information

Slides: TimeGraph: GPU Scheduling for Real-Time Multi-Tasking Environments

Slides: TimeGraph: GPU Scheduling for Real-Time Multi-Tasking Environments 計算機アーキテクチャ第 11 回 マルチプロセッサ 本資料は授業用です 無断で転載することを禁じます 名古屋大学 大学院情報科学研究科 准教授加藤真平 デスクトップ ジョブレベル並列性 スーパーコンピュータ 並列処理プログラム プログラムの並列化 for (i = 0; i < N; i++) { x[i] = a[i] + b[i]; } プログラムの並列化 x[0] = a[0] + b[0];

More information

Windows SE RAC 10g 構築手順書

Windows SE RAC 10g 構築手順書 Windows!? Creation Date: Oct 05, 2004 Last Update: April 19, 2005 !? Windows Windows Oracle Database 10g Windows Oracle!? Windows!? Windows!? Windows 4 1. Oracle Fail Safe 2. Oracle 3. Oracle Fail Safe

More information

2011年11月10日 クラウドサービスのためのSINET 学認説明会 九州地区説明会 九州大学キャンパス クラウドシステムの導入 伊東栄典 情報基盤研究開発センター 1

2011年11月10日 クラウドサービスのためのSINET 学認説明会 九州地区説明会 九州大学キャンパス クラウドシステムの導入 伊東栄典 情報基盤研究開発センター 1 2011年11月10日 クラウドサービスのためのSINET 学認説明会 九州地区説明会 九州大学キャンパス クラウドシステムの導入 伊東栄典 情報基盤研究開発センター ito.eisuke.523@m.kyushu-u.ac.jp 1 用 方 } } } } } 用 (Public Cloud) } Amazon EC2/S3/ElasticMapReduce } (Community Cloud)

More information

12 PowerEdge PowerEdge Xeon E PowerEdge 11 PowerEdge DIMM Xeon E PowerEdge DIMM DIMM 756GB 12 PowerEdge Xeon E5-

12 PowerEdge PowerEdge Xeon E PowerEdge 11 PowerEdge DIMM Xeon E PowerEdge DIMM DIMM 756GB 12 PowerEdge Xeon E5- 12ways-12th Generation PowerEdge Servers improve your IT experience 12 PowerEdge 12 1 6 2 GPU 8 4 PERC RAID I/O Cachecade I/O 5 Dell Express Flash PCIe SSD 6 7 OS 8 85.5% 9 Dell OpenManage PowerCenter

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション PC クラスタシンポジウム 日立のテクニカルコンピューティングへの取り組み 2010/12/10 株式会社日立製作所中央研究所清水正明 1 目次 1 2 3 日立テクニカルサーバラインナップ 日立サーバラインナップ GPU コンピューティングへの取り組み 4 SC10 日立展示 2 1-1 日立テクニカルサーバ : History & Future Almost 30 Years of Super

More information

iDIVO_Manager_service対応OSと必須ソフトウェア

iDIVO_Manager_service対応OSと必須ソフトウェア idivo Manager Service(Ver.1.0.0) AIX 6L(6.1) AIX 7L(7.1) HP-UX 11.23(11iv2) OS アーキテクチャー備考 POWER POWER Itanium ( 注 1) HP-UX 11.31(11iv3) Itanium Solaris 10 SPARC ( 注 2) Red Hat Enterprise Linux 5 Advanced

More information

_CS6.indd

_CS6.indd ULTIMATE PREMIUM STANDARD BIM Autodesk Building Design Suite BIM 3 Autodesk Building Design Suite Autodesk Building Design Suite Standard: DWG DWG AutoCAD Autodesk Building Design Suite Ultimate: BIM Premium

More information

楽2ライブラリ Smart

楽2ライブラリ Smart P2WW-2993-01 はじめにお読みください Smart Smart Smart 2 4 6 PFU LIMITED 2014 10 12-14 16 楽 2 ライブラリ Smart とは Smart Smart モバイル機器でもデータを閲覧できます Smart for ios Smart for Android App Store Google Play 1 2 e ScanSnap 2 3

More information

WS_EOS_user_Web

WS_EOS_user_Web 2003 2003 Server and Cloud Platform Microsoft Azure http://aka.ms/ws03mig http://www.microsoft.com/ja-jp/server-cloud/#fbid=sct1bzgkj36 http://www.microsoft.com/japan/msbc/express/campaign/azure/ http://www.microsoft.com/ja-jp/casestudies

More information

Introduction

Introduction Introduction R&D More Than Web - - 3 R&D Vision Fusion Interaction Collaboration 3 6 Client Server Platform Client Server Platform Client Client Server Platform Server Client Server Platform Platform

More information

今から間にあう仮想化入門とXenについて

今から間にあう仮想化入門とXenについて Xen Linux 2006 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice Agenda IA Xen. Xen 4. Xen 2 19 10 1 IA IA Server Linux Windows Linux Linux

More information

情報処理学会研究報告 IPSJ SIG Technical Report Vol.2013-HPC-139 No /5/29 Gfarm/Pwrake NICT NICT 10TB 100TB CPU I/O HPC I/O NICT Gf

情報処理学会研究報告 IPSJ SIG Technical Report Vol.2013-HPC-139 No /5/29 Gfarm/Pwrake NICT NICT 10TB 100TB CPU I/O HPC I/O NICT Gf Gfarm/Pwrake NICT 1 1 1 1 2 2 3 4 5 5 5 6 NICT 10TB 100TB CPU I/O HPC I/O NICT Gfarm Gfarm Pwrake A Parallel Processing Technique on the NICT Science Cloud via Gfarm/Pwrake KEN T. MURATA 1 HIDENOBU WATANABE

More information

HPCS

HPCS 会社紹介 Gfarm ワークショップ 2018 2018 年 3 2 株式会社 HPCソリューションズ河野証 事業概要 HPC ソリューションプロバイダ HPC 製品ハードウェアソフトウェア パブリッククラウド コンサルティングアプラインス等 2 事業概要 HPC ソリューションプロバイダ HPC 製品ハードウェアソフトウェア 3 事業概要 HPC ソリューションプロバイダ Analyze-IT/Predict-IT

More information

GPU n Graphics Processing Unit CG CAD

GPU n Graphics Processing Unit CG CAD GPU 2016/06/27 第 20 回 GPU コンピューティング講習会 ( 東京工業大学 ) 1 GPU n Graphics Processing Unit CG CAD www.nvidia.co.jp www.autodesk.co.jp www.pixar.com GPU n GPU ü n NVIDIA CUDA ü NVIDIA GPU ü OS Linux, Windows, Mac

More information

2018年9月18日 PCクラスターコンソーシアム実用アプリケーション・シンポジウム IBM

2018年9月18日 PCクラスターコンソーシアム実用アプリケーション・シンポジウム IBM 実用アプリケーション シンポジウム IBM Spectrum LSF 分散コンピューティング環境における厳しい要求に対応するワークロード マネージャー 2018 年 9 月 18 日日本アイ ビー エム株式会社 IBM システムズ ハードウェア事業本部大澤暁 ohsawa@jp.ibm.com 本日の内容 Spectrum Computing Spectrum LSF ファミリー Cloud Bursting

More information

Exam : 日本語版 Title : Design and Providing MS Vol Licensing Solutions to Large Orgs Vendor : Microsoft Version : DEMO 1 / 5 Get Latest & Valid 0

Exam : 日本語版 Title : Design and Providing MS Vol Licensing Solutions to Large Orgs Vendor : Microsoft Version : DEMO 1 / 5 Get Latest & Valid 0 GetCertkey http://www.getcertkey.com No help, Full refund! Exam : 070-672 日本語版 Title : Design and Providing MS Vol Licensing Solutions to Large Orgs Vendor : Microsoft Version : DEMO 1 / 5 Get Latest &

More information

Windows Embedded 8 Standard

Windows Embedded 8 Standard Windows Embedded Server のご紹介 東京エレクトロンデバイス株式会社 インテリジェントシステムカンパニーエンベデッドソリューション部 2013 年 1 月 本資料の著作権は 東京エレクトロンデバイス株式会社に帰属します 許可なく 転載 複製することを禁止します Windows Server OSの進化 Microsoft社は Windows Server製品を定期的に製品リリースしています

More information

HPC (pay-as-you-go) HPC Web 2

HPC (pay-as-you-go) HPC Web 2 ,, 1 HPC (pay-as-you-go) HPC Web 2 HPC Amazon EC2 OpenFOAM GPU EC2 3 HPC MPI MPI Courant 1 GPGPU MPI 4 AMAZON EC2 GPU CLUSTER COMPUTE INSTANCE EC2 GPU (cg1.4xlarge) ( N. Virgina ) Quadcore Intel Xeon 5570

More information

FileMaker Cloud App FileMaker Pro FileMaker Go FileMaker WebDirect App FileMaker Cloud Amazon Web Services (AWS) Marketplace AWS FileMaker Server File

FileMaker Cloud App FileMaker Pro FileMaker Go FileMaker WebDirect App FileMaker Cloud Amazon Web Services (AWS) Marketplace AWS FileMaker Server File An Apple Subsidiary FileMaker Cloud Version 1.16 October 2017 FileMaker Cloud App FileMaker Pro FileMaker Go FileMaker WebDirect App FileMaker Cloud Amazon Web Services (AWS) Marketplace AWS FileMaker

More information

(^^

(^^ 57 GRACE 2012 2 21 munetomo@iic.hokudai.ac.jp 1996 1999 1998 1999 1999 (^^ 1962 2003 1979 11 43TFlops 2,000 40, Mem:128GB, 10GbE x 2 500TBytes Web Web IT SR16000 Model M1 22 Total: 172 TFlops Power 7

More information

ダウングレードサービス対象製品一覧 (Windows) (2018 年 6 月 1 日更新 ) アプリケーションサーバ製品 ( 実行基盤製品 ) : 最新リリースバージョン : ダウングレード対象 受注停止 ( 予定を含む ) カテゴリ 最新リリース製品名 ダウングレード対象 バージョン バージョン

ダウングレードサービス対象製品一覧 (Windows) (2018 年 6 月 1 日更新 ) アプリケーションサーバ製品 ( 実行基盤製品 ) : 最新リリースバージョン : ダウングレード対象 受注停止 ( 予定を含む ) カテゴリ 最新リリース製品名 ダウングレード対象 バージョン バージョン ダウングレードサービス対象製品一覧 (Windows) (2018 年 6 月 1 日更新 ) アプリケーションサーバ製品 ( 実行基盤製品 ) : 最新リリースバージョン : ダウングレード対象 受注停止 ( 予定を含む ) カテゴリ 最新リリース製品名 ダウングレード対象 バージョン Express - - - - - - - - - - - - Web Edition - - - - - -

More information

23 Fig. 2: hwmodulev2 3. Reconfigurable HPC 3.1 hw/sw hw/sw hw/sw FPGA PC FPGA PC FPGA HPC FPGA FPGA hw/sw hw/sw hw- Module FPGA hwmodule hw/sw FPGA h

23 Fig. 2: hwmodulev2 3. Reconfigurable HPC 3.1 hw/sw hw/sw hw/sw FPGA PC FPGA PC FPGA HPC FPGA FPGA hw/sw hw/sw hw- Module FPGA hwmodule hw/sw FPGA h 23 FPGA CUDA Performance Comparison of FPGA Array with CUDA on Poisson Equation (lijiang@sekine-lab.ei.tuat.ac.jp), (kazuki@sekine-lab.ei.tuat.ac.jp), (takahashi@sekine-lab.ei.tuat.ac.jp), (tamukoh@cc.tuat.ac.jp),

More information

Part 1 IT CPU IT IT 1998 Windows NT Server 4.0, Terminal Server Edition 1 Windows Based Terminal WBT Windows CE 1 100Mbps 1Gbps LAN OS 1 PC 1 OS 2

Part 1 IT CPU IT IT 1998 Windows NT Server 4.0, Terminal Server Edition 1 Windows Based Terminal WBT Windows CE 1 100Mbps 1Gbps LAN OS 1 PC 1 OS 2 Microsoft Flexible Workstyle &BYOD Part 1 Part 2 Part 3 Windows Server 2012 Windows Server 2012 R2 RDS Part 1 IT CPU IT IT 1998 Windows NT Server 4.0, Terminal Server Edition 1 Windows Based Terminal WBT

More information

PRIMERGY RX300 S2 システム構成図

PRIMERGY RX300 S2 システム構成図 35 36 T Windows Server TM 2003, Standard Edition/ Windows Server TM 2003, Enterprise Edition/ Windows Server TM 2003, Standard x64 Edition/ Windows Server TM 2003, Enterprise x64 Edition/ Windows 2000

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 総務省 ICTスキル総合習得教材 概要版 eラーニング用 [ コース2] データ蓄積 2-5: 多様化が進展するクラウドサービス [ コース1] データ収集 [ コース2] データ蓄積 [ コース3] データ分析 [ コース4] データ利活用 1 2 3 4 5 座学本講座の学習内容 (2-5: 多様化が進展するクラウドサービス ) 講座概要 近年 注目されているクラウドの関連技術を紹介します PCやサーバを構成するパーツを紹介後

More information

workshop Eclipse TAU AICS.key

workshop Eclipse TAU AICS.key 11 AICS 2016/02/10 1 Bryzgalov Peter @ HPC Usability Research Team RIKEN AICS Copyright 2016 RIKEN AICS 2 3 OS X, Linux www.eclipse.org/downloads/packages/eclipse-parallel-application-developers/lunasr2

More information

HULFT-DataMagic Ver2.2.0 製品対応OS

HULFT-DataMagic Ver2.2.0 製品対応OS Ver2.2.0 製品対応 OS 2014 年 2 月 5 日以降適用 版最新 Version 2.2.0 for コード変換 オプション for DB 接続 オプション (Oracle) for DB 接続 オプション (DB2) for DB 接続 オプション (PostgreSQL) for DB 接続 オプション (SQL Server) for Excel オプション for テンプレート

More information

Microsoft Word - Hyper-V検証レポート docx

Microsoft Word - Hyper-V検証レポート docx Hyper- V 仮想環境上での ASTERIA WARP の動作検証 2012 年年 11 月 インフォテリア株式会社 本書は著作権法により保護されています インフォテリア株式会社による事前の許可無く 本書のいかなる部分も無断転載 複製 複写を禁じます 本書の内容は予告無しに変更更する事があります また 本書は ASTERIA Master Partner 様向けの資料料であり ASTERIA Master

More information

PowerPoint Presentation

PowerPoint Presentation グローバルバンクにおける最新クラウド活用事例 AWS で実現する ハイパフォーマンスコンピューティング Pawan Agnihotri Global Financial Services Solutions Architect 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. 金融サービスにおけるリスク管理

More information

Windows PC/ BCP () PC (BYOD: Bring Your Own Device) Windows 8 2 Windows 8 Windows 8 Windows Windows 8 Windows 8 Windows 8 PC/ 2

Windows PC/ BCP () PC (BYOD: Bring Your Own Device) Windows 8 2 Windows 8 Windows 8 Windows Windows 8 Windows 8 Windows 8 PC/ 2 Windows 8 1 (2012 10 ) Windows PC/ BCP () PC (BYOD: Bring Your Own Device) Windows 8 2 Windows 8 Windows 8 Windows Windows 8 Windows 8 Windows 8 PC/ 2 PC/ IT 4 5 PC 6 7 PC 8 9 3 1 SharePoint PC PC Windows

More information

P P P P P P P OS... P P P P P P

P P P P P P P OS... P P P P P P SAS Visual Analytics on MapR Converged Data Platform 2015 12 1. 1.1... P2 1.2... P2 2. 2.1... P3 2.2... P6 2.2.1... P6 2.2.2... P6 2.3... P10 3. 3.1 OS... P11 3.2... P12 3.3... P13 3.4... P13 3.5... P14

More information

Printer Driverセットアップ編

Printer Driverセットアップ編 Microsoft MS-DOS Windows Windows Server Windows Vista Internet Explorer PowerPoint Outlook Microsoft Corporation Microsoft Corporation Intel Intel Inside Itanium Pentium Intel Corporation USB-IF Universal

More information

HPE Moonshot System HDI ソリューション

HPE Moonshot System HDI ソリューション HPE Moonshot System HDI HPE ProLiant m700p HDI Hosted Desktop Infrastructure HPE Moonshot System HPE ProLiant m700p 1 45 180 4.3U HPE Moonshot System HPE Moonshot System HDI 1 1 HPE ProLiant m700p4 PC

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション ANSYS Mechanical Release18.1 BMT Results 作成 :2017-06-21 最終編集 :2017-07-03 項 所属 1 ご担当者 1 所属 2 ご担当者 2 ベンチマークテスト実施者 ベンチマークテスト概要 内容 株式会社 本 HP サービスソリューション事業本部技術本部クライアント技術部 清 康輔 株式会社 本 HP ワークステーションビジネス本部 橋秀樹

More information

sg_lenovo_os.xlsx

sg_lenovo_os.xlsx System x OS System Guide Windows Server 1/41 2/41 3/41 4/41 Lenovo OEMRed Hat Enterprise Linux 5/41 6/41 7/41 8/41 9/41 10/41 11/41 12/41 13/41 14/41 15/41 16/41 VMware Lenovo 17/41 18/41 19/41 20/41 21/41

More information

IT IBM Corporation

IT IBM Corporation 2009/9/25 ATC. 1 2009 IBM Corporation 1. 1. 2. 3. IT 2 2009 IBM Corporation 2006 8 9 (?) Google CEO, Eric Schmidt @ Search Engine Strategies Conference (*) emergent () 10 Network ComputerAjax LAMP (Linux

More information

LP-S820

LP-S820 K Q OS Windows Windows 7 EPSON EXCEED YOUR VISION Mac Macintosh Mac OS Apple Inc. Microsoft Windows Windows Server Windows Vista Microsoft Corporation Adobe Adobe Reader Adobe Systems Incorporated ...4...

More information

ウイルスバスター コーポレートエディション 10.6 SP3 システム要件

ウイルスバスター コーポレートエディション 10.6 SP3 システム要件 ウイルスバスターコーポレートエディション 10.6 SP3 システム要件 トレンドマイクロ株式会社 トレンドマイクロ株式会社は 本書および本書に記載されている製品を予告なしに変更する権利を有しています ソフトウェアをインストールして使用する前に Readme ファイル リリースノート および最新のユーザドキュメントを確認してください これらは 次のトレンドマイクロの Web サイトから入手できます

More information

Canon Industrial Imaging Platform Monitoring Edition 使用説明書

Canon Industrial Imaging Platform Monitoring Edition 使用説明書 ... 4... 4... 4... 5 1 Monitoring Edition... 8... 11... 13... 13... 13... 13 2 PLC... 16 XProtect Management Client... 17... 17... 18... 20... 23... 24... 26... 26... 27 3 Monitoring Edition Setup... 30...

More information

別紙7_ソフトウェア一覧

別紙7_ソフトウェア一覧 別紙 7 ソフトウェア一覧 平成 27 年 5 月 厚生労働省年金局事業管理課システム室 別紙 7- ソフトウェア一覧 ( 本番環境 ) No. ソフトウェア製品種別ソフトウェア製品選定したソフトウェア製品名及びバージョン ベンダ名ライセンス形態ライセンス名ライセンス数導入先機器備考 実行系支援系 DB 製品 Teradata 5 Teradata - - - 支援系 DB サーバ 2 実行系 支援系

More information

Amazon WorkSpaces Genta Watanabe, Solutions Architect ADSJ December 2 nd, Amazon.com, Inc. and its affiliates. All rights reserved. May not

Amazon WorkSpaces Genta Watanabe, Solutions Architect ADSJ December 2 nd, Amazon.com, Inc. and its affiliates. All rights reserved. May not Amazon WorkSpaces Genta Watanabe, Solutions Architect ADSJ December 2 nd, 2013 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified, or distributed in whole or in

More information

1重谷.PDF

1重谷.PDF RSCC RSCC RSCC BMT 1 6 3 3000 3000 200310 1994 19942 VPP500/32PE 19992 VPP700E/128PE 160PE 20043 2 2 PC Linux 2048 CPU Intel Xeon 3.06GHzDual) 12.5 TFLOPS SX-7 32CPU/256GB 282.5 GFLOPS Linux 3 PC 1999

More information

FY14Q4 SMB Magalog December - APJ Version

FY14Q4 SMB Magalog December - APJ Version Business Windows Server 2003? Microsoft Windows Server 2012 2012 R2 Dell Dell.co.jp Windows Server 2003 Dell.co.jp/win2003eos Windows Server 2012 E-mail : Microsoft_Solutions@dell.com 212-8589 580 20F

More information

ダウングレードサービス対象製品一覧 (Windows) (2018 年 11 月 1 日更新 ) アプリケーションサーバ製品 ( 実行基盤製品 ) : 最新リリースバージョン : ダウングレード対象 受注停止 ( 予定を含む ) カテゴリ 最新リリース製品名 ダウングレード対象 バージョン バージョ

ダウングレードサービス対象製品一覧 (Windows) (2018 年 11 月 1 日更新 ) アプリケーションサーバ製品 ( 実行基盤製品 ) : 最新リリースバージョン : ダウングレード対象 受注停止 ( 予定を含む ) カテゴリ 最新リリース製品名 ダウングレード対象 バージョン バージョ ダウングレードサービス対象製品一覧 (Windows) (2018 年 11 月 1 日更新 ) アプリケーションサーバ製品 ( 実行基盤製品 ) : 最新リリースバージョン : ダウングレード対象 受注停止 ( 予定を含む ) カテゴリ 最新リリース製品名 ダウングレード対象 バージョン Express - - - - - - - - - - - - Express Express Web Edition

More information

Windows Azure Platformを活用したPaaSサービス:FGCP/A5

Windows Azure Platformを活用したPaaSサービス:FGCP/A5 Windows Azure Platform PaaS : PaaS Service Using Windows Azure Platform 門間 仁 あらまし 2010 7 FUJITSU Global Cloud Platform Powered by Windows Azure Azure Windows Azure Abstract Fujitsu is preparing to offer

More information

ExpressUpdate Agent インストレーションマニュアル

ExpressUpdate Agent インストレーションマニュアル ExpressUpdate Agent Document Rev.2.10 1 ... 1... 2... 3... 4 1 ExpressUpdate Agent... 5 2... 6 3 ExpressUpdate Agent... 8 3.1 ExpressUpdate Agent (Windows)... 8 3.1.1... 8 3.1.2... 8 3.1.3 ExpressUpdate

More information

SAP のプラットフォームとして IBM Cloudを選択すべき理由徹底解説 :SAPをクラウドで活用する 3つのパターン 最善の選択肢は? ERP をクラウド化したいと考える場合 企業システムの中心を担うだけにその実現方法は慎重に検 討したい IBM が SAP システム向けに用意する 3 つのサ

SAP のプラットフォームとして IBM Cloudを選択すべき理由徹底解説 :SAPをクラウドで活用する 3つのパターン 最善の選択肢は? ERP をクラウド化したいと考える場合 企業システムの中心を担うだけにその実現方法は慎重に検 討したい IBM が SAP システム向けに用意する 3 つのサ SAP のプラットフォームとして IBM Cloudを選択すべき理由徹底解説 :SAPをクラウドで活用する 3つのパターン 最善の選択肢は? ERP をクラウド化したいと考える場合 企業システムの中心を担うだけにその実現方法は慎重に検 討したい IBM が SAP システム向けに用意する 3 つのサービスラインアップから ニーズに合わせた選 択肢を探る ERP ERP SAP IBM IBM 40

More information

▼ RealSecure Desktop Protector 7

▼ RealSecure Desktop Protector 7 System Scanner / Assuria Auditor 4.x システム要件 2006 年 9 月 8 日 System Scanner / Assuria Auditor 4.x システム要件... 1 System Scanner Console... 1 System Scanner 4.2.5 Console... 1 System Scanner 4.2 Console... 2

More information

sg_lenovo_sw.xlsx

sg_lenovo_sw.xlsx Lenovo ソフトウェア 製 品 & IBM OEM ソフトウェア 製 品 ガイド System Guide (PAE) Lenovo Enterprise Solustions Software 1/17 Lenovo Enterprise Solustions Software 2/17 Lenovo XClarity Administrator/XClarity Pro 3/17 4/17

More information

ArtiosCADセットアップガイド

ArtiosCADセットアップガイド セットアップガイド この度は 弊社製品をお買い上げいただき 誠にありがとうございます この セットアップガイド では ArtiosCAD Designer Solution のインストール アクティベーション手順と初期設定について説明します まず確認してください インストールをする前に はじめにお読みください を読み 動作環境を確認してください パソコンオペレーションシステムモニタープロッタ Intel

More information

PRIMERGY RX200 S8/RX350 S7とETERNUS LT40でのAcronis Backup & Recovery 11.5 Advanced Serverによるイメージバックアップ動作検証

PRIMERGY RX200 S8/RX350 S7とETERNUS LT40でのAcronis Backup & Recovery 11.5 Advanced Serverによるイメージバックアップ動作検証 富士通サーバ PRIMERGY RX200 S8 / RX350 S7 富士通テープライブラリ ETERNUS LT40 Acronis Backup & Recovery 11.5 Advanced Server イメージバックアップ動作検証報告 2014 年 4 月 アクロニス ジャパン株式会社 2013 1 目次 1. 検証の概要 1.1 検証の内容 1.2 検証期間 場所 2. 検証環境 3.

More information

Windowsユーザーの為のOracle Database セキュリティ入門

Windowsユーザーの為のOracle Database セキュリティ入門 Oracle on Windows etc http://www.oracle.co.jp/campaign/mb_tech/ Windows Server System Center / OTN Japan http://www.oracle.com/technology/global/jp/tech/windows/.net + Oracle Database.NET Developer Center

More information

Microsoft Word - site_protector_sp7_sysreq.doc

Microsoft Word - site_protector_sp7_sysreq.doc SiteProtector 2.0 Service Pack 7.0 2008 7 14 SiteProtector 2.0 Service Pack 7.0 システム要件... 1 Deployment Manager... 1 Deployment Manager システム要件... 1 Service Pack 7.0 - Recommended オプションシステム要件... 2 Service

More information

untitled

untitled [ ] A [] A 2011/09/01 2011/12/31 2011 8 ClusterPerfect : SplitBrain : : : Oracle,DB2 : 2HA SAN Windows Linux Solaris HP-UX AIX VMware Hyper-V Rev.2.2 B [] A A B B [N 1] A A B B C D C 2/ AF1700 998,000

More information

ダウングレードサービス対象製品一覧 (Windows) (2019 年 5 月 10 日更新 ) アプリケーションサーバ製品 ( 実行基盤製品 ) : 最新リリースバージョン : ダウングレード対象 受注停止 ( 予定を含む ) カテゴリ 最新リリース製品名 ダウングレード対象 バージョン バージョ

ダウングレードサービス対象製品一覧 (Windows) (2019 年 5 月 10 日更新 ) アプリケーションサーバ製品 ( 実行基盤製品 ) : 最新リリースバージョン : ダウングレード対象 受注停止 ( 予定を含む ) カテゴリ 最新リリース製品名 ダウングレード対象 バージョン バージョ ダウングレードサービス対象製品一覧 (Windows) (2019 年 5 月 10 日更新 ) アプリケーションサーバ製品 ( 実行基盤製品 ) : 最新リリースバージョン : ダウングレード対象 受注停止 ( 予定を含む ) カテゴリ 最新リリース製品名 ダウングレード対象 バージョン Express - - - - - - - - - - - - Express Web Edition - -

More information

BNJ-Sales_ _PriceList.xlsx

BNJ-Sales_ _PriceList.xlsx 価格表 - Barracuda Spam & Virus Firewall PLUS series ( スパム対策製品 ) 物理アプライアンス モデル詳細年数型番定価 ( 税別 ) 1 年 BSFI100a11 450,000 アクティブメールユーザ数 :1-50 3 年 BSFI100a33 785,000 ドメイン数 :10 5 年 BSFI100a55 1,125,000 1 年 BSFI200a11

More information

untitled

untitled VMware HA / DRS Dell PowerEdge Scott Hanson dell.com/techcenter 2007 4 ...3...4 HA DRS...5 HA... 6 HA... 6... 6 HA... 6 DRS... 7 DRS... 7 DRS... 8 DRS... 9 HA DRS...10... 10... 10...12 VM... 13... 13...14

More information

ダウングレードサービス対象製品一覧 (Windows) (2016 年 6 月 3 日更新 ) アプリケーションサーバ製品 ( 実行基盤製品 ) : 最新リリースバージョン : ダウングレード対象 受注停止 ( 予定を含む ) カテゴリ 最新リリース製品名 ダウングレード対象 バージョン バージョン

ダウングレードサービス対象製品一覧 (Windows) (2016 年 6 月 3 日更新 ) アプリケーションサーバ製品 ( 実行基盤製品 ) : 最新リリースバージョン : ダウングレード対象 受注停止 ( 予定を含む ) カテゴリ 最新リリース製品名 ダウングレード対象 バージョン バージョン ダウングレードサービス対象製品一覧 (Windows) (2016 年 6 月 3 日更新 ) アプリケーションサーバ製品 ( 実行基盤製品 ) : 最新リリースバージョン : ダウングレード対象 受注停止 ( 予定を含む ) カテゴリ 最新リリース製品名 ダウングレード対象 バージョン バージョン 製品名 9.3 9.2 9.1 8.5 8.4 8.3 8.2 8.1 7.1 6.5 6.4 6.3

More information

Windows2000 Edge Components V Edge Components V Java Edge Components

Windows2000 Edge Components V Edge Components V Java Edge Components WebSphere Application Server V5.1 Edge Components V5.1 / CBR Method Ver. 1.0 - Windows 2000 - 1.... 3 2. Windows2000 Edge Components V5.1... 4 2.1.... 4 2.2.... 4 3. Edge Components V5.1... 5 3.1.... 5

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 3CX v15 インストールガイド Revision 1.0 目次 1 システム要件 2 2 インストール手順 3 3CX 設定ツール 3 6 4 初期設定 10 ー 1 ー 1 システム要件 3CX IP-PBX ソフトウェアをインストールする前に 下記のシステム要件を確認してください 1) サポート OS Linux Debian 8 (kernel 3.16) Windows 7 SP1(Professional,

More information

デスクトップ仮想化の理解

デスクトップ仮想化の理解 Core vpro IT IT PC /OS 1 IT PC PC Core vpro PC .................................... 3 1................................................... 3 2................................. 4.................................................

More information

HP ProLiant サーバー Generation 8 ~AMD Opteron™ 6300シリーズプロセッサー搭載製品カタログ~

HP ProLiant サーバー Generation 8 ~AMD Opteron™ 6300シリーズプロセッサー搭載製品カタログ~ HP ProLiant Generation 8 AMD Opteron 6300 IT TCO AMD Opteron HP ProLiant Generation 8 IT HP ProLiant BL465c Gen8 HP ProLiant DL385p Gen8 IT AMD Opteron HP ProLiant Generation 8 ITTCO TCO TCO & Java 1 40%

More information

コミュニケーションユーティリティー編

コミュニケーションユーティリティー編 はじめに動付録デジタル複合機用 取扱説明書ソフトウェア ( コミュニケーションユーティリティー編 ) スキャナー設定作環境 Microsoft MS-DOS Windows Windows Server Windows Vista Internet Explorer Excel PowerPoint Outlook Windows Microsoft Corporation Microsoft Corporation

More information

PassMark PerformanceTest ™

PassMark PerformanceTest ™ KRONOS S ライン 性能ベンチマーク オーバークロックモニター OCCT OverClock Checking Tool i7z (A better i7 (and now i3, i5) reporting tool for Linux) KRONOS S800 CATIA Benchmark Aerospace - 8/17 passengers Jet - Mid Fuse DELL Precision

More information

HP StoreVirtual(LeftHand)

HP StoreVirtual(LeftHand) HP StoreVirtual LeftHand A HP StoreVirtual 4000/HP P4000 G2 SAS SERVER B SERVER C SERVER D CMC MDL-SAS ABCD SERVER B 1234 1 4 + RAID A A C C D B B D 1 2 3 2 3 4 RAID RAID RAID 50GB 50GB 200GB A B A D C

More information

Windows Azure Microsoft Azure 登 場 本 セッションはここ!! 2

Windows Azure Microsoft Azure 登 場 本 セッションはここ!! 2 プライベートクラウド 構 築 ツール ~ロードマップ~ Windows Azure Microsoft Azure 登 場 本 セッションはここ!! 2 1. Azure Pack の 今 2. Azure Stack の 前 に 最 近 の Azure 3. Azure Stack とは? 4. 今 のうちから 知 っておいてほしい 事 3 4 Microsoft Azure (パブリッククラウド)

More information

SolidWorks Student Edition 日本語インストレーションガイド インストールの前に必ずお読み下さい SolidWorks Student Edition のインストールメディアはDVDです インストールするコンピュータにはDVDメディアを再生できるドライブが

SolidWorks Student Edition 日本語インストレーションガイド インストールの前に必ずお読み下さい SolidWorks Student Edition のインストールメディアはDVDです インストールするコンピュータにはDVDメディアを再生できるドライブが SolidWorks Student Edition 2009-2010 日本語インストレーションガイド インストールの前に必ずお読み下さい SolidWorks Student Edition のインストールメディアはDVDです インストールするコンピュータにはDVDメディアを再生できるドライブが必要です ご使用いただけるSolidWorksは 1 台のPC 上でのみ有効となります 使用するPCを変更する場合は

More information

クラウド時代のインフラ構成/変更管理とコンプライアンス管理

クラウド時代のインフラ構成/変更管理とコンプライアンス管理 Oracle Direct Seminar / 2009 11 11 Agenda IT / / Oracle Direct Concierge SQL Server MySQL PostgreSQL Access Oracle Database Oracle Developer/2000 Web Oracle Database Oracle Database

More information

MAAB でのプレゼンテーション に関する提案

MAAB でのプレゼンテーション に関する提案 J-MAAB 2005 10 27 (1) OBD (2) (3) (4) OEM (5) MAAB J-MAAB 1. MBD (Model-Based Development) MBD Process 2. MAAB MAAB 3. J (Japan) -MAAB J-MAAB 4. J-MAAB WG WG 5. MBD Virtual World *SILS Rapid *HILS Real

More information

Microsoft Word - osce_10.6_sp3_p2_sys_req.doc

Microsoft Word - osce_10.6_sp3_p2_sys_req.doc ウイルスバスターコーポレートエディション 10.6 SP3 Patch 2 システム要件 トレンドマイクロ株式会社 トレンドマイクロ株式会社は 本書および本書に記載されている製品を予告なしに変更する権利を有しています ソフトウェアをインストールして使用する前に Readme ファイル リリースノート および最新のユーザドキュメントを確認してください これらは 次のトレンドマイクロの Web サイトから入手できます

More information

DataKeeper for Windows リリースノート

DataKeeper for Windows リリースノート DataKeeper for Windows リリースノート Version 7.4.2 (Version 7 Update 4 Maintenance 2) 重要 本製品をインストールまたは使用する前に 必ずこのドキュメントをお読みください! このドキュメントには インストール時とその前後に留意すべき重要な項目に関する情報が記載されています はじめに SteelEye DataKeeper Cluster

More information

V ERP Standard Edition 1 ST ST TOE TOE TOE TOE TOE TOE // TOE

V ERP Standard Edition 1 ST ST TOE TOE TOE TOE TOE TOE // TOE V ERP Standard Edition 2009/03/16 1.23 V ERP Standard Edition 1 ST...3 1.1 ST...3 1.2 TOE...3 1.3 TOE...3 1.3.1 TOE...3 1.3.2...4 1.3.3 TOE...5 1.3.4 TOE...6 1.3.5 TOE //...8 1.4 TOE...9 1.4.1 TOE...9

More information

統合運用管理ソフトウェア FUJITSU Software Systemwalker 総合カタログ

統合運用管理ソフトウェア FUJITSU Software Systemwalker 総合カタログ FUJITSU Software Systemwalker FUJITSU Software Systemwalker ICT ICTICT ICT ICT FUJITSU Software SystemwalkerICTICT ICT ICT ICT ICT 1 Systemwalker ICT ICT ICT ICT ICT Systemwalker ICT ICT ICT ICT ICT ICT

More information

HP High Performance Computing(HPC)

HP High Performance Computing(HPC) HP High Performance Computing HPC HPC HPC HPC HPC 1000 HPHPC HPC HP HPC HPC HPCHP HPC HP HPHPC HPC HP HPC HP IT IDCHP HPC 4 1 HPC HPCNo.1 HPCTOP5002008 6 HP 183 37% HP HPCHP B 1 Other 2Q08 HPC 2 20% 27%

More information

2015 年 4 月 6 日 Biz ホスティング Enterprise Cloud における Oracle Database Enterprise Edition RAC の提供開始について ~Oracle Database Enterprise Edition RAC をクラウド基盤で利用可能と

2015 年 4 月 6 日 Biz ホスティング Enterprise Cloud における Oracle Database Enterprise Edition RAC の提供開始について ~Oracle Database Enterprise Edition RAC をクラウド基盤で利用可能と 2015 年 4 月 6 日 Biz ホスティング Enterprise Cloud における Oracle Database Enterprise Edition RAC の提供開始について ~Oracle Database Enterprise Edition RAC をクラウド基盤で利用可能とするとともに 既存データベースライセンスのクラウド移行 (BYOL) も可能に~ NTT コミュニケーションズ

More information

C3印刷用.PDF

C3印刷用.PDF [ C-3 ] Oracle8i On Windows Agenda Windows Oracle8i Oracle8i for Windows NT/2000 R8.1.7 Oracle HTTP Server Oracle intermedia Oracle Workflow Windows Oracle8i for Windows Oracle8i Enterprise Edition Oracle8i

More information

LP-M720F

LP-M720F K Q OS Windows Windows 7 EPSON EXCEED YOUR VISION Mac Macintosh Mac OS Apple Inc. Microsoft Windows Windows Server Windows Vista Microsoft Corporation Adobe Adobe Reader Adobe Systems Incorporated ...4...10...

More information

IPSJ SIG Technical Report Vol.2011-IOT-12 No /3/ , 6 Construction and Operation of Large Scale Web Contents Distribution Platfo

IPSJ SIG Technical Report Vol.2011-IOT-12 No /3/ , 6 Construction and Operation of Large Scale Web Contents Distribution Platfo 1 1 2 3 4 5 1 1, 6 Construction and Operation of Large Scale Web Contents Distribution Platform using Cloud Computing 1. ( ) 1 IT Web Yoshihiro Okamoto, 1 Naomi Terada and Tomohisa Akafuji, 1, 2 Yuko Okamoto,

More information

Microsoft Word - OfficeScan10.6_System_Requirements-jp_ doc

Microsoft Word - OfficeScan10.6_System_Requirements-jp_ doc ウイルスバスターコーポレートエディション 10.6 システム要件 トレンドマイクロ株式会社 トレンドマイクロ株式会社は 本書および本書に記載されている製品を予告なしに変更する権利を有しています ソフトウェアをインストールして使用する前に Readme ファイル リリースノート および最新のユーザドキュメントを確認してください これらは 次のトレンドマイクロの Web サイトから入手できます http://www.trendmicro.co.jp/download/

More information

PRIMERGY システム構成図 (2010年4月版) ハードウェア一覧

PRIMERGY システム構成図 (2010年4月版) ハードウェア一覧 (1) SP: 記載の SP のみ適用可, : 適用不可,: 添付される媒体を示す (SP はディスクレスタイプに準ずる ),: ディスクレスタイプの適用 OS に準ずる, 項品名型名提供時期 5R:Red Hat Enterprise 5 (for Intel64),4A:Red Hat Enterprise AS (v.4 for EM64T), :Red Hat Enterprise ES (v.4

More information

EnSightのご紹介

EnSightのご紹介 オープン CAE シンポジウム 2014 汎用ポストプロセッサー EnSight の大規模データ対応 CEI ソフトウェア株式会社代表取締役吉川慈人 http://www.ceisoftware.co.jp/ 内容 大規模データで時間のかかる処理 クライアント サーバー機能 マルチスレッドによる並列処理 サーバーの分散処理 クライアントの分散処理 ( 分散レンダリング ) EnSightのOpenFOAMインターフェース

More information

かんたんスタートガイド

かんたんスタートガイド かんたんスタートガイド Kaspersky Small Office Security 1. 3 2. 6 2-1. 6 3. 9 4. 10 4-1. Windows PC 10 4-2. Mac 13 4-3. Android 16 4-4 Windows 20 5. 23 5-1. 23 5-2. 24 5-3. 25 6. 32 7. 35 2 1 カスペルスキースモールオフィスセキュリティの特徴

More information

09中西

09中西 PC NEC Linux (1) (2) (1) (2) 1 Linux Linux 2002.11.22) LLNL Linux Intel Xeon 2300 ASCIWhite1/7 / HPC (IDC) 2002 800 2005 2004 HPC 80%Linux) Linux ASCI Purple (ASCI 100TFlops Blue Gene/L 1PFlops (2005)

More information

<4D F736F F F696E74202D204E505F8E9F90A291E E815B CFC82AF B838B B838B C5E B8D5C91A E E4E41532E7

<4D F736F F F696E74202D204E505F8E9F90A291E E815B CFC82AF B838B B838B C5E B8D5C91A E E4E41532E7 次世代エンタープライズ向けスケールアップ & スケールアウト型モジュラー構造 Tiered クラスタ NAS 平成 22 年 4 月 1. トレンド ファイルサービスとして CIFS ファイルシェアリングが主流に Windows Active Directry によるセキュリティ管理下の流れ 低価格大容量スケーラブルな NAS のニーズ ハイパフォーマンススケールアウト NAS 用途の拡大 アプリケーションから見たストレージ

More information

PCライフサイクルの管理:生産性とIT効率の向上

PCライフサイクルの管理:生産性とIT効率の向上 IT@Intel IT IT PC 2012 7 PC IT IT PC IT Dave Buchholz IT Doug DeVetter IT John Gonzalez IT IT OS Omer Livne IT vpro AMT John Mahvi IT PC IT PC IT PC IT PC 6 IT 10 PC IT IT PC IT PC IT PC 2 4 PC PC PC 1

More information

GPU GPU CPU CPU CPU GPU GPU N N CPU ( ) 1 GPU CPU GPU 2D 3D CPU GPU GPU GPGPU GPGPU 2 nvidia GPU CUDA 3 GPU 3.1 GPU Core 1

GPU GPU CPU CPU CPU GPU GPU N N CPU ( ) 1 GPU CPU GPU 2D 3D CPU GPU GPU GPGPU GPGPU 2 nvidia GPU CUDA 3 GPU 3.1 GPU Core 1 GPU 4 2010 8 28 1 GPU CPU CPU CPU GPU GPU N N CPU ( ) 1 GPU CPU GPU 2D 3D CPU GPU GPU GPGPU GPGPU 2 nvidia GPU CUDA 3 GPU 3.1 GPU Core 1 Register & Shared Memory ( ) CPU CPU(Intel Core i7 965) GPU(Tesla

More information

1 / 1 idrac8 CPU 1 Intel Xeon E v5 Intel Pentium Intel Core i3 Intel Celeron Intel C236 Microsoft Windows Server 2008 R2 SP1 Microsoft Windows S

1 / 1 idrac8 CPU 1 Intel Xeon E v5 Intel Pentium Intel Core i3 Intel Celeron Intel C236 Microsoft Windows Server 2008 R2 SP1 Microsoft Windows S PowerEdge T130 Contents RAID /RAID & PCIe OS P2-3 P4 P5 P5 P6 P7-8 P9-15 P16-18 P19 P19 P20-23 P24 P25-27 P27-28 P29-30 V1.1 Mar. 2016 1 / 1 idrac8 CPU 1 Intel Xeon E3-1200 v5 Intel Pentium Intel Core

More information