I don't know if I'm just overlooking something obvious but despite due googling around I see no way to simply add a scalar to a vector (or matrix) using BLAS operations. I'm trying to do this in cuBLAS/CUDA so I'll take any way to accomplish this within that framework. BLAS has <t>scal for scalar multiplication (cublas<t>scal) but where is the analog for addition?! I.e. something analagous to GSL gsl_vector_add_constant. What am I missing?
|
|
|||||||
|
|
Probably the only way to do what you are asking is applying So the operation becomes EDIT: From comments, it seems that you foresee some difficulty in creating the unit vector for the SAXPY call. One way to do so is to use a memset call to set the values of the unit vector on the device, something like this:
Note here I have allocated and copied memory for the CUBLAS vectors using the CUDA runtime API directly, rather than use the CUBLAS helper functions (which are only very thin wrappers around the runtime API calls anyway). The "tricky" part is making a bit pattern and using a driver API memset function to set each 32 bit word of the array. You could equally do the whole thing with a couple of lines of template code from the thrust library, or just write your own kernel, which could be as simple as
[disclaimer: this kernel was written in the browser and is untested. Use as own risk] |
|||||||||||
|
|
Four options, ranked from best to worst:
|
|||
|
