fortran66のブログ

fortran について書きます。

2014-04-22から1日間の記事一覧

メモ帳 parameterized derived types 例

Modern Fortran Explained 13章 を参考に試してみました。ソース・プログラム program test implicit none type :: t_mat(ikind, n, m) integer, kind :: ikind integer, len :: n, m real(ikind) :: x(n, m) end type t_mat ! type, extends(t_mat) :: t_la…

The new features of Fortran 2008 改定版

The new features of Fortran 2008 改定版が出ていました。The new features of Fortran 2008 (Reid) - supersedes N1828 ftp://ftp.nag.co.uk/sc22wg5/N1851-N1900/N1891.pdfちょっと見には、どこが改定されたのかよくわかりません。

ACM SIGPLAN Fortran Forum 4月号

イギリス Fortran 同人誌最新号出ました。ACM SIGPLAN Fortran Forum Volume 33 Issue 1, April 2014http://dl.acm.org/citation.cfm?id=2594488&CFID=304828140&CFTOKEN=91798490今月は Arjen Markus による書評と記事の2本立てでした。

急げネットイナゴ! Beta for Intel Developer Tools 2015 始まる。

Intel Fortran 次期バージョンのベータテストが始まりました。 登録すると今年の9月後半まで気前よく全部入りのベータ版が試せるようです。Fortran に関していえば Parameterized Derived Types と block..end block 構造の導入と が目玉でしょうか?Paramet…