Skip to content

Commit

Permalink
Minor cleanup: remove prototyping from main program.
Browse files Browse the repository at this point in the history
  • Loading branch information
LKedward committed Dec 20, 2019
1 parent 6853bbc commit 5176e06
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions src/lbmocl.f90
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ program lbmocl
! VARS: Profiling
integer(c_int64_t) :: collideTavg, boundariesTavg, streamTavg
real(dp) :: Tupdate
integer :: fh, i

! ------------------ END DECLARATIONS ------------------

Expand Down Expand Up @@ -115,7 +114,6 @@ program lbmocl
! Load and compile OpenCL source
call fclGetKernelResource(programSource)
prog = fclCompileProgram(programSource) !,'-cl-nv-verbose')

! call fclDumpBuildLog(prog,devices(1))

! Calculate global work size as multiple of desired block size
Expand Down Expand Up @@ -221,22 +219,4 @@ program lbmocl
end if


! open(newunit=fh,file='trace',status='unknown')

! write(fh,*) '['
! call fclDumpTracingData(fh,collideK)
! write(fh,*) ','
! call fclDumpTracingData(fh,boundariesK)
! write(fh,*) ','
! call fclDumpTracingData(fh,streamK)
! write(fh,*) ','
! call fclDumpTracingData(fh,calcVarsK)
! write(fh,*) ','
! call fclDumpTracingData(fh,rho_d)
! write(fh,*) ','
! call fclDumpTracingData(fh,u_d)
! write(fh,*) ','
! call fclDumpTracingData(fh,v_d)
! write(fh,*) ']'

end program lbmocl

0 comments on commit 5176e06

Please sign in to comment.