Commit 091f78a
committed
# Version 1.2
Code & binaries updated with libsvm version 3.17 & CUDA SDK version 5.5
Details:
Exchanged the header file “cublas.h” for “cublas_v2.h”.
Exchanged the type cublasStatus for cublasStatus_t.
Exchanged the function cublasAlloc() and cublasFree() for cudaMalloc() and cudaFree(), respectively.
Declared the cublasHandle_t CUBLAS library handle.
Initialized the handle using cublasCreate(). Also, released the handle once finished using cublasDestroy().
Added the handle as the first parameter to all the CUBLAS library function calls.
Changed the scalar parameters to be passed by reference, instead of by value (usually simply adding “&” symbol in C/C++ is enough, because the parameters are passed by reference on the host by default).
Changed the parameter characters 'N' or 'n' (non-transpose operation), to CUBLAS_OP_N.
Checked the function prototypes in the header files “cublas.h” and “cublas_v2.h” for code correctness.1 parent ceb9ae3 commit 091f78a
File tree
101 files changed
+14806
-4960
lines changed- binaries
- libsvm-3.0-GPUx32
- tools
- windows
- libsvm-3.0-GPUx64
- tools
- windows
- 64_bit_dlls
- linux
- tools
- windows
- x64
- tools
- windows
- x86
- tools
- windows
- src
- linux
- windows
- libsvm_train_dense_gpu
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
101 files changed
+14806
-4960
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
9 | 17 | | |
10 | 18 | | |
11 | 19 | | |
| |||
21 | 29 | | |
22 | 30 | | |
23 | 31 | | |
24 | | - | |
| 32 | + | |
25 | 33 | | |
26 | 34 | | |
27 | 35 | | |
| |||
71 | 79 | | |
72 | 80 | | |
73 | 81 | | |
74 | | - | |
| 82 | + | |
75 | 83 | | |
76 | 84 | | |
77 | 85 | | |
| |||
80 | 88 | | |
81 | 89 | | |
82 | 90 | | |
83 | | - | |
| 91 | + | |
84 | 92 | | |
85 | 93 | | |
86 | 94 | | |
| |||
0 commit comments