Skip to content

Commit 0b36d01

Browse files
committed
Formatting.
1 parent 9d4f2e0 commit 0b36d01

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

LAPACKE/utils/lapacke_ctz_nancheck.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,13 @@ lapack_logical LAPACKE_ctz_nancheck( int matrix_layout, char direct, char uplo,
132132

133133
/* Check rectangular part */
134134
if( rect_offset >= 0 ) {
135-
if( LAPACKE_cge_nancheck(matrix_layout, rect_m, rect_n, &a[rect_offset], lda) ) {
135+
if( LAPACKE_cge_nancheck( matrix_layout, rect_m, rect_n,
136+
&a[rect_offset], lda) ) {
136137
return (lapack_logical) 1;
137138
}
138139
}
139140

140141
/* Check triangular part */
141-
return LAPACKE_ctr_nancheck(matrix_layout, uplo, diag, tri_n, &a[tri_offset], lda);
142+
return LAPACKE_ctr_nancheck( matrix_layout, uplo, diag, tri_n,
143+
&a[tri_offset], lda );
142144
}

LAPACKE/utils/lapacke_dtz_nancheck.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,11 +131,13 @@ lapack_logical LAPACKE_dtz_nancheck( int matrix_layout, char direct, char uplo,
131131

132132
/* Check rectangular part */
133133
if( rect_offset >= 0 ) {
134-
if( LAPACKE_dge_nancheck(matrix_layout, rect_m, rect_n, &a[rect_offset], lda) ) {
134+
if( LAPACKE_dge_nancheck( matrix_layout, rect_m, rect_n,
135+
&a[rect_offset], lda) ) {
135136
return (lapack_logical) 1;
136137
}
137138
}
138139

139140
/* Check triangular part */
140-
return LAPACKE_dtr_nancheck(matrix_layout, uplo, diag, tri_n, &a[tri_offset], lda);
141+
return LAPACKE_dtr_nancheck( matrix_layout, uplo, diag, tri_n,
142+
&a[tri_offset], lda );
141143
}

LAPACKE/utils/lapacke_stz_nancheck.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,11 +131,13 @@ lapack_logical LAPACKE_stz_nancheck( int matrix_layout, char direct, char uplo,
131131

132132
/* Check rectangular part */
133133
if( rect_offset >= 0 ) {
134-
if( LAPACKE_sge_nancheck(matrix_layout, rect_m, rect_n, &a[rect_offset], lda) ) {
134+
if( LAPACKE_sge_nancheck( matrix_layout, rect_m, rect_n,
135+
&a[rect_offset], lda) ) {
135136
return (lapack_logical) 1;
136137
}
137138
}
138139

139140
/* Check triangular part */
140-
return LAPACKE_str_nancheck(matrix_layout, uplo, diag, tri_n, &a[tri_offset], lda);
141+
return LAPACKE_str_nancheck( matrix_layout, uplo, diag, tri_n,
142+
&a[tri_offset], lda );
141143
}

LAPACKE/utils/lapacke_ztz_nancheck.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,13 @@ lapack_logical LAPACKE_ztz_nancheck( int matrix_layout, char direct, char uplo,
132132

133133
/* Check rectangular part */
134134
if( rect_offset >= 0 ) {
135-
if( LAPACKE_zge_nancheck(matrix_layout, rect_m, rect_n, &a[rect_offset], lda) ) {
135+
if( LAPACKE_zge_nancheck( matrix_layout, rect_m, rect_n,
136+
&a[rect_offset], lda) ) {
136137
return (lapack_logical) 1;
137138
}
138139
}
139140

140141
/* Check triangular part */
141-
return LAPACKE_ztr_nancheck(matrix_layout, uplo, diag, tri_n, &a[tri_offset], lda);
142+
return LAPACKE_ztr_nancheck( matrix_layout, uplo, diag, tri_n,
143+
&a[tri_offset], lda );
142144
}

0 commit comments

Comments
 (0)