Skip to content

Commit 06f5ab0

Browse files
authored
NEKO v1.0.3 (#2490)
/ᐠ. 。.ᐟ\ᵐᵉᵒʷˎˊ˗
2 parents 75a0847 + 28a2b48 commit 06f5ab0

4 files changed

Lines changed: 15 additions & 3 deletions

File tree

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AC_PREREQ([2.69])
2-
AC_INIT([neko],[1.0.2])
2+
AC_INIT([neko],[1.0.3])
33
AM_INIT_AUTOMAKE([foreign subdir-objects])
44
AM_MAINTAINER_MODE
55
AC_CONFIG_MACRO_DIR([m4])

patches/cce_stack.patch

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
diff --git a/src/adt/stack.f90 b/src/adt/stack.f90
2+
index 5193fcff92c..a1a7b4ef916 100644
3+
--- a/src/adt/stack.f90
4+
+++ b/src/adt/stack.f90
5+
@@ -258,6 +258,7 @@ contains
6+
class(*), intent(in) :: data !< Arbitrary typed data (same type as stack)
7+
class(*), allocatable :: tmp(:)
8+
integer :: i
9+
+ !DIR$ OPTIMIZE(-hscalar0)
10+
11+
if (this%top_ .eq. this%size_) then
12+
this%size_ = ishft(this%size_, 1)

src/krylov/bcknd/sx/pc_jacobi_sx.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ subroutine sx_jacobi_update(this)
105105

106106
select case(lx)
107107
case (14)
108-
call sx_update_lx13(this%d, coef%Xh%dxt, coef%Xh%dyt, coef%Xh%dzt, &
108+
call sx_update_lx14(this%d, coef%Xh%dxt, coef%Xh%dyt, coef%Xh%dzt, &
109109
coef%G11, coef%G22, coef%G33, coef%G12, coef%G13, coef%G23, nelv)
110110
case (13)
111111
call sx_update_lx13(this%d, coef%Xh%dxt, coef%Xh%dyt, coef%Xh%dzt, &

src/math/fdm.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ subroutine fdm_setup_fast1d_a(a, lbc, rbc, ll, lm, lr, ah, n)
494494

495495
fac = 2.0_rp / lm
496496
a(1,1) = 1.0_rp
497-
a(n+1,n+1) = 1.0-rp
497+
a(n+1,n+1) = 1.0_rp
498498

499499
do j = i0, i1
500500
do i = i0, i1

0 commit comments

Comments
 (0)