Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Méso-NH code
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RODIER Quentin
Méso-NH code
Commits
54a089d3
Commit
54a089d3
authored
4 years ago
by
ESCOBAR Juan
Browse files
Options
Downloads
Patches
Plain Diff
Juan 12/08/2020: modi_bitrep.f90,for ifort18 , add intent(in) on pure functions
parent
bb5261f7
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/LIB/BITREP/modi_bitrep.f90
+11
-6
11 additions, 6 deletions
src/LIB/BITREP/modi_bitrep.f90
with
11 additions
and
6 deletions
src/LIB/BITREP/modi_bitrep.f90
+
11
−
6
View file @
54a089d3
MODULE
MODI_BITREP
!
! MODIFICATIONS
! -------------
! J.Escobar : 12/08/2020: for ifort18 , add intent(in) on pure function
!-----------------------------------------------------------------
!
USE
,
INTRINSIC
::
ISO_C_BINDING
!
...
...
@@ -16,8 +21,8 @@ INTERFACE
PURE
FUNCTION
BR_ATAN_C
(
PIN
)
BIND
(
C
,
NAME
=
"br_atan"
)
!$acc routine seq
IMPORT
C_DOUBLE
REAL
(
KIND
=
C_DOUBLE
)
::
BR_ATAN_C
REAL
(
KIND
=
C_DOUBLE
),
VALUE
::
PIN
REAL
(
KIND
=
C_DOUBLE
)
::
BR_ATAN_C
REAL
(
KIND
=
C_DOUBLE
),
VALUE
,
INTENT
(
IN
)
::
PIN
END
FUNCTION
END
INTERFACE
!
...
...
@@ -36,8 +41,8 @@ INTERFACE
PURE
FUNCTION
BR_EXP_C
(
PIN
)
BIND
(
C
,
NAME
=
"br_exp"
)
!$acc routine seq
IMPORT
C_DOUBLE
REAL
(
KIND
=
C_DOUBLE
)
::
BR_EXP_C
REAL
(
KIND
=
C_DOUBLE
),
VALUE
::
PIN
REAL
(
KIND
=
C_DOUBLE
)
::
BR_EXP_C
REAL
(
KIND
=
C_DOUBLE
),
VALUE
,
INTENT
(
IN
)
::
PIN
END
FUNCTION
END
INTERFACE
!
...
...
@@ -56,8 +61,8 @@ INTERFACE
PURE
FUNCTION
BR_LOG_C
(
PIN
)
BIND
(
C
,
NAME
=
"br_log"
)
!$acc routine seq
IMPORT
C_DOUBLE
REAL
(
KIND
=
C_DOUBLE
)
::
BR_LOG_C
REAL
(
KIND
=
C_DOUBLE
),
VALUE
::
PIN
REAL
(
KIND
=
C_DOUBLE
)
::
BR_LOG_C
REAL
(
KIND
=
C_DOUBLE
),
VALUE
,
INTENT
(
IN
)
::
PIN
END
FUNCTION
END
INTERFACE
!
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment