| 25 | int clsparseInitialized = 0; |
| 26 | |
| 27 | clsparseStatus |
| 28 | clsparseGetVersion( cl_uint *major, cl_uint *minor, cl_uint *patch, cl_uint *tweak ) |
| 29 | { |
| 30 | *major = clsparseVersionMajor; |
| 31 | *minor = clsparseVersionMinor; |
| 32 | *patch = clsparseVersionPatch; |
| 33 | *tweak = clsparseVersionTweak; |
| 34 | |
| 35 | return clsparseSuccess; |
| 36 | } |
| 37 | |
| 38 | |
| 39 | clsparseStatus |