diff options
author | Michael Bien <[email protected]> | 2009-10-16 00:07:36 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2009-10-16 00:07:36 +0200 |
commit | 41b12ea8ec6d900c1fd5c17e74a46c6f3f8c8448 (patch) | |
tree | e4eb20323dfbc41fdc87b87a5bd28aeaec178171 /src/com/mbien | |
parent | a69ac7eb33e3e963bacf2d47d92875d8e8176d1d (diff) |
fixed clBuildProgram, finished VectorAdd unit test.
Diffstat (limited to 'src/com/mbien')
-rw-r--r-- | src/com/mbien/opencl/CLException.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/mbien/opencl/CLException.java b/src/com/mbien/opencl/CLException.java index 4539046d..1f8f16d5 100644 --- a/src/com/mbien/opencl/CLException.java +++ b/src/com/mbien/opencl/CLException.java @@ -125,7 +125,7 @@ public class CLException extends RuntimeException { return "CL_INVALID_MIP_LEVEL"; default: - return "unknown cause: error "+error; + return "unknown cause: error " + error; } } |