ailiaSummary method
- Pointer<
AILIANetwork> net, - Pointer<
Char> buffer, - int buffer_size
~japanese @brief 各Blobの名前と形状を表示します。 @param net ネットワークオブジェクトポインタ @param buffer Summaryの出力先 @param buffer_size 出力バッファのサイズ(終端null文字分を含む)。 ailiaGetSummaryLength() で取得した値を設定してください。 @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。 @details このAPIはailiaOpenWeighXXX呼び出し後より利用可能です。
~english @brief Shows the name and shape of each blob. @param net A network instance pointer @param buffer The output destination of the summary @param buffer_size The size of the output buffer (including the null terminator). Set the value obtained by ailiaGetSummaryLength() . @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise. @details This API can be call after call ailiaOpenWeighXXX().
Implementation
int ailiaSummary(
ffi.Pointer<AILIANetwork> net,
ffi.Pointer<ffi.Char> buffer,
int buffer_size,
) {
return _ailiaSummary(
net,
buffer,
buffer_size,
);
}