我需要在 Fortran 中制作一个点积。我可以dot_product
使用 Fortran 的内在函数或ddot
OpenBLAS 的使用。问题是ddot
速度较慢。这是我的代码:
使用 BLAS:
program VectorBLAS
! time VectorBlas.e = 0.30s
implicit none
double precision, dimension(3) :: b
double precision :: result
double precision, external :: ddot
integer, parameter :: LargeInt_K = selected_int_kind (18)
integer (kind=LargeInt_K) :: I
DO I = 1, 10000000
b(:) = 3
result = ddot(3, b, 1, b, 1)
END DO
end program VectorBLAS
和dot_product
program VectorModule
! time VectorModule.e = 0.19s
implicit none
double precision, dimension (3) :: b
double precision :: result
integer, parameter :: LargeInt_K = selected_int_kind (18)
integer (kind=LargeInt_K) :: I
DO I = 1, 10000000
b(:) = 3
result = dot_product(b, b)
END DO
end program VectorModule
这两个代码是使用以下代码编译的:
gfortran file_name.f90 -lblas -o file_name.e
我究竟做错了什么?BLAS不是必须更快吗?