{"links":{},"metadata":{"_oai":{"id":"oai:ipsj.ixsq.nii.ac.jp:00177702","sets":["934:935:8954:9017"]},"path":["9017"],"owner":"11","recid":"177702","title":["タスク並列プログラムに対する動的カットオフ手法の評価"],"pubdate":{"attribute_name":"公開日","attribute_value":"2017-02-27"},"_buckets":{"deposit":"d20efcf8-7163-41fb-8770-b9ea0ea32803"},"_deposit":{"id":"177702","pid":{"type":"depid","value":"177702","revision_id":0},"owners":[11],"status":"published","created_by":11},"item_title":"タスク並列プログラムに対する動的カットオフ手法の評価","author_link":["377911","377913","377912","377914"],"item_titles":{"attribute_name":"タイトル","attribute_value_mlt":[{"subitem_title":"タスク並列プログラムに対する動的カットオフ手法の評価"},{"subitem_title":"Evaluation of Dynamic Cut-off Techniques for Task Parallel Programs","subitem_title_language":"en"}]},"item_keyword":{"attribute_name":"キーワード","attribute_value_mlt":[{"subitem_subject":"[発表概要] ","subitem_subject_scheme":"Other"}]},"item_type_id":"3","publish_date":"2017-02-27","item_3_text_3":{"attribute_name":"著者所属","attribute_value_mlt":[{"subitem_text_value":"東京大学情報理工学系研究科"},{"subitem_text_value":"東京大学情報理工学系研究科"}]},"item_3_text_4":{"attribute_name":"著者所属(英)","attribute_value_mlt":[{"subitem_text_value":"Graduate School of Information Science and Technology, The University of Tokyo","subitem_text_language":"en"},{"subitem_text_value":"Graduate School of Information Science and Technology, The University of Tokyo","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/177702/files/IPSJ-TPRO1002006.pdf","label":"IPSJ-TPRO1002006.pdf"},"date":[{"dateType":"Available","dateValue":"2019-02-27"}],"format":"application/pdf","billing":["billing_file"],"filename":"IPSJ-TPRO1002006.pdf","filesize":[{"value":"98.3 kB"}],"mimetype":"application/pdf","priceinfo":[{"tax":["include_tax"],"price":"0","billingrole":"5"},{"tax":["include_tax"],"price":"0","billingrole":"6"},{"tax":["include_tax"],"price":"0","billingrole":"15"},{"tax":["include_tax"],"price":"0","billingrole":"44"}],"accessrole":"open_date","version_id":"f0e22218-afee-49b0-8a61-7ea4e73b7a09","displaytype":"detail","licensetype":"license_note","license_note":"Copyright (c) 2017 by the Information Processing Society of Japan"}]},"item_3_creator_5":{"attribute_name":"著者名","attribute_type":"creator","attribute_value_mlt":[{"creatorNames":[{"creatorName":"岩崎, 慎太郎"}],"nameIdentifiers":[{}]},{"creatorNames":[{"creatorName":"田浦, 健次朗"}],"nameIdentifiers":[{}]}]},"item_3_creator_6":{"attribute_name":"著者名(英)","attribute_type":"creator","attribute_value_mlt":[{"creatorNames":[{"creatorName":"Shintaro, Iwasaki","creatorNameLang":"en"}],"nameIdentifiers":[{}]},{"creatorNames":[{"creatorName":"Kenjiro, Taura","creatorNameLang":"en"}],"nameIdentifiers":[{}]}]},"item_3_source_id_9":{"attribute_name":"書誌レコードID","attribute_value_mlt":[{"subitem_source_identifier":"AA11464814","subitem_source_identifier_type":"NCID"}]},"item_resource_type":{"attribute_name":"資源タイプ","attribute_value_mlt":[{"resourceuri":"http://purl.org/coar/resource_type/c_6501","resourcetype":"journal article"}]},"item_3_source_id_11":{"attribute_name":"ISSN","attribute_value_mlt":[{"subitem_source_identifier":"1882-7802","subitem_source_identifier_type":"ISSN"}]},"item_3_description_7":{"attribute_name":"論文抄録","attribute_value_mlt":[{"subitem_description":"タスク並列プログラムにおいて,タスクの粒度の調整は最も重要な最適化の1つである.タスクの粒度を大きくして並列化オーバヘッドを削減するために,“適当な基準”を満たしている場合,タスク生成を単なる関数呼び出しに置き換える,カットオフと呼ばれる最適化手法が一般的に用いられる.このカットオフの“適当な基準”は,従来はプログラマが実験的・経験的に決めていたが,プログラマの負担を減らすために,タスクの総量やタスクの深さなど,タスク並列ランタイムの持つ情報を用いてカットオフ最適化を自動化する動的カットオフ手法が複数提案されている.本研究は,従来提案されてきた動的カットオフ手法を統一的に評価することで,その長短を明らかにする.まず同一のタスク並列処理系に対してそれぞれの動的カットオフ手法を実装する.その後,ベンチマークを用いてその性能向上を測定することで,各手法の有効性を明らかにする.得られた結果から望ましい動的カットオフ手法についての考察を行う.","subitem_description_type":"Other"}]},"item_3_description_8":{"attribute_name":"論文抄録(英)","attribute_value_mlt":[{"subitem_description":"Controlling task granularity is one of the most important optimizations for task parallel programs; a task parallel program often suffers from a large parallelization overhead due to its extremely fine granularity even though task parallel runtime systems are designed to handle tasks efficiently. A “cut-off” is a well-known method to address this problem; it alleviates a tasking overhead by just calling serial functions tasks instead of creating tasks in a certain condition. The cut-off conditions are often specified by programmers, which decreases productivity. Numerous studies have focused on a dynamic cut-off; a technique to determine whether the task is created or sequentialized by utilizing runtime information such as total amount of tasks and current depth of a task. In this work, we evaluate the dynamic cut-off techniques studied in the previous work and characterize their performance optimization. We implemented these cut-off methods on the same task parallel runtime system, and measured the performance using the same benchmarks. In summary, we discuss the desirable dynamic cut-off strategy based on the experimental results.","subitem_description_type":"Other"}]},"item_3_biblio_info_10":{"attribute_name":"書誌情報","attribute_value_mlt":[{"bibliographicPageEnd":"3","bibliographic_titles":[{"bibliographic_title":"情報処理学会論文誌プログラミング(PRO)"}],"bibliographicPageStart":"3","bibliographicIssueDates":{"bibliographicIssueDate":"2017-02-27","bibliographicIssueDateType":"Issued"},"bibliographicIssueNumber":"2","bibliographicVolumeNumber":"10"}]},"relation_version_is_last":true,"weko_creator_id":"11"},"updated":"2025-01-20T05:24:14.636725+00:00","created":"2025-01-19T00:47:10.212747+00:00","id":177702}