Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Removed unnecessary assign to info.
  • Loading branch information
STCE2023 committed Oct 5, 2022
commit 945bb8d1700b319ae5dd0791d49de6c6e7140b52
1 change: 0 additions & 1 deletion LAPACKE/src/lapacke_clangb_work.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ float LAPACKE_clangb_work( int matrix_layout, char norm, lapack_int n,
LAPACKE_cgb_trans( matrix_layout, n, n, kl, ku, ab, ldab, ab_t, ldab_t );
/* Call LAPACK function and adjust info */
res = LAPACK_clangb( &norm, &n, &kl, &ku, ab_t, &ldab_t, work );
info = 0; /* LAPACK call is ok! */
/* Release memory and exit */
LAPACKE_free( ab_t );
exit_level_0:
Expand Down
1 change: 0 additions & 1 deletion LAPACKE/src/lapacke_dlangb_work.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ double LAPACKE_dlangb_work( int matrix_layout, char norm, lapack_int n,
LAPACKE_dgb_trans( matrix_layout, n, n, kl, ku, ab, ldab, ab_t, ldab_t );
/* Call LAPACK function and adjust info */
res = LAPACK_dlangb( &norm, &n, &kl, &ku, ab_t, &ldab_t, work );
info = 0; /* LAPACK call is ok! */
/* Release memory and exit */
LAPACKE_free( ab_t );
exit_level_0:
Expand Down
1 change: 0 additions & 1 deletion LAPACKE/src/lapacke_slangb_work.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ float LAPACKE_slangb_work( int matrix_layout, char norm, lapack_int n,
LAPACKE_sgb_trans( matrix_layout, n, n, kl, ku, ab, ldab, ab_t, ldab_t );
/* Call LAPACK function and adjust info */
res = LAPACK_slangb( &norm, &n, &kl, &ku, ab_t, &ldab_t, work );
info = 0; /* LAPACK call is ok! */
/* Release memory and exit */
LAPACKE_free( ab_t );
exit_level_0:
Expand Down
1 change: 0 additions & 1 deletion LAPACKE/src/lapacke_zlangb_work.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ double LAPACKE_zlangb_work( int matrix_layout, char norm, lapack_int n,
LAPACKE_zgb_trans( matrix_layout, n, n, kl, ku, ab, ldab, ab_t, ldab_t );
/* Call LAPACK function and adjust info */
res = LAPACK_zlangb( &norm, &n, &kl, &ku, ab_t, &ldab_t, work );
info = 0; /* LAPACK call is ok! */
/* Release memory and exit */
LAPACKE_free( ab_t );
exit_level_0:
Expand Down