Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
cdo
Commits
1a2e54a4
Commit
1a2e54a4
authored
Sep 28, 2017
by
Uwe Schulzweida
Browse files
Changed NFFT from 64 to 16.
parent
3432f15c
Changes
3
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
1a2e54a4
...
...
@@ -3,6 +3,10 @@
* Using CDI library version 1.9.1
* Version 1.9.1 release
2017-09-28 Uwe Schulzweida
* Changed NFFT from 64 to 16
2017-09-22 Uwe Schulzweida
* fc2gp: optimize memory handling for openmp version
...
...
src/Change_e5slm.cc
View file @
1a2e54a4
...
...
@@ -80,13 +80,7 @@ void *Change_e5slm(void *argument)
pstreamClose
(
streamIDslm
);
for
(
long
i
=
0
;
i
<
gridsize
;
++
i
)
{
if
(
cland
[
i
]
>
0
)
lsea
[
i
]
=
false
;
else
lsea
[
i
]
=
true
;
}
for
(
long
i
=
0
;
i
<
gridsize
;
++
i
)
lsea
[
i
]
=
!
(
cland
[
i
]
>
0
);
int
nvars
=
vlistNvars
(
vlistID1
);
...
...
src/after_fctrans.cc
View file @
1a2e54a4
...
...
@@ -14,10 +14,10 @@
#include "cdo_int.h"
#if
def
ined(
SX
)
#
define NFFT 1024
#ifdef
SX
#define NFFT 1024
#else
#
define NFFT 6
4
#define NFFT
1
6
#endif
#ifndef M_SQRT2
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment