E.g.
julia> A = randn(3,4);B = randn(4,3);C = Array(Float64,3,3);
julia> BLAS.gemm!('N', 'N', 1.0, A, B, 0.0, C)
3x3 Array{Float64,2}:
-1.39617 4.02968 -1.2171
-2.35074 2.60903 0.216789
1.63807 0.102948 -0.41358
2014-11-10 9:09 GMT-05:00 Steven G. Johnson <[email protected]>:
>
>
> On Monday, November 10, 2014 8:39:00 AM UTC-5, Kapil Agarwal wrote:
>
>> I am unable to figure out what should I pass as input parameters to the
>> gemm! function. The function declaration asks for function BlasChar,
>> StridedVecOrMat. StridedMatrix. Are they same as a normal Char and Array?
>>
>
> Yes. (Or rather, the StridedFoo types are a superset, including various
> 1d/2d array types.)
>
>