{"metadata":{"_oai":{"id":"oai:ipsj.ixsq.nii.ac.jp:00220226","sets":["1164:2240:10902:11003"]},"path":["11003"],"owner":"44499","recid":"220226","title":["自動タスク並列化トランスパイラの実装と評価"],"pubdate":{"attribute_name":"公開日","attribute_value":"2022-09-19"},"_buckets":{"deposit":"ed345829-1ef3-40a3-8bcf-2f26359f0722"},"_deposit":{"id":"220226","pid":{"type":"depid","value":"220226","revision_id":0},"owners":[44499],"status":"published","created_by":44499},"item_title":"自動タスク並列化トランスパイラの実装と評価","author_link":["575554","575553","575555","575552"],"item_titles":{"attribute_name":"タイトル","attribute_value_mlt":[{"subitem_title":"自動タスク並列化トランスパイラの実装と評価"}]},"item_keyword":{"attribute_name":"キーワード","attribute_value_mlt":[{"subitem_subject":"HPCシステム","subitem_subject_scheme":"Other"}]},"item_type_id":"4","publish_date":"2022-09-19","item_4_text_3":{"attribute_name":"著者所属","attribute_value_mlt":[{"subitem_text_value":"富士通株式会社"},{"subitem_text_value":"富士通株式会社"},{"subitem_text_value":"富士通株式会社"},{"subitem_text_value":"富士通株式会社"}]},"item_4_text_4":{"attribute_name":"著者所属(英)","attribute_value_mlt":[{"subitem_text_value":"Fujitsu Limited","subitem_text_language":"en"},{"subitem_text_value":"Fujitsu Limited","subitem_text_language":"en"},{"subitem_text_value":"Fujitsu Limited","subitem_text_language":"en"},{"subitem_text_value":"Fujitsu Limited","subitem_text_language":"en"}]},"item_language":{"attribute_name":"言語","attribute_value_mlt":[{"subitem_language":"jpn"}]},"item_publisher":{"attribute_name":"出版者","attribute_value_mlt":[{"subitem_publisher":"情報処理学会","subitem_publisher_language":"ja"}]},"publish_status":"0","weko_shared_id":-1,"item_file_price":{"attribute_name":"Billing file","attribute_type":"file","attribute_value_mlt":[{"url":{"url":"https://ipsj.ixsq.nii.ac.jp/record/220226/files/IPSJ-HPC22186004.pdf","label":"IPSJ-HPC22186004.pdf"},"date":[{"dateType":"Available","dateValue":"2024-09-19"}],"format":"application/pdf","billing":["billing_file"],"filename":"IPSJ-HPC22186004.pdf","filesize":[{"value":"542.9 kB"}],"mimetype":"application/pdf","priceinfo":[{"tax":["include_tax"],"price":"660","billingrole":"5"},{"tax":["include_tax"],"price":"330","billingrole":"6"},{"tax":["include_tax"],"price":"0","billingrole":"14"},{"tax":["include_tax"],"price":"0","billingrole":"44"}],"accessrole":"open_date","version_id":"ea9505ba-4075-47ec-ac7e-e8c2cebe8b31","displaytype":"detail","licensetype":"license_note","license_note":"Copyright (c) 2022 by the Information Processing Society of Japan"}]},"item_4_creator_5":{"attribute_name":"著者名","attribute_type":"creator","attribute_value_mlt":[{"creatorNames":[{"creatorName":"津金, 佳祐"}],"nameIdentifiers":[{}]},{"creatorNames":[{"creatorName":"新井, 正樹"}],"nameIdentifiers":[{}]},{"creatorNames":[{"creatorName":"前田, 宗則"}],"nameIdentifiers":[{}]},{"creatorNames":[{"creatorName":"笠置, 明彦"}],"nameIdentifiers":[{}]}]},"item_4_source_id_9":{"attribute_name":"書誌レコードID","attribute_value_mlt":[{"subitem_source_identifier":"AN10463942","subitem_source_identifier_type":"NCID"}]},"item_4_textarea_12":{"attribute_name":"Notice","attribute_value_mlt":[{"subitem_textarea_value":"SIG Technical Reports are nonrefereed and hence may later appear in any journals, conferences, symposia, etc."}]},"item_resource_type":{"attribute_name":"資源タイプ","attribute_value_mlt":[{"resourceuri":"http://purl.org/coar/resource_type/c_18gh","resourcetype":"technical report"}]},"item_4_source_id_11":{"attribute_name":"ISSN","attribute_value_mlt":[{"subitem_source_identifier":"2188-8841","subitem_source_identifier_type":"ISSN"}]},"item_4_description_7":{"attribute_name":"論文抄録","attribute_value_mlt":[{"subitem_description":"近年の主流であるメニーコアプロセッサにおいて,多数のコアを効率よく利用するためにタスク並列プログラミングモデルが注目されている.タスクに対してデータ依存を記述することで,従来のスレッド間の全体同期からタスク単位の同期とし,同期オーバヘッドを減らすことでプログラムの高速化が期待される.しかし,タスクに対してデータ依存を全て記述することや適切なタスク粒度を設定することは困難であり,プログラム開発の生産性を低下させることから,我々はタスク並列プログラムへの自動変換に関する研究開発を行っている.HPC183 での報告では,タスク並列プログラミングモデルの OpenMPとOmpSs-2 を用いて既存のデータ並列ベンチマークをタスク並列実装し,A64FX と Xeon プロセッサ上で性能評価を行った.そこで本稿では,凸多面体モデルによるループ最適化を行うトランスパイラである Pluto を基に,逐次やMPI並列プログラムからOpenMPのタスク並列プログラムに自動変換する機能の実装とその性能を示す.実装では,Pluto のデータ依存解析の結果を用いたタスクへのデータ依存の追加,MPI や BLAS/LAPACK 関数の対応,OpenMP の iterator を用いて通信と演算のデータ依存範囲を合わせるなどを行い,自動タスク並列化機能を実現した.A64FX プロセッサ上の性能評価では,既存のデータ並列実装と比較して Laplace Solver で 13%,PolyBenchのfdtd-2d で 7%,ブロックコレスキー分解で 48% の性能向上を確認し,タスク並列プログラミングモデルによる実装の性能の高さを示した.また,タスク並列実装と自動変換されたタスク並列プログラムでほぼ同等の性能となり,提案機能で簡易にタスク並列化を実施できることを示した.","subitem_description_type":"Other"}]},"item_4_biblio_info_10":{"attribute_name":"書誌情報","attribute_value_mlt":[{"bibliographicPageEnd":"8","bibliographic_titles":[{"bibliographic_title":"研究報告ハイパフォーマンスコンピューティング(HPC)"}],"bibliographicPageStart":"1","bibliographicIssueDates":{"bibliographicIssueDate":"2022-09-19","bibliographicIssueDateType":"Issued"},"bibliographicIssueNumber":"4","bibliographicVolumeNumber":"2022-HPC-186"}]},"relation_version_is_last":true,"weko_creator_id":"44499"},"id":220226,"updated":"2025-01-19T14:38:29.150833+00:00","links":{},"created":"2025-01-19T01:20:16.325071+00:00"}