OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:actual_x
(Results
1 - 3
of
3
) sorted by null
/external/eigen/blas/
level2_impl.h
227
Scalar*
actual_x
= get_compact_vector(x,actual_n,*incx);
local
246
vector(actual_y+start,len) += (alpha*
actual_x
[j]) * mat_coeffs.col(j).segment(offset,len);
248
actual_y[j] += alpha * ( mat_coeffs.col(j).segment(offset,len).transpose() * vector(
actual_x
+start,len) ).value();
250
actual_y[j] += alpha * ( mat_coeffs.col(j).segment(offset,len).adjoint() * vector(
actual_x
+start,len) ).value();
253
if(
actual_x
!=x) delete[]
actual_x
;
289
Scalar*
actual_x
= get_compact_vector(x,actual_n,*incx);
304
vector(actual_y+start,len) += (alpha*
actual_x
[j]) * mat_coeffs.col(j).segment(offset,len);
306
actual_y[j] += alpha * ( mat_coeffs.col(j).segment(offset,len).transpose() * vector(
actual_x
+start,len) ).value();
308
actual_y[j] += alpha * ( mat_coeffs.col(j).segment(offset,len).adjoint() * vector(
actual_x
+start,len) ).value()
379
Scalar*
actual_x
= get_compact_vector(x,actual_n,*incx);
local
[
all
...]
level2_real_impl.h
34
Scalar*
actual_x
= get_compact_vector(x,*n,*incx);
44
if(UPLO(*uplo)==UP) vector(actual_y,*n).noalias() += matrix(a,*n,*n,*lda).selfadjointView<Upper>() * (alpha * vector(
actual_x
,*n));
45
else if(UPLO(*uplo)==LO) vector(actual_y,*n).noalias() += matrix(a,*n,*n,*lda).selfadjointView<Lower>() * (alpha * vector(
actual_x
,*n));
47
if(
actual_x
!=x) delete[]
actual_x
;
level2_cplx_impl.h
40
Scalar*
actual_x
= get_compact_vector(x,*n,*incx);
52
if(UPLO(*uplo)==UP) vector(actual_y,*n).noalias() += matrix(a,*n,*n,*lda).selfadjointView<Upper>() * (alpha * vector(
actual_x
,*n));
53
else if(UPLO(*uplo)==LO) vector(actual_y,*n).noalias() += matrix(a,*n,*n,*lda).selfadjointView<Lower>() * (alpha * vector(
actual_x
,*n));
56
if(
actual_x
!=x) delete[]
actual_x
;
Completed in 88 milliseconds