3

をダウンロードしたところ、サンプル プログラムを実行しようとするとAMD-APP-SDK-v2.5-RC2-lnx32、なぜこのようになったのですか?GPU not found.

%> ./AESEncryptDecrypt
Platform 0 : Advanced Micro Devices, Inc.
Encrypting Image ....
Input Image : input512.bmp
Key : 15 201 51 89 92 34 96 66 11 225 161 96 81 211 108 124 
GPU not found. Falling back to CPU device

Selected Platform Vendor : Advanced Micro Devices, Inc.
Device 0 : Intel(R) Core(TM)2 Duo CPU     T5870  @ 2.00GHz
Executing kernel for 1 iterations
-------------------------------------------
Output Filename : output.bmp

==========================================

fglrxinfo:

display: :0.0  screen: 0
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: ATI Mobility Radeon HD 3400 Series
OpenGL version string: 3.3.10665 Compatibility Profile Context
4

1 に答える 1

4

Radeon HD 3400 ハードウェアは「ATI ストリーム処理」 (したがって GPU 上の OpenCL) をサポートしていないようです。

Linux (CL_DEVICE_TYPE_GPU) で OpenCL-GPU 処理を有効にする方法を参照してください。(これは特定のコアでのみサポートされており、さまざまな機能が有効になっている複数のコアがFxxxモデル範囲内で使用されています)。

幸せな OpenCL on CPU コーディング。

于 2011-10-16T00:09:45.403 に答える