OpenRadioss
2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
BI_imvcopy.c
Go to the documentation of this file.
1
#include "
Bdef.h
"
2
void
BI_imvcopy
(
Int
m,
Int
n
,
Int
*A,
Int
lda,
Int
*buff)
3
/*
4
* Performs a matrix to vector copy (pack) for the data type Int
5
*/
6
{
7
Int
i, j;
8
9
if
( (m == lda) || (
n
== 1) )
10
{
11
m =
n
* m;
12
for
(i=0; i < m; i++) buff[i] = A[i];
13
}
14
else
if
(m == 1)
15
{
16
for
(j=0; j <
n
; j++) buff[j] = A[j*lda];
17
}
18
else
19
{
20
for
(j=0; j <
n
; j++)
21
{
22
for
(i=0; i < m; i++) buff[i] = A[i];
23
A += lda;
24
buff += m;
25
}
26
}
27
}
BI_imvcopy
void BI_imvcopy(Int m, Int n, Int *A, Int lda, Int *buff)
Definition
BI_imvcopy.c:2
Int
#define Int
Definition
Bconfig.h:22
Bdef.h
n
n
Definition
schur_example.m:9
engine
extlib
scalapack-2.2.0
BLACS
SRC
BI_imvcopy.c
Generated by
1.15.0