プラグイン・プロパティー

プラグインは独自のデバイス固有のプロパティーを提供できます。

プロパティー・クラス

OpenVINO API は、プロパティーとアクセス権を定義できるインターフェイス ov::Property を提供します。これに基づいて、プラグイン固有のプロパティーの宣言は次のようになります。

/**
 * @brief Allows to disable all transformations for execution inside the TEMPLATE plugin.
 */
static constexpr Property<bool, PropertyMutability::RW> disable_transformations{"DISABLE_TRANSFORMATIONS"};