태그|fortran90(총 50개의 글)
'fortran90' 관련 최근글
-
- MPI, 2D array, buffers overlap

-
Imagination is more important than knowledge. by 바죠|08/27 15:33
MPI 라이버러리를 활용한 병렬 계산 기법 소개입니다. 노드별로 계산된 2차원 배열 자료들을 교환하기 위한 (MPI 라이버러리들을 활용한) 방법들은 다양하게 만들어 볼 수 있을것이다. 요구되는 조건, 주어진 조건에 따라서 구현 방법은 달라진다. buffers overlap, array (..
- MPI, 2D array, buffers overlap
-
- 10개씩 한 줄에 프린트하기

-
Imagination is more important than knowledge. by 바죠|08/19 14:22
일차원 벡터의 성분을 출력하고 싶다. 한 줄에 10개씩 출력하고 싶다. 하지만, 벡터 성분의 갯수가 10개로 딱 맞지 않는 경우도 있을 수 있다. 예를 들어, 5개, 17개인 경우들이 있다. 이러한 경우들을 모두 고려해서 한 줄에 10개씩 성분들을 출력하고자 한다. 나머지는 한 줄에 표..
- 10개씩 한 줄에 프린트하기
-
- sort

-
Imagination is more important than knowledge. by 바죠|08/18 09:57
implicit none integer nn integer, allocatable :: indx(:) real*8, allocatable :: arrin(:) integer i nn=10 allocate(arrin(nn),indx(nn)) do i=1,nn arrin(i)=-float(i) enddo call sortnr(nn,arrin,indx) do i=1,nn write(6,*) i,i..
- sort
-
- Practical MPI programming (Y. Aoyama and J. Nakano)

-
Imagination is more important than knowledge. by 바죠|05/23 22:24
MPI를 활용한 프로그래밍 레퍼런스 자료입니다. 많은 분량과 각 항목에 대한 상세한 설명을 포함하고 있습니다. 아주 잘 정리가 되어 있습니다. 위키피디아에서도 레퍼런스로 지정해둔 아티클입니다. 내용은 다양한 병렬 프로그래밍 방법을 자세히 그림을 동원하여 설명하고 있..
- Practical MPI programming (Y. Aoyama and J. Nakano)
-
- text

-
Imagination is more important than knowledge. by 바죠|05/19 10:50
한 라인에서 text 만 찾아 내기 /abc/aaa 또는 /abc/aaa 처럼 앞에 빈칸이 있는 경우도 포함해서 text만 찾아준다. /, ? 등의 문자를 포함하고 있음. text 디렉토리 이름, 절대 패스를 사용할 경우, /가 들어가게 된다. gene /home/ihlee/admd_protein/parallel/test > ..
- text
-
- Python Scripting for Computational Science

-
Imagination is more important than knowledge. by 바죠|05/19 00:02
파이썬 책 하나 소개합니다. Python Scripting for Computational Science, Third Edition (Hans Petter Langtangen, Department of Informatics, University of Oslo) pdf 버전도 웹을 통해서 제공..
- Python Scripting for Computational Science
-
- read (FORTRAN) 다양한 양식

-
Imagination is more important than knowledge. by 바죠|05/17 00:25
출처: The READ statement reads data from a file or the keyboard to items in the list. If you use this for tapes we recommend the TOPEN() routines instead because they are more reliable. Syntax READ( [ UNIT=] u [, [ FMT=] f ]..
- read (FORTRAN) 다양한 양식
-
- ctags, taglist

-
Imagination is more important than knowledge. by 바죠|05/15 09:42
트랙백: ctags와 taglist사용하여 함수 아웃라인보기 프로그래밍 과정에서 ctags, taglist를 활용하기! 참조 싸이트: http://psyoblade.egloos.com/2723391
- ctags, taglist
-
- ar (UNIX)

-
Imagination is more important than knowledge. by 바죠|05/14 08:48
유닉스 명령어 ar 주로 makefile에 넣어두고 사용하는 명령어이다. 여러 가지 object program들( *.o)을 하나의 파일(예를 들어, libxxx.a)로 묶어 둘 때 사용한다. makefile에서 사용된 예를 보면 아래와 같다. makefile: LIBFLAGS = -crusv libtinker.a: ${OB..
- ar (UNIX)
-
- prime number를 찾아내는 알고리듬

-
Imagination is more important than knowledge. by 바죠|04/03 16:17
Sieve of Eratosthenes Algorithm 솟수(prime number)들을 찾는 알고리듬에 대한 내용입니다. 2에서 부터 120(=n)까지의 정수 중에서 솟수에 해당하는 숫자는 무엇이 있을까요? n이 굉장히 큰 수 일 때, 좀더 빨..
- prime number를 찾아내는 알고리듬
-
- TIOBE programming community index

-
Imagination is more important than knowledge. by 바죠|02/26 08:50
컴퓨터 프로그래밍 언어들에 대한 비교표와 실제 사용빈도 변화 추이 주로 사용하는 두 컴퓨터 언어들만 관찰해 보면 아래와 같다. 포트란(24위)은 사용빈도에서 10위권에 들지 못하고 20위권에 위치한다. 반면,..
- TIOBE programming community index
-
- F2PY: Fortran to Python interface generator

-
Imagination is more important than knowledge. by 바죠|02/20 11:39
F2PY: Fortran to Python interface generator = F2PY를 활용하면 파이썬에서 포트란 77/90 subroutine/module subroutine, C 함수를 부를 수 있게 해준다. 포트란 77 common 블락과 포트란 90의 모듈 자료들(allocatable array) 참조할 수 있게 해준다.
- F2PY: Fortran to Python interface generator
-
- Fortran Resources and compilers for Win and Linux

-
Imagination is more important than knowledge. by 바죠|02/20 11:26
Fortran Resources and Fortran 77/90/95 Compilers for Windows and Linux
- Fortran Resources and compilers for Win and Linux
-
- Google code search

-
Imagination is more important than knowledge. by 바죠|02/07 11:18
Google Code Search 이곳에서 트랙백한 것입이다. 허허, 이런 써치엔진이 있었군요. 미처 몰랐습니다. Search public source code. 공개 소스 코드 검색 - 포트란, 파이썬 프로그램들을 찾아 보..
- Google code search







