ランタイム パラメーターのサポート サマリ - 2023.2 日本語

AI エンジン カーネルおよびグラフ プログラミング ガイド (UG1079)

Document ID
UG1079
Release Date
2023-12-04
Version
2023.2 日本語

このセクションでは、AI エンジン ランタイム パラメーター (RTP) のサポート ステータスを示します。

表 1. AI エンジン RTP のデフォルトおよびサポート ステータス
AI エンジン RTP

(PS から/PS へ)

入力 出力
同期 非同期 同期 非同期
スカラー デフォルト サポートあり サポートあり デフォルト
配列 デフォルト サポートあり サポートあり デフォルト

PS から/PS への RTP 接続のコード抜粋:

connect<parameter>(fromPS, first.in[0]); //Synchronous RTP, default for input
connect<parameter>(fromPS, sync(first.in[0])); //Synchronous RTP
connect<parameter>(fromPS, async(first.in[0])); //Asynchronous RTP
connect<parameter>(second.inout[0], toPS); //Asynchronous RTP, default for output
connect<parameter>(async(second.inout[0]), toPS); //Asynchronous RTP
connect<parameter>(sync(second.inout[0]), toPS); //Synchronous RTP