インテルのみ表示可能 — GUID: ewa1426535408926
Ixiasoft
インテルのみ表示可能 — GUID: ewa1426535408926
Ixiasoft
6.4. カスタム・プラットフォーム固有の関数へのアクセス
clGetBoardExtensionFunctionAddressIntelFPGA拡張は、カスタム・プラットフォームからユーザーがアクセス可能な関数へのポインターを取得するAPIを指定します。
拡張インターフェイスの定義は、 INTELFPGAOCLSDKROOT/host/include/CL/cl_ext.hファイルで確認できます。
void* clGetBoardExtensionFunctionAddressIntelFPGA ( const char* function_name, cl_device_id device );
以下に詳細を説明します。
function_nameは、カスタム・プラットフォームのメーカーが提供するユーザーがアクセス可能な関数の名前を指します。
また、
deviceは、clGetDeviceIDs関数によって返されるデバイスIDです。
インストーラブル・クライアント・ドライバー (ICD) を介しclGetBoardExtensionFunctionAddressIntelFPGA APIにアクセスする際は、ICD拡張APIのclGetExtensionFunctionAddressIntelFPGAが、最初にclGetBoardExtensionFunctionAddressIntelFPGA APIへのポインターを取得していることを確認してください。
次のコード例は、ICDを介したカスタム・プラットフォーム固有の関数へのアクセス方法を示しています。
clGetBoardExtensionFunctionAddressIntelFPGA_fn clGetBoardExtensionFunctionAddressIntelFPGA = (clGetBoardExtensionFunctionAddressIntelFPGA_fn) clGetExtensionFunctionAddressForPlatform (platform, "clGetBoardExtensionFunctionAddressIntelFPGA"); if (clGetBoardExtensionFunctionAddressIntelFPGA == NULL){ printf ("Failed to get clGetBoardExtensionFunctionAddressIntelFPGA\n"); } void * board_extension_function_ptr = clGetBoardExtensionFunctionAddressIntelFPGA("function_name",device_id);