Skip to content

Commit

Permalink
Fix number of columns in 3d bio benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanlucf22 committed Dec 12, 2023
1 parent 4af28a0 commit 360a95d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion benchmarks/dmconstruction3d/dmconstruction_bio.F90
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ program biosolve
ncols = norbs
if(bioham%bml_type == BML_MATRIX_ELLPACK)then
!ncols = norbs - int(5*norbs/10)
ncols = min(norbs,800)
ncols = min(norbs,3500)
print*,'ncols = ',ncols
endif

Expand Down Expand Up @@ -143,6 +143,7 @@ program biosolve
call bml_zero_matrix(bioham%bml_type,bml_element_real,dp,norbs,ncols,rho_bml)
! Call SP2
tol = 2.0D-5*norbs*bndfil

do i =1, nreps
mlsi = mls()
call prg_sp2_alg1(oham_bml, rho_bml, bioham%threshold, bndfil, 15,100, "Rel", tol, 20)
Expand Down

0 comments on commit 360a95d

Please sign in to comment.