ailiaLLMGetBackendName method
~japanese @brief 計算環境の一覧を取得します @param env 計算環境情報の格納先(AILIANetworkインスタンスを破棄するまで有効) @param env_idx 計算環境情報のインデックス(0~ ailiaLLMGetBackendCount() -1) @return 成功した場合は \ref AILIA_LLM_STATUS_SUCCESS 、そうでなければエラーコードを返す。
~english @brief Gets the list of computational environments. @param env The storage location of the computational environment information (valid until the AILIANetwork instance is destroyed) @param env_idx The index of the computational environment information (0 to ailiaLLMGetBackendCount() -1) @return If this function is successful, it returns \ref AILIA_LLM_STATUS_SUCCESS , or an error code otherwise.
Implementation
int ailiaLLMGetBackendName(
ffi.Pointer<ffi.Pointer<ffi.Char>> env,
int env_idx,
) {
return _ailiaLLMGetBackendName(
env,
env_idx,
);
}