mirror of
https://github.com/nwchemgit/nwchem.git
synced 2026-07-27 21:55:30 -04:00
Merge pull request #1223 from edoapra/libstdcpp-error
fix for FPE with ifx
This commit is contained in:
commit
f47622ff8b
3 changed files with 5 additions and 4 deletions
2
.github/workflows/docker_actions.yml
vendored
2
.github/workflows/docker_actions.yml
vendored
|
|
@ -28,7 +28,7 @@ jobs:
|
|||
fetch-depth: 5
|
||||
- name: Setup cache
|
||||
id: setup-cache
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
path: |
|
||||
~/cache
|
||||
|
|
|
|||
2
.github/workflows/github_actions.yml
vendored
2
.github/workflows/github_actions.yml
vendored
|
|
@ -475,7 +475,7 @@ jobs:
|
|||
shell: bash
|
||||
- name: Setup cache
|
||||
id: setup-cache
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
path: |
|
||||
~/cache
|
||||
|
|
|
|||
|
|
@ -68,8 +68,9 @@ c > + i+1
|
|||
> + dbl_mb(G(2)+i-1)*dbl_mb(G(2)+i-1)
|
||||
> + dbl_mb(G(3)+i-1)*dbl_mb(G(3)+i-1) )
|
||||
|
||||
if (((pzero.eq.taskid) .and. (i.eq.zero)).or.
|
||||
E (abs(gg) .lt.toll)) then
|
||||
if ((abs(gg) .lt.toll)) then
|
||||
dbl_mb(tmp1(1)+i-1) = 0.0d0
|
||||
elseif (((pzero.eq.taskid) .and. (i.eq.zero))) then
|
||||
dbl_mb(tmp1(1)+i-1) = 0.0d0
|
||||
else
|
||||
dbl_mb(tmp1(1)+i-1) = fourpi/gg
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue