リモートでARMプロセッサとMali GPUを搭載したLinuxマシンでopen clを実行しています。しかし、clGetPlatformIDs() で「不明なエラー: プラットフォーム ID を取得できません」のようなエラーが発生しています。
両方試してみました
cl_uint numPlatforms; //the NO. of platforms
cl_platform_id platform = NULL; //the chosen platform
cl_int status = clGetPlatformIDs(0, NULL, &numPlatforms);
と
cl_int status = clGetPlatformIDs(1, &platform, &numPlatforms);
しかし、両方について、同じエラーが発生しています。AMDグラフィックスを搭載した個人用のWindowsラップトップでも同じコードが機能しています。
このエラーの原因は何ですか?