インテル(R) Visual Fortran Composer XE 2013 Windows版 入門ガイド

Size: px
Start display at page:

Download "インテル(R) Visual Fortran Composer XE 2013 Windows版 入門ガイド"

Transcription

1 Visual Fortran Composer XE 2013 Windows* エクセルソフト株式会社 Rev. 1.1 (2012/12/10) Copyright XLsoft Corporation. All Rights Reserved. 1 / 53

2 Visual Studio Release G Compaq* Visual Fortran Copyright XLsoft Corporation. All Rights Reserved. 2 / 53

3 Visual Fortran Composer XE 2013 Visual Fortran 13.0 MKL Visual Fortran 13.0 Visual Fortran Microsoft* Visual Studio* IDE Visual Fortran 4 Visual Fortran Composer XE 2013 Update1 x86 C: Program Files Intel Composer XE 2013 x64 C: Program Files (x86) Intel Composer XE 2013 Windows 7 Professional x64 64 x86 32 Program Files (x86) Program Files Microsoft Visual Studio 2010* Shell Visual Studio Intel(R) Core(TM) i CPU 3.4GHz Sandy Bridge 8 OS Microsoft Windows 7 Professional x64 Intel Visual Fortran Composer XE 2013 Update1 IDE Microsoft Visual Studio 2010* Shell Copyright XLsoft Corporation. All Rights Reserved. 3 / 53

4 Visual Fortran Zip ja_jp en_us C: Program Files (x86) Intel Composer XE 2013 Samples ja_jp Fortran ipo_samples.zip C: Program Files (x86) Intel Composer XE 2013 Samples en_us Fortran ipo_samples.zip C work C: work ipo_samples.zip ipo_samples 3 ipo_sample_main.f90 ipo_sample_init.f90 ipo_sample_sum.f90 ipo_sample_init.f90 subroutine init(a, n) implicit none integer, intent(in) :: n real, intent(inout) :: a(n) integer :: i do i = 1, n a(i) = real(i) end do end subroutine init ipo_sample_main.f90 program main implicit none real :: res, mysum integer, parameter :: n=1000 real, dimension(n) :: a call init(a, n) res = mysum(a, n) print *, res end program main function add3(x) implicit none real :: add3 real, intent(in) :: x add3 = x + 3. end function add3 ipo_sample_sum.f90 function mysum(a, n) implicit none real :: mysum, add3 integer, intent(in) :: n real, intent(in), dimension(n) :: a integer :: i mysum = 0 do i = 1, n mysum = mysum + a(i) + add3(a(i)) end do end function mysum Copyright XLsoft Corporation. All Rights Reserved. 4 / 53

5 Visual Fortran ifort 1. Windows [ ] [ ] > [Intel Parallel Studio XE 2013] > [Command Prompt] > [ (R) XE 13.0 Update 1] > [IA-32 Visual Studio 2010 ] Visual Fortran PATH LIB INCLUDE "C: Program Files (x86) Intel Composer XE 2013 bin ipsxe-comp-vars.bat" ia32 vs2010 IA Visual Studio IA-32 Visual Studio 2008 IA-32 Visual Studio 2010 IA-32 Visual Studio Visual Studio Visual Studio Visual Studio 2012 IA-32 Visual Fortran Visual Studio 2010 Visual Fortran Copyright XLsoft Corporation. All Rights Reserved. 5 / 53

6 2. ifort ifort > ifort 3. link link ifort > link Copyright XLsoft Corporation. All Rights Reserved. 6 / 53

7 link Visual Studio Visual Fortran Note ifort Visual Fortran fortcom.exe link.exe ifort 4. > cd C: work ipo_samples ipo_samples 5. > dir Copyright XLsoft Corporation. All Rights Reserved. 7 / 53

8 6. ifort > ifort ipo_sample_main.f90 ipo_sample_init.f90 ipo_sample_sum.f90 7. ipo_sample_main.exe > ipo_sample_main.exe Note ifort /Fe > ifort ipo_sample_main.f90 ipo_sample_init.f90 ipo_sample_sum.f90 /Fe:Sample.exe Copyright XLsoft Corporation. All Rights Reserved. 8 / 53

9 Visual Studio Visual Fortran Microsoft Visual Studio Visual Studio Visual Studio 2010 Shell VS2010 Visual Studio Microsoft Visual Studio 1. Windows [ ] [Intel Parallel Studio XE 2013] [Parallel Studio XE 2013 with VS2010] [ ] [Microsoft Visual Studio 2010] [Microsoft Visual Studio 2010] VS2010 Copyright XLsoft Corporation. All Rights Reserved. 9 / 53

10 2. VS2010 [ ] - [ ] - [ ] [ ] [ (R) Visual Fortran] [ ] [ ] Sample C: work ipo_samples ipo_samples [ ] [OK] 3. [ ] [ ] [ ] Copyright XLsoft Corporation. All Rights Reserved. 10 / 53

11 [ ] [ ] 4. Sample Debug Copyright XLsoft Corporation. All Rights Reserved. 11 / 53

12 5. VS2010 [ ] - [ Sample ] [ ] [ ] Note Debug Release Debug Release Debug Release Note Copyright XLsoft Corporation. All Rights Reserved. 12 / 53

13 6. VS2010 [ ] - [ ] [ ] [ ] Debug Debug Sample.exe Copyright XLsoft Corporation. All Rights Reserved. 13 / 53

14 Sample.sln Sample.vfproj Sample.sln Visual Studio Note.vfproj.sln Copyright XLsoft Corporation. All Rights Reserved. 14 / 53

15 Visual Studio Visual Studio Debug 2 Visual Studio VS2010 [ ] - [ ] [ ] [ ] [ ] [Fortran] [ ] [ ] [OK] Copyright XLsoft Corporation. All Rights Reserved. 15 / 53

16 VS2010 [ ] [ / ] 48 call init(a, n) [ ] [ / ] [ ] F9 Copyright XLsoft Corporation. All Rights Reserved. 16 / 53

17 [ ] [ ] F5 Copyright XLsoft Corporation. All Rights Reserved. 17 / 53

18 Visual Studio [ ] F5 F11 F10 1 Shift+F print [ ] [ ] F5 print F5 [ ] [ ] F5 Copyright XLsoft Corporation. All Rights Reserved. 18 / 53

19 [ ] [ ] F5 call init(a, n) [ ] [ ] F11 init [ ] [ ] F10 F10 do a end do end do Shift+F10 n 1000 [ ] [ ] Shift+F11 init main init mysum print mysum Copyright XLsoft Corporation. All Rights Reserved. 19 / 53

20 mysum mysum do add3 mysum Visual Studio add3 end function add3 [ ] [ ] [ ] F5 program main [ ] [ ] [ ] Copyright XLsoft Corporation. All Rights Reserved. 20 / 53

21 init call init(a, n) Visual Studio [ ] A RES RES A A REAL(4) Copyright XLsoft Corporation. All Rights Reserved. 21 / 53

22 init init N 1000 do 1000 I do I 1 I do A init main a a Copyright XLsoft Corporation. All Rights Reserved. 22 / 53

23 mysum print print RES RES RES [ ] RES print Visual Studio [ ] Copyright XLsoft Corporation. All Rights Reserved. 23 / 53

24 Visual Fortran Microsoft Visual Studio 2010* Shell VS2010 matmul program matmul implicit none integer, parameter :: SIZE = 2048 real,dimension(size,size) :: a,b,c real*8 clock_start, clock_end integer i, j, k real*8 dclock write (*, '(/,A,I0,/)') "<Matmul 計算開始 > SIZE = ", SIZE clock_start = dclock()! 初期化処理 do i=1, SIZE do j=1, SIZE a(j,i) = 1.0 b(j,i) = i c(j,i) = 0.0 end do end do! 行列積和演算 do i=1, SIZE do k=1, SIZE do j=1, SIZE c(j,i) = c(j,i) + a(k,i) * b(j,k) end do end do end do clock_end = dclock() write (*,*) " 計算結果 = ", c(size, SIZE) write (*,*) " 計算時間 = ", (clock_end - clock_start), "[ 秒 ]" write (*,*) "" end program matmul Copyright XLsoft Corporation. All Rights Reserved. 24 / 53

25 a b c 3 a b c dclock matmul Visual Studio 1. Visual Studio Visual Studio 2. VS2010 [ ] - [ ] - [ ] [ ] [ ] [ ] matmul C: work [ ] [OK] 3. matmul [ ] [ ] [ ] Copyright XLsoft Corporation. All Rights Reserved. 25 / 53

26 4. [Fortran.f90 ] matmul.f90 [ ] 5. matmul matmul.f90 matmul Copyright XLsoft Corporation. All Rights Reserved. 26 / 53

27 6. matmul Debug Visual Studio Debug Core i7 2 SIZE Debug Release 2 Debug Release Debug Release [ ] [ ] [ ] Copyright XLsoft Corporation. All Rights Reserved. 27 / 53

28 matmul Debug Visual Studio Debug Debug [ ] [Fortran] Visual Fortran Copyright XLsoft Corporation. All Rights Reserved. 28 / 53

29 Release Release Debug Release Debug Release Release Copyright XLsoft Corporation. All Rights Reserved. 29 / 53

30 Debug Release [ ] [ ] Debug /Od Release /O2 Debug Release /Od /O2 SIMD SIMD Single Instruction Multiple Data a b c max 1 1 max SIMD 1 1 max / 4 do i = 1, max end do c(i) = a(i) + b(i) SIMD SIMD Copyright XLsoft Corporation. All Rights Reserved. 30 / 53

31 SIMD CPU SSE SSE2 SSE3 SSSE3 SSE4.1 SSE4.2 AVX AVX2 1 Core i SSE Core i AVX AVX2 Core i Core i AVX [Fortran] [ ] [ ] PC /QxHost PC /QxHost /QxAVX /QxHost /QxHost PC PC PC CPU Copyright XLsoft Corporation. All Rights Reserved. 31 / 53

32 [ ] [ ] 2 /Qvec-report2 /QxHost /Qvec-report2 [ ] 2 Copyright XLsoft Corporation. All Rights Reserved. 32 / 53

33 Release AVX Note Release /arch:sse2 /QxHost /Qvec-report2 /arch:sse2 /O2 Copyright XLsoft Corporation. All Rights Reserved. 33 / 53

34 /Qparallel [Fortran] [ ] [ ] /Qparallel [ ] [ ] /Qpar-report2 Copyright XLsoft Corporation. All Rights Reserved. 34 / 53

35 [ ] Note Copyright XLsoft Corporation. All Rights Reserved. 35 / 53

36 CPU SIZE SIZE = CPU 100% Note remark: /Qpar-threshold:n 100 /Qpar-threshold:100 /Qpar-threshold:90 Visual Studio [Fortran] [ ] [ ] Copyright XLsoft Corporation. All Rights Reserved. 36 / 53

37 Release /O2 /O3 /O2 CPU [Fortran] [ ] [ ] /O3 /O3 [Fortran] [ ] [ ] /Qopt-report:3 Copyright XLsoft Corporation. All Rights Reserved. 37 / 53

38 Visual Fortran.for.f.fpp.f90 prog.for prog.f prog.fpp prog.f90 Visual Studio [ ] [ ] [ ] [ (R) Composer XE] [Visual Fortran] [ ] Copyright XLsoft Corporation. All Rights Reserved. 38 / 53

39 G Windows OS 64 Visual Fortran 64 Windows [ ] [ ] > [Intel Parallel Studio XE 2013] > [Command Prompt] > [ (R) XE 13.0 Update 1] > [ (R) 64 Visual Studio 2010 ] Visual Studio Win32 [ ] [ ] [ ] [ ] Debug Release [ ] Copyright XLsoft Corporation. All Rights Reserved. 39 / 53

40 [ ] < > [ ] x64 [OK] [ ] Visual Studio x [Fortran] [ ] [ ] [ ] 64 Copyright XLsoft Corporation. All Rights Reserved. 40 / 53

41 Fortran Unknown /traceback Visual Studio [Fortran] [ ] [ ] Copyright XLsoft Corporation. All Rights Reserved. 41 / 53

42 /traceback [ ] [ ] [ ] /traceback Fortran [Fortran] [ ] [ ] [ ] [ ] Note Fortran Fortran [ ] > [ ] > [ ] > [ ] Copyright XLsoft Corporation. All Rights Reserved. 42 / 53

43 PC PC Visual Fortran OpenMP PC Dependency Walker Dependency Walker MATMUL.EXE 3 LIBIOMP5MD.DLL DLL LIBIOMP5MD.DLL Visual Fortran OpenMP OpenMP PC PC Visual Fortran fredist.txt C: Program Files (x86) Intel Composer XE 2013 Documentation en_us fredist.txt LIBIOMP5MD.DLL PC Copyright XLsoft Corporation. All Rights Reserved. 43 / 53

44 Visual Fortran C: Program Files (x86) Intel Composer XE 2013 redist ia32 compiler 32 C: Program Files (x86) Intel Composer XE 2013 redist intel64 compiler 64 PC PATH w_fcompxe_redist_msi_2013.x.xxx.zip X PC w_fcompxe_redist_ia32_ msi 32 w_fcompxe_redist_intel64_ msi 64 PATH C: Program Files (x86) Common Files Intel Shared Libraries redist PC Copyright XLsoft Corporation. All Rights Reserved. 44 / 53

45 StackOverflow.f90 program main implicit none call calc( ) contains subroutine calc(n) integer, intent(in) :: n integer, dimension(n) :: a, b a = 4 b = 4 a = a + b print *, "sum=", sum(a) end subroutine calc end program main MAIN 3 calc a 1M 4 a b 1,000,000 8M Visual Studio [ ] [ ] [ ] Copyright XLsoft Corporation. All Rights Reserved. 45 / 53

46 M Note > ifort /F StackOverflow.f90 /heap-arrays [Fortran] [ ] [ ] 0 /heap-arrays a b allocate program main implicit none call calc( ) contains subroutine calc(n) integer, intent(in) :: n integer, dimension(n) :: a, b a = 4 b = 4 a = a + b print *, "sum=", sum(a) end subroutine calc end program main program main implicit none call calc( ) contains subroutine calc(n) integer, intent(in) :: n integer, dimension(:), allocatable :: a, b allocate(a(n), b(n)) a = 4 b = 4 a = a + b print *, "sum=", sum(a) end subroutine calc end program main Copyright XLsoft Corporation. All Rights Reserved. 46 / 53

47 2G 2G G BigData.f90 4 a 500,000,000 2G program bigdata implicit none integer,dimension( ) :: a a(1) = 1 print *, "a(1)=", a(1) end program bigdata x64 Windows OS G Visual Fortran 2G a allocate program bigdata implicit none integer,dimension( ) :: a a(1) = 1 print *, "a(1)=", a(1) end program bigdata program bigdata implicit none integer,allocatable,dimension(:) :: a allocate( a( ) ) a(1) = 1 print *, "a(1)=", a(1) end program bigdata Windows OS Copyright XLsoft Corporation. All Rights Reserved. 47 / 53

48 16.0 G 16.1 G [ ] [ ] [ ] 32G a 7,800,000,000 32G program bigdata implicit none integer,allocatable,dimension(:) :: a allocate( a( ) ) a(1) = 1 print *, "a(1)=", a(1) end program bigdata Copyright XLsoft Corporation. All Rights Reserved. 48 / 53

49 Compaq* Visual Fortran Visual Fortran IVF Compaq* Visual Fortran CVF CVF CVF Visual Fortran CVF IVF 3 CVF IVF CVF IVF [Fortran] [ ] [ ] CVF 0 IVF [Fortran] [ ] [ ] /Qsave CVF x87 IVF SSE [Fortran] [ ] [ ] /fp:source [Fortan] [ ] [ ] /arch:ia32 Copyright XLsoft Corporation. All Rights Reserved. 49 / 53

50 Windows [ ] Getting Started MKL Visual Studio [ ] (R) Visual Fortran Composer XE 2013 Visual Studio F1 [ ] F1 Visual Fortran Copyright XLsoft Corporation. All Rights Reserved. 50 / 53

51 F1 Visual Fortran > ifort /help Copyright XLsoft Corporation. All Rights Reserved. 51 / 53

52 x86 C: Program Files Intel Composer XE 2013 Documentation x64 C: Program Files (x86) Intel Composer XE 2013 Documentation en_us ja_jp 2 en_us ja_jp en_us Visual Fortran x86 C: Program Files Intel Composer XE 2013 Samples ja_jp Fortran x64 C: Program Files (x86) Intel Composer XE 2013 Samples ja_jp Fortran Fortran DLL C Fortran Fortran C VB Fortran DLL OpenGL* OpenMP Fortran 2008 Co-array QuickWin samples.htm Copyright XLsoft Corporation. All Rights Reserved. 52 / 53

53 Visual Fortran OpenMP Visual Fortran Composer XE 2013 Windows Visual Fortran Composer XE 2013 Windows OpenMP* Fortran OpenMP* isus Fortran Compaq* Visual Fortran Windows* Parallel Studio XE Copyright XLsoft Corporation. All Rights Reserved. 53 / 53

インテル(R) Visual Fortran Composer XE 2011 Windows版 入門ガイド

インテル(R) Visual Fortran Composer XE 2011 Windows版 入門ガイド Visual Fortran Composer XE 2011 Windows* エクセルソフト株式会社 www.xlsoft.com Rev. 1.0 (2010/12/20) Copyright 1998-2011 XLsoft Corporation. All Rights Reserved. 1 / 36 ... 3... 4... 5... 7 /... 7... 9 /... 9...

More information

インテル(R) Visual Fortran Composer XE

インテル(R) Visual Fortran Composer XE Visual Fortran Composer XE 1. 2. 3. 4. 5. Visual Studio 6. Visual Studio 7. 8. Compaq Visual Fortran 9. Visual Studio 10. 2 https://registrationcenter.intel.com/regcenter/ w_fcompxe_all_jp_2013_sp1.1.139.exe

More information

インテル(R) C++ Composer XE 2011 Windows版 入門ガイド

インテル(R) C++ Composer XE 2011 Windows版 入門ガイド C++ Composer XE 2011 Windows* エクセルソフト株式会社 www.xlsoft.com Rev. 1.2 (2011/05/03) Copyright 1998-2011 XLsoft Corporation. All Rights Reserved. 1 / 70 ... 4... 5... 6... 8 /... 8... 10 /... 11... 11 /... 13

More information

インテル® Parallel Studio XE 2019 Composer Edition for Windows: インテル® Fortran コンパイラー 入門ガイド

インテル® Parallel Studio XE 2019 Composer Edition for Windows: インテル® Fortran コンパイラー 入門ガイド インテル Parallel Studio XE 2019 Composer Edition for Windows インテル Fortran コンパイラー入門ガイド エクセルソフト株式会社 バージョン 1.00, 2019 年 1 月 30 日 目次 1. はじめに....................................................................................

More information

インテル® Parallel Studio XE 2016 Composer Edition for Fortran Windows -入門ガイド-

インテル® Parallel Studio XE 2016 Composer Edition for Fortran Windows -入門ガイド- インテル Parallel Studio XE 2016 Composer Edition for Fortran Windows ー入門ガイドー エクセルソフト株式会社 www.xlsoft.com 目次 1 はじめに... 1 2 コンパイル手順... 2 2.1 サンプルプログラムについて... 2 2.2 コマンドラインからのビルド... 3 2.3 Visual Studio からのビルド...

More information

インテル® Parallel Studio XE 2017 Composer Edition for Fortran -入門ガイド-

インテル® Parallel Studio XE 2017 Composer Edition for Fortran -入門ガイド- インテル Parallel Studio XE 2017 Composer Edition for Fortran Windows ー入門ガイドー エクセルソフト株式会社 www.xlsoft.com 目次 1. はじめに... 1 2. コンパイル手順... 2 2.1 サンプルプログラムについて... 2 2.2 コマンドラインからのビルド... 4 2.3 Visual Studio からのビルド...

More information

Microsoft Word - w_mkl_build_howto.doc

Microsoft Word - w_mkl_build_howto.doc MKL 10.0 2007/12/18 XLsoft - 2 - 1....- 4-2. MKL...- 4-3....- 5-3-1....- 5-3-1-1. Microsoft Visual C++ 2005...- 5-3-1-2. C/C++...- 9-3-1-3. Fortran...- 11-3-2. Microsoft Visual Studio...- 13-3-2-1. Microsoft

More information

インテル® Parallel Studio XE 2019 Composer Edition for Fortran Windows : インストール・ガイド

インテル® Parallel Studio XE 2019 Composer Edition for Fortran Windows : インストール・ガイド インテル Parallel Studio XE 2019 Composer Edition for Fortran Windows インストール ガイド エクセルソフト株式会社 Version 1.0.0-20180918 目次 1. はじめに....................................................................................

More information

インテル® Parallel Studio XE 2019 Composer Edition for Fortran Windows 日本語版 : インストール・ガイド

インテル® Parallel Studio XE 2019 Composer Edition for Fortran Windows 日本語版 : インストール・ガイド インテル Parallel Studio XE 2019 Composer Edition for Fortran Windows 日本語版インストール ガイド エクセルソフト株式会社 Version 2.1.0-20190405 目次 1. はじめに.................................................................................

More information

01_OpenMP_osx.indd

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

More information

目次 1 はじめに 製品に含まれるコンポーネント 動作環境... 4 オペレーティング システム... 4 Microsoft Visual Studio* 製品 製品のダウンロード 製品版をインストールする場合 評価版を

目次 1 はじめに 製品に含まれるコンポーネント 動作環境... 4 オペレーティング システム... 4 Microsoft Visual Studio* 製品 製品のダウンロード 製品版をインストールする場合 評価版を インテル Parallel Studio XE 2018 Composer Edition for Fortran Windows* インストール ガイド Rev. 2. 0 (2017/11/22) エクセルソフト株式会社 www.xlsoft.com 目次 1 はじめに... 3 2 製品に含まれるコンポーネント... 3 3 動作環境... 4 オペレーティング システム... 4 Microsoft

More information

Microsoft PowerPoint - 1_コンパイラ入門セミナー.ppt

Microsoft PowerPoint - 1_コンパイラ入門セミナー.ppt インテルコンパイラー 入門セミナー [ 対象製品 ] インテル C++ コンパイラー 9.1 Windows* 版インテル Visual Fortran コンパイラー 9.1 Windows* 版 資料作成 : エクセルソフト株式会社 Copyright 1998-2007 XLsoft Corporation. All Rights Reserved. 1 インテル コンパイラー入門 本セミナーの内容

More information

インテル® Parallel Studio XE 2017 Composer Edition for Fortran Windows - インストール・ガイド -

インテル® Parallel Studio XE 2017 Composer Edition for Fortran Windows - インストール・ガイド - インテル Parallel Studio XE 2017 Composer Edition for Fortran Windows - インストール ガイド - エクセルソフト株式会社 www.xlsoft.com Rev. 2. 0 (2016/10/20) 目次 1 はじめに... 4 2 製品に含まれるコンポーネント... 4 3 動作環境... 5 オペレーティング システム... 5 Microsoft

More information

nakao

nakao Fortran+Python 4 Fortran, 2018 12 12 !2 Python!3 Python 2018 IEEE spectrum https://spectrum.ieee.org/static/interactive-the-top-programming-languages-2018!4 Python print("hello World!") if x == 10: print

More information

CPU Levels in the memory hierarchy Level 1 Level 2... Increasing distance from the CPU in access time Level n Size of the memory at each level 1: 2.2

CPU Levels in the memory hierarchy Level 1 Level 2... Increasing distance from the CPU in access time Level n Size of the memory at each level 1: 2.2 FFT 1 Fourier fast Fourier transform FFT FFT FFT 1 FFT FFT 2 Fourier 2.1 Fourier FFT Fourier discrete Fourier transform DFT DFT n 1 y k = j=0 x j ω jk n, 0 k n 1 (1) x j y k ω n = e 2πi/n i = 1 (1) n DFT

More information

untitled

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

More information

11042 計算機言語7回目 サポートページ:

11042 計算機言語7回目  サポートページ: 11042 7 :https://goo.gl/678wgm November 27, 2017 10/2 1(print, ) 10/16 2(2, ) 10/23 (3 ) 10/31( ),11/6 (4 ) 11/13,, 1 (5 6 ) 11/20,, 2 (5 6 ) 11/27 (7 12/4 (9 ) 12/11 1 (10 ) 12/18 2 (10 ) 12/25 3 (11

More information

- 2 Copyright (C) 2006. All Rights Reserved.

- 2 Copyright (C) 2006. All Rights Reserved. - 2 Copyright (C) 2006. All Rights Reserved. 2-3 Copyright (C) 2006. All Rights Reserved. 70-4 Copyright (C) 2006. All Rights Reserved. ...1...3...7...8 1...9...14...16 2...18...20...21 3...22...23...23...24

More information

Copyright 2009, SofTek Systems, Inc. All rights reserved.

Copyright 2009, SofTek Systems, Inc. All rights reserved. PGI Visual Fortran Release 9.0 SofTek Copyright 2009, SofTek Systems, Inc. All rights reserved. \\\ \\ \\\ \\ \\ SofTek Systems, Inc \ SofTek Systems, Inc SofTek Systems, Inc SofTek Systems, Inc SofTek

More information

hotspot の特定と最適化

hotspot の特定と最適化 1 1? 1 1 2 1. hotspot : hotspot hotspot Parallel Amplifier 1? 2. hotspot : (1 ) Parallel Composer 1 Microsoft* Ticker Tape Smoke 1.0 PiSolver 66 / 64 / 2.76 ** 84 / 27% ** 75 / 17% ** 1.46 89% Microsoft*

More information

Intel_ParallelStudioXE2013_ClusterStudioXE2013_Introduction.pptx

Intel_ParallelStudioXE2013_ClusterStudioXE2013_Introduction.pptx Parallel Studio XE 2013 Cluster Studio XE 2013 ) ( Intel s Terms and Conditions of Sale Sandy Bridge SYSmark MobileMark http://www.intel.com/performance/ Intel Intel Intel Atom Intel Core Intel Xeon Phi

More information

ハピタス のコピー.pages

ハピタス のコピー.pages Copyright (C) All Rights Reserved. 10 12,500 () ( ) ()() 1 : 2 : 3 : 2 4 : 5 : Copyright (C) All Rights Reserved. Copyright (C) All Rights Reserved. Copyright (C) All Rights Reserved. Copyright (C) All

More information

Copyright 2008 All Rights Reserved 2

Copyright 2008 All Rights Reserved 2 Copyright 2008 All Rights Reserved 1 Copyright 2008 All Rights Reserved 2 Copyright 2008 All Rights Reserved 3 Copyright 2008 All Rights Reserved 4 Copyright 2008 All Rights Reserved 5 Copyright 2008 All

More information

インテル(R) Visual Fortran コンパイラ 10.0

インテル(R) Visual Fortran コンパイラ 10.0 インテル (R) Visual Fortran コンパイラー 10.0 日本語版スペシャル エディション 入門ガイド 目次 概要インテル (R) Visual Fortran コンパイラーの設定はじめに検証用ソースファイル適切なインストールの確認コンパイラーの起動 ( コマンドライン ) コンパイル ( 最適化オプションなし ) 実行 / プログラムの検証コンパイル ( 最適化オプションあり ) 実行

More information

インテル® Parallel Studio 入門ガイド

インテル® Parallel Studio 入門ガイド Parallel Studio エクセルソフト株式会社 www.xlsoft.com Rev. 1.1 (2010/04/08) 1 / 48 ... 3 Parallel Studio... 3... 4... 5... 6 Parallel Composer... 8 Parallel Amplifier... 12 Parallel Composer... 16 Parallel Composer...

More information

インテル Parallel Studio XE 2017 Composer Edition for Fortran Windows* インストール ガイド Rev (2017/06/08) エクセルソフト株式会社

インテル Parallel Studio XE 2017 Composer Edition for Fortran Windows* インストール ガイド Rev (2017/06/08) エクセルソフト株式会社 インテル Parallel Studio XE 2017 Composer Edition for Fortran Windows* インストール ガイド Rev. 2. 1 (2017/06/08) エクセルソフト株式会社 www.xlsoft.com 目次 1 はじめに... 3 2 製品に含まれるコンポーネント... 3 3 動作環境... 4 オペレーティング システム... 4 Microsoft

More information

目次 1 はじめに 製品コンポーネント 動作環境 インストールを行う前に 製品版と評価版 製品のインストール手順 製品の登録 製品のダウンロード ライセンスファイルの取得

目次 1 はじめに 製品コンポーネント 動作環境 インストールを行う前に 製品版と評価版 製品のインストール手順 製品の登録 製品のダウンロード ライセンスファイルの取得 インテル Parallel Studio XE 2016 Composer Edition for Fortran Windows* - インストール ガイド - エクセルソフト株式会社 www.xlsoft.com Rev. 1.0 (2015/10/05) 目次 1 はじめに... 1 2 製品コンポーネント... 1 3 動作環境... 2 4 インストールを行う前に... 3 5 製品版と評価版...

More information

120802_MPI.ppt

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

More information

v10 IA-32 64¹ IA-64²

v10 IA-32 64¹ IA-64² v10 IA-32 64¹ IA-64² 1. 2. 3. 4. 5. 6. /Od (-O0) Windows* /O1 /O2 /O3 Linux* Mac OS* -O1 -O2 -O3 /O2 ( O2) /O3 (-O3) IA-64 Core 2 /QxT ( xt) IA-32 64 IA-32 64 Itanium 2 9000 /G2-p9000 ( mtune=itanium2-p9000)

More information

(Basic Theory of Information Processing) Fortran Fortan Fortan Fortan 1

(Basic Theory of Information Processing) Fortran Fortan Fortan Fortan 1 (Basic Theory of Information Processing) Fortran Fortan Fortan Fortan 1 17 Fortran Formular Tranlator Lapack Fortran FORTRAN, FORTRAN66, FORTRAN77, FORTRAN90, FORTRAN95 17.1 A Z ( ) 0 9, _, =, +, -, *,

More information

OpenMP¤òÍѤ¤¤¿ÊÂÎó·×»»¡Ê£±¡Ë

OpenMP¤òÍѤ¤¤¿ÊÂÎó·×»»¡Ê£±¡Ë 2012 5 24 scalar Open MP Hello World Do (omp do) (omp workshare) (shared, private) π (reduction) PU PU PU 2 16 OpenMP FORTRAN/C/C++ MPI OpenMP 1997 FORTRAN Ver. 1.0 API 1998 C/C++ Ver. 1.0 API 2000 FORTRAN

More information

1F90/kouhou_hf90.dvi

1F90/kouhou_hf90.dvi Fortran90 3 33 1 2 Fortran90 FORTRAN 1956 IBM IBM704 FORTRAN(FORmula TRANslation ) 1965 FORTRAN66 1978 FORTRAN77 1991 Fortran90 Fortran90 Fortran Fortran90 6 Fortran90 77 90 90 Fortran90 [ ] Fortran90

More information

Copyright 2008 NIFTY Corporation All rights reserved. 2

Copyright 2008 NIFTY Corporation All rights reserved. 2 Copyright 2008 NIFTY Corporation All rights reserved. 2 Copyright 2008 NIFTY Corporation All rights reserved. 3 Copyright 2008 NIFTY Corporation All rights reserved. 4 Copyright 2008 NIFTY Corporation

More information

OpenMP¤òÍѤ¤¤¿ÊÂÎó·×»»¡Ê£±¡Ë

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

More information

CUDA 連携とライブラリの活用 2

CUDA 連携とライブラリの活用 2 1 09:30-10:00 受付 10:00-12:00 Reedbush-H ログイン GPU 入門 13:30-15:00 OpenACC 入門 15:15-16:45 OpenACC 最適化入門と演習 17:00-18:00 OpenACC の活用 (CUDA 連携とライブラリの活用 ) CUDA 連携とライブラリの活用 2 3 OpenACC 簡単にGPUプログラムが作成できる それなりの性能が得られる

More information

初心者にもできるアメブロカスタマイズ新2016.pages

初心者にもできるアメブロカスタマイズ新2016.pages Copyright All Rights Reserved. 41 Copyright All Rights Reserved. 60 68 70 6 78 80 Copyright All Rights Reserved. FC2 97 Copyright All Rights Reserved. Copyright All Rights Reserved. Copyright All Rights

More information

Microsoft Word - IVF15.0.1J_Install.doc

Microsoft Word - IVF15.0.1J_Install.doc Parallel Studio XE 2015 Composer Edition for Fortran Windows* www.xlsoft.com Rev. 1.0 (2014/11/18) 1 / 17 目次 1. はじめに... 3 2. 製品コンポーネント... 3 3. 動作環境... 4 4. インストールする前に... 5 5. 製品購入者と評価ユーザー... 6 6. インストール手順...

More information

弥生会計/やよいの青色申告

弥生会計/やよいの青色申告 c c c c c 1 c c c c c c c c c c c 2 3 c c 4 a a a a a a a a a

More information

all.dvi

all.dvi fortran 1996 4 18 2007 6 11 2012 11 12 1 3 1.1..................................... 3 1.2.............................. 3 2 fortran I 5 2.1 write................................ 5 2.2.................................

More information

main.dvi

main.dvi PC 1 1 [1][2] [3][4] ( ) GPU(Graphics Processing Unit) GPU PC GPU PC ( 2 GPU ) GPU Harris Corner Detector[5] CPU ( ) ( ) CPU GPU 2 3 GPU 4 5 6 7 1 toyohiro@isc.kyutech.ac.jp 45 2 ( ) CPU ( ) ( ) () 2.1

More information

Copyright 2006 KDDI Corporation. All Rights Reserved page1

Copyright 2006 KDDI Corporation. All Rights Reserved page1 Copyright 2006 KDDI Corporation. All Rights Reserved page1 Copyright 2006 KDDI Corporation. All Rights Reserved page2 Copyright 2006 KDDI Corporation. All Rights Reserved page3 Copyright 2006 KDDI Corporation.

More information

Intel® Compilers Professional Editions

Intel® Compilers Professional Editions 2007 6 10.0 * 10.0 6 5 Software &Solutions group 10.0 (SV) C++ Fortran OpenMP* OpenMP API / : 200 C/C++ Fortran : OpenMP : : : $ cat -n main.cpp 1 #include 2 int foo(const char *); 3 int main()

More information

Copyright All Rights Reserved. -2 -!

Copyright All Rights Reserved. -2 -! http://ameblo.jp/admarketing/ Copyright All Rights Reserved. -2 -! Copyright All Rights Reserved. -3- Copyright All Rights Reserved. -4- Copyright All Rights Reserved. -5 - Copyright All Rights Reserved.

More information

IPA:セキュアなインターネットサーバー構築に関する調査

IPA:セキュアなインターネットサーバー構築に関する調査 Copyright 2003 IPA, All Rights Reserved. Copyright 2003 IPA, All Rights Reserved. Copyright 2003 IPA, All Rights Reserved. Copyright 2003 IPA, All Rights Reserved. Copyright 2003 IPA, All Rights Reserved.

More information

Fortran90/95 2. (p 74) f g h x y z f x h x = f x + g x h y = f y + g y h z = f z + g z f x f y f y f h = f + g Fortran 1 3 a b c c(1) = a(1) + b(1) c(

Fortran90/95 2. (p 74) f g h x y z f x h x = f x + g x h y = f y + g y h z = f z + g z f x f y f y f h = f + g Fortran 1 3 a b c c(1) = a(1) + b(1) c( Fortran90/95 4.1 1. n n = 5 x1,x2,x3,,x4,x5 5 average = ( x1 + x2 + x3 + x4 + x5 )/5.0 n n x (subscript) x 1 x 2 average = 1 n n x i i=1 Fortran ( ) x(1) x(2) x(n) Fortran ( ) average = sum(x(1:n))/real(n)

More information

Microsoft Word - 最終版 バックせどりismマニュアル .docx

Microsoft Word - 最終版 バックせどりismマニュアル .docx ism ISM ISM ISM ISM ISM ISM Copyright (c) 2010 All Rights Reserved. Copyright (c) 2010 All Rights Reserved. Copyright (c) 2010 All Rights Reserved. ISM Copyright (c) 2010 All Rights Reserved. Copyright

More information

2

2 DX Simulator Copyright 2001-2002 Yamaha Corporation. All rights reserved. Version 1.2, 2002 YAMAHA CORPORATION 2 z x z x c 3 z Windows Macintosh Windows Macintosh x 4 z Windows Macintosh Windows Macintosh

More information

OpenMP (1) 1, 12 1 UNIX (FUJITSU GP7000F model 900), 13 1 (COMPAQ GS320) FUJITSU VPP5000/64 1 (a) (b) 1: ( 1(a))

OpenMP (1) 1, 12 1 UNIX (FUJITSU GP7000F model 900), 13 1 (COMPAQ GS320) FUJITSU VPP5000/64 1 (a) (b) 1: ( 1(a)) OpenMP (1) 1, 12 1 UNIX (FUJITSU GP7000F model 900), 13 1 (COMPAQ GS320) FUJITSU VPP5000/64 1 (a) (b) 1: ( 1(a)) E-mail: {nanri,amano}@cc.kyushu-u.ac.jp 1 ( ) 1. VPP Fortran[6] HPF[3] VPP Fortran 2. MPI[5]

More information

2

2 2 3 4 5 6 1 2 7 Windows Me Microsoft Office XP Personal Easy CD Creator4 8 9 DIGITAL 10 11 12 1 3 2 13 1 2 14 3 15 1 2 3 16 4 17 1 2 18 3 1 4 5 1 2 3 4 19 1 2 3 20 4 5 21 1 2 1 22 2 3 1 23 1 2 3 4 24 1

More information

MKL10.3 Win_UsageGuide

MKL10.3 Win_UsageGuide Intel Math Kernel Library Version 11.1 (Windows 版 ) ~ 活 用 ガイド~ 2014 年 8 月 8 日 作 成 版 インテル MKL について 最 適 化 各 世 代 のインテル プロセッサーがサポートする 拡 張 命 令 セット(SSE また はインテル AVX など)の 使 用 キャッシュメモリの 活 用 など 実 行 環 境 に 応 じて 適

More information

Microsoft PowerPoint - 03_What is OpenMP 4.0 other_Jan18

Microsoft PowerPoint - 03_What is OpenMP 4.0 other_Jan18 OpenMP* 4.x における拡張 OpenMP 4.0 と 4.5 の機能拡張 内容 OpenMP* 3.1 から 4.0 への拡張 OpenMP* 4.0 から 4.5 への拡張 2 追加された機能 (3.1 -> 4.0) C/C++ 配列シンタックスの拡張 SIMD と SIMD 対応関数 デバイスオフロード task 構 の依存性 taskgroup 構 cancel 句と cancellation

More information

インテル® Parallel Studio XE 2013 Windows* 版インストール・ガイドおよびリリースノート

インテル® Parallel Studio XE 2013 Windows* 版インストール・ガイドおよびリリースノート インテル Parallel Studio XE 2013 Windows* 版インストール ガイドおよびリリースノート 資料番号 : 323803-003JA 2012 年 8 月 8 日 目次 1 概要... 2 1.1 新機能... 2 1.1.1 インテル Parallel Studio XE 2011 からの変更点... 2 1.2 製品の内容... 2 1.3 動作環境... 2 1.4

More information

dekiru_asa

dekiru_asa 11 10 4 4 1 2 3 4 2 4 6 10 12 16 20 2 1 3 1 4 2 5 2 6 3 3 7 8 9 3 3 10 4 1 11 4 2 3 4 5 1 2 3 12 4 5 5 13 14 6 7 8 9 10 11 5 15 6 1 2 3 16 17 1 2 3 6 18 1 2 3 19 6 6 1 2 v 3 20 7 1 2 3 1 7 21 22 2 3 4

More information

64bit SSE2 SSE2 FPU Visual C++ 64bit Inline Assembler 4 FPU SSE2 4.1 FPU Control Word FPU 16bit R R R IC RC(2) PC(2) R R PM UM OM ZM DM IM R: reserved

64bit SSE2 SSE2 FPU Visual C++ 64bit Inline Assembler 4 FPU SSE2 4.1 FPU Control Word FPU 16bit R R R IC RC(2) PC(2) R R PM UM OM ZM DM IM R: reserved (Version: 2013/5/16) Intel CPU (kashi@waseda.jp) 1 Intel CPU( AMD CPU) 64bit SIMD Inline Assemler Windows Visual C++ Linux gcc 2 FPU SSE2 Intel CPU double 8087 FPU (floating point number processing unit)

More information

インテル® Fortran Studio XE 2011 SP1 Windows* 版インストール・ガイドおよびリリースノート

インテル® Fortran Studio XE 2011 SP1 Windows* 版インストール・ガイドおよびリリースノート インテル Fortran Studio XE 2011 SP1 Windows* 版インストール ガイドおよびリリースノート 資料番号 : 325583-001JA 2011 年 8 月 5 日 目次 1 概要... 1 1.1 新機能... 2 1.2 製品の内容... 2 1.3 動作環境... 2 1.3.1 Microsoft* Visual Studio* 2005 のサポート終了予定...

More information

KDDI

KDDI Copyright 2007 KDDI Corporation. All Rights Reserved page.1 Copyright 2007 KDDI Corporation. All Rights Reserved page.2 Copyright 2007 KDDI Corporation. All Rights Reserved page.3 Copyright 2007 KDDI Corporation.

More information

XcalableMP入門

XcalableMP入門 XcalableMP 1 HPC-Phys@, 2018 8 22 XcalableMP XMP XMP Lattice QCD!2 XMP MPI MPI!3 XMP 1/2 PCXMP MPI Fortran CCoarray C++ MPIMPI XMP OpenMP http://xcalablemp.org!4 XMP 2/2 SPMD (Single Program Multiple Data)

More information

untitled

untitled mitsuya Copyright (C) 2007. All Rights Reserved. 1/1 mitsuya Copyright (C) 2007. All Rights Reserved. 2/2 mitsuya Copyright (C) 2007. All Rights Reserved. 3/3 mitsuya Copyright (C) 2007. All Rights Reserved.

More information

スパコンに通じる並列プログラミングの基礎

スパコンに通じる並列プログラミングの基礎 2018.09.10 furihata@cmc.osaka-u.ac.jp ( ) 2018.09.10 1 / 59 furihata@cmc.osaka-u.ac.jp ( ) 2018.09.10 2 / 59 Windows, Mac Unix 0444-J furihata@cmc.osaka-u.ac.jp ( ) 2018.09.10 3 / 59 Part I Unix GUI CUI:

More information

- 2 Copyright (C) 2009. All Rights Reserved.

- 2 Copyright (C) 2009. All Rights Reserved. - 2 Copyright (C) 2009. All Rights Reserved. - 3 Copyright (C) 2009. All Rights Reserved. - 4 Copyright (C) 2009. All Rights Reserved. - 5 Copyright (C) 2009. All Rights Reserved. - 6 Copyright (C) 2009.

More information

スパコンに通じる並列プログラミングの基礎

スパコンに通じる並列プログラミングの基礎 2018.06.04 2018.06.04 1 / 62 2018.06.04 2 / 62 Windows, Mac Unix 0444-J 2018.06.04 3 / 62 Part I Unix GUI CUI: Unix, Windows, Mac OS Part II 2018.06.04 4 / 62 0444-J ( : ) 6 4 ( ) 6 5 * 6 19 SX-ACE * 6

More information

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

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....................................

More information

how-to-decide-a-title

how-to-decide-a-title Contents 3 4 5 6 8 13 13 14 14 15 15 18 19 Copyright 2014 All Rights Reserved. 2 / 21 URL AdobeReader ( ) http://www.adobe.co.jp/products/acrobat/readstep2.html Copyright 2014 All Rights Reserved. 3 /

More information

Web Microsoft 2008 R2 Database Database!! Database 04 08

Web   Microsoft 2008 R2 Database Database!! Database 04 08 Database Database Web http://www.microsoft.com/japan/sqlserver/2008/r2/solution/comparison/default.mspx Microsoft 2008 R2 Database Database!! 03 2009 6 1 Database 04 08 vs. Database 12 2008 R2 5 14! 5!

More information

情報処理概論(第二日目)

情報処理概論(第二日目) 情報処理概論 工学部物質科学工学科応用化学コース機能物質化学クラス 第 8 回 2005 年 6 月 9 日 前回の演習の解答例 多項式の計算 ( 前半 ): program poly implicit none integer, parameter :: number = 5 real(8), dimension(0:number) :: a real(8) :: x, total integer

More information

スライド 1

スライド 1 インテル コンパイラー入門 ~ 機能概要のご紹介 ~ エクセルソフト株式会社安晃生 ~ 内容 ~ 1. インテル コンパイラーの概要 2. インテル コンパイラーの基本使用方法 3. 最適化オプションについて 4. 高速インテルライブラリーの利用 5. 最後に 2 ~ 内容 ~ 1. インテル コンパイラーの概要 インテル コンパイラーとは? インテル コンパイラーの開発環境概要 製品紹介 2. インテル

More information

FileMaker Server Getting Started Guide

FileMaker Server Getting Started Guide FileMaker Server 11 2004-2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker, Inc. FileMaker, Inc. FileMaker FileMaker,

More information

Oracleコール・インタフェース for Windows スタート・ガイド リリース8.1.6

Oracleコール・インタフェース for Windows スタート・ガイド リリース8.1.6 Oracle for Windows 8.1.6 2000 4 : J01324-01 Oracle for Windows 8.1.6 : J01324-01 Oracle Call Interface Getting Started, Release 8.1.6 for Windows A73022-01 Eric Belden Joseph Garcia Lisa Giambruno Michael

More information

健康保険組合のあゆみ_top

健康保険組合のあゆみ_top (1912) (1951) 2,00024,000 (1954) (1958) (1962) (1965) (1968) (1969) (1971) (1972) (1973) (1974) (1976) (1978) (1980) (1982) (1983) (1984) (1985) (1987) (1988) (1989) (1990) (1991) (1992) (1994) (1995)

More information

Copyright 2010 Sumitomo Mitsui Banking Corporation. All Rights Reserved.

Copyright 2010 Sumitomo Mitsui Banking Corporation. All Rights Reserved. 1 2 3 4 5 3 1 2 5 4 2Copyright 2010 Sumitomo Mitsui Banking Corporation. All Rights Reserved. Copyright 2010 Sumitomo Mitsui Banking Corporation. All Rights Reserved.3 Contents 4Copyright 2010 Sumitomo

More information

HG M-PRO 110pt 38mm HG M-PRO 110pt 38mm HG M-PRO 2

HG M-PRO 110pt 38mm HG M-PRO 110pt 38mm HG M-PRO 2 Graphtec Studio Graphtec Studio Graphtec Studio PC Windows Graphtec Studio A4 10.00mm 2 1 HG M-PRO 110pt 38mm HG M-PRO 110pt 38mm HG M-PRO 2 3 0 LCD 4 5 6 Graphtec Studio (F) (T) All Files(. ) OK 7 8 8

More information

20 180pixel 180pixel Copyright 2014 Yahoo Japan Corporation. All Rights Reserved.

20 180pixel 180pixel Copyright 2014 Yahoo Japan Corporation. All Rights Reserved. 12 300pixel 300pixel www.yahoo.co.jp Copyright 2014 Yahoo Japan Corporation. All Rights Reserved. 20 180pixel 180pixel Copyright 2014 Yahoo Japan Corporation. All Rights Reserved. 300pixel 300pixel www.yahoo.co.jp

More information

写真集計くん+ for Mac ユーザーズガイド

写真集計くん+ for Mac ユーザーズガイド DPOF + Plus for Mac + for Mac 1 + for Mac 1 + for Mac 2 3 3 5 5 5 FTP 5 7 7 7 8 11 11 13 16 18 DPOF 23 23 FTP 24 25 26 26 26 26 + for Mac + for Mac + for Mac + for Mac ( ) DPE (DPOF) Microsoft Excel Visual

More information

スパコンに通じる並列プログラミングの基礎

スパコンに通じる並列プログラミングの基礎 2016.06.06 2016.06.06 1 / 60 2016.06.06 2 / 60 Windows, Mac Unix 0444-J 2016.06.06 3 / 60 Part I Unix GUI CUI: Unix, Windows, Mac OS Part II 0444-J 2016.06.06 4 / 60 ( : ) 6 6 ( ) 6 10 6 16 SX-ACE 6 17

More information

<%DOC NAME%> (User Manual)

<%DOC NAME%> (User Manual) AVG File Server 2012 2012.06 (3/ 15/ 2012) Copyright AVG Technologies CZ, s.r.o. All rights reserved. RSA Data Security, Inc. MD5 Message- Digest Algorithm Copyright (C) 1991-2, RSA Data Security, Inc.

More information

OpenMP¤òÍѤ¤¤¿ÊÂÎó·×»»¡Ê£²¡Ë

OpenMP¤òÍѤ¤¤¿ÊÂÎó·×»»¡Ê£²¡Ë 2013 5 30 (schedule) (omp sections) (omp single, omp master) (barrier, critical, atomic) program pi i m p l i c i t none integer, parameter : : SP = kind ( 1. 0 ) integer, parameter : : DP = selected real

More information

02_C-C++_osx.indd

02_C-C++_osx.indd C/C++ OpenMP* / 2 C/C++ OpenMP* OpenMP* 9.0 1... 2 2... 3 3OpenMP*... 5 3.1... 5 3.2 OpenMP*... 6 3.3 OpenMP*... 8 4OpenMP*... 9 4.1... 9 4.2 OpenMP*... 9 4.3 OpenMP*... 10 4.4... 10 5OpenMP*... 11 5.1

More information

インテル® Parallel Studio XE 2015 Composer Edition for Linux* インストール・ガイドおよびリリースノート

インテル® Parallel Studio XE 2015 Composer Edition for Linux* インストール・ガイドおよびリリースノート インテル Parallel Studio XE 2015 Composer Edition for Linux* インストール ガイドおよびリリースノート 2014 年 10 月 14 日 目次 1 概要... 1 1.1 製品の内容... 2 1.2 インテル デバッガー (IDB) を削除... 2 1.3 動作環境... 2 1.3.1 SuSE Enterprise Linux 10* のサポートを終了...

More information

2. 1. 1. 2. 2. 3. 3. 3. 1. 1. 2. 3. 2

2. 1. 1. 2. 2. 3. 3. 3. 1. 1. 2. 3. 2 DTR-30.6 Ja 2. 1. 1. 2. 2. 3. 3. 3. 1. 1. 2. 3. 2 4. 1. 3. 4. 1. 1. 2. 2. 3 1. 2. 3. 1. 4 2. 3. 1. 2. 3. 4. 5. 5 1. 1. 2. 3. 2. 4. 3. 4. 5. 6. 7. 2. 3. 1. 6 PC NAS 1. 2. 3. 4. 5. 1. 2. 3. 4. 5. 1. 2. 3.

More information

(Version: 2017/4/18) Intel CPU 1 Intel CPU( AMD CPU) 64bit SIMD Inline Assemler Windows Visual C++ Linux gcc 2 FPU SSE2 Intel CPU do

(Version: 2017/4/18) Intel CPU 1 Intel CPU( AMD CPU) 64bit SIMD Inline Assemler Windows Visual C++ Linux gcc 2 FPU SSE2 Intel CPU do (Version: 2017/4/18) Intel CPU (kashi@waseda.jp) 1 Intel CPU( AMD CPU) 64bit SIMD Inline Assemler Windows Visual C++ Linux gcc 2 FPU SSE2 Intel CPU double 8087 FPU (floating point number processing unit)

More information

はじめての帳票作成

はじめての帳票作成 ucosminexus EUR 3020-7-532 OS Windows Vista Windows XP P-26D2-5684 ucosminexus EUR Designer 08-00 P-26D2-5784 ucosminexus EUR Developer 08-00 ISO9001 TickIT Microsoft Microsoft Corp. Microsoft Excel Microsoft

More information

PPTテンプレート集 ver.1.0

PPTテンプレート集 ver.1.0 Copyright 2012 Radishbo-ya co., Ltd All Rights Reserved. 1 !!!!!!!!!! Copyright 2012 Radishbo-ya co., Ltd All Rights Reserved. 2 Copyright 2012 Radishbo-ya co., Ltd All Rights Reserved. Copyright 2012

More information

untitled

untitled Version 1.0 2010/ 8/29 1 BCMap... 3 2 BCMap... 5 3 BCMap... 7 4... 12 5... 15 6... 20 7... 22 8 TruwView... 24 9... 27 10... 29 11... 33 12... 34 13... 38 14... 39 15... 41 1 p 2 ( ) BCMap p 2 ( ) p 2

More information

4D Draw

4D Draw 4D Draw Windows /Mac OS 4D Copyright 2007 4D SAS All rights reserved.. DR SET GLOBAL PREFERENCES vbind:=dr

More information

Fortran90/95 [9]! (1 ) " " 5 "Hello!"! 3. (line) Fortran Fortran 1 2 * (1 ) 132 ( ) * 2 ( Fortran ) Fortran ,6 (continuation line) 1

Fortran90/95 [9]! (1 )   5 Hello!! 3. (line) Fortran Fortran 1 2 * (1 ) 132 ( ) * 2 ( Fortran ) Fortran ,6 (continuation line) 1 Fortran90/95 2.1 Fortran 2-1 Hello! 1 program example2_01! end program 2! first test program ( ) 3 implicit none! 4 5 write(*,*) "Hello!"! write Hello! 6 7 stop! 8 end program example2_01 1 program 1!

More information

① Copyright 2005 Impex.,inc. All Rights Reserved 1 Copyright 2005 Impex.,inc. All Rights Reserved 2 Copyright 2005 Impex.,inc. All Rights Reserved 3 Copyright 2005 Impex.,inc. All Rights Reserved 4 Copyright

More information

Windows

Windows InfoCage /, NEC ....4....5....9....10.....10.....18......19......22......24......25......32....35....39.....40.....40...48 Windows...48...49 MobileProtect MobileProtect MobileProtect MobileProtect MobileProtect

More information

プラズマ核融合学会誌5月号【81-5】/内外情報_ソフト【注:欧フォント特殊!】

プラズマ核融合学会誌5月号【81-5】/内外情報_ソフト【注:欧フォント特殊!】 PROGRAM PLOTDATA USE NUM_KINDS, ONLY : wp=>dp, i4b USE MYLIB, ONLY : GET_SIZE, GET_DATA INTEGER(i4b) :: ntime, nx REAL(wp), ALLOCATABLE :: time(:), x(:), Temp(:,:) Fortran Temp, temp, TEMP temporal REAL(wp)

More information

FFTSS Library Version 3.0 User's Guide

FFTSS Library Version 3.0 User's Guide : 19 10 31 FFTSS 3.0 Copyright (C) 2002-2007 The Scalable Software Infrastructure Project, (CREST),,. http://www.ssisc.org/ Contents 1 4 2 (DFT) 4 3 4 3.1 UNIX............................................

More information