Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libmtime
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
icon-libraries
libmtime
Commits
6e737461
Commit
6e737461
authored
5 years ago
by
Florian Prill
Browse files
Options
Downloads
Patches
Plain Diff
hl interface: add element-wise addition of timedeltas.
parent
c9c973db
No related branches found
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/libmtime_hl.f90
+4
-2
4 additions, 2 deletions
src/libmtime_hl.f90
src/mtime_t_datetime.inc
+1
-1
1 addition, 1 deletion
src/mtime_t_datetime.inc
src/mtime_t_timedelta.inc
+18
-0
18 additions, 0 deletions
src/mtime_t_timedelta.inc
with
23 additions
and
3 deletions
src/libmtime_hl.f90
+
4
−
2
View file @
6e737461
...
...
@@ -53,7 +53,7 @@ MODULE mtime_hl
PUBLIC
::
OPERATOR
(
*
)
! Re-export stuff
public
::
register_finish_mtime_procedure
,
finish_mtime
public
::
register_finish_mtime_procedure
,
finish_mtime
!
! TODO: simply repeat the implementation of "divisionquotienttimespan" in order to disentangle the mtime_hl and the mtime Fortran modules.
...
...
@@ -157,7 +157,7 @@ MODULE mtime_hl
MODULE
PROCEDURE
t_datetime_assign_raw
END
INTERFACE
t_datetime
!> Wrapper class for "mtime" data type "timedelta".
!
...
...
@@ -211,6 +211,7 @@ MODULE mtime_hl
PROCEDURE
::
scalar_multiply_long
=>
t_timedelta_scalar_multiply_long
PROCEDURE
::
scalar_multiply_int
=>
t_timedelta_scalar_multiply_int
PROCEDURE
::
scalar_multiply_real
=>
t_timedelta_scalar_multiply_real
PROCEDURE
::
addElementWise
=>
t_timedelta_addElementWise
PROCEDURE
::
get_c_pointer
=>
t_timedelta_get_c_pointer
...
...
@@ -222,6 +223,7 @@ MODULE mtime_hl
GENERIC
::
OPERATOR
(
>=
)
=>
greater_or_equal_datetime
GENERIC
::
OPERATOR
(
*
)
=>
scalar_multiply_long
,
scalar_multiply_int
,
&
&
scalar_multiply_real
GENERIC
::
OPERATOR
(
+
)
=>
addElementWise
END
TYPE
t_timedelta
...
...
This diff is collapsed.
Click to expand it.
src/mtime_t_datetime.inc
+
1
−
1
View file @
6e737461
...
...
@@ -123,7 +123,7 @@
FUNCTION
t_datetime_sub_timedelta
(
this
,
td
)
RESULT
(
dt_td_sum
)
TYPE
(
t_datetime
)
::
dt_td_sum
CLASS
(
t_datetime
),
INTENT
(
in
)
::
this
type
(
t_timedelta
),
INTENT
(
in
)
::
td
TYPE
(
t_timedelta
),
INTENT
(
in
)
::
td
TYPE
(
t_timedelta
)
::
td_tmp
TYPE
(
datetime
),
pointer
::
dt_tmp
type
(
c_ptr
)
::
c_pointer1
,
c_pointer2
,
dummy_ptr
...
...
This diff is collapsed.
Click to expand it.
src/mtime_t_timedelta.inc
+
18
−
0
View file @
6e737461
...
...
@@ -335,3 +335,21 @@
&
this
%
td
%
hour
,
this
%
td
%
minute
,
this
%
td
%
second
,
this
%
td
%
ms
)
call
handle_errno
((
.
not
.
c_associated
(
c_pointer
)),
5
*
100
+
2
,
__FILE__
,
__LINE__
)
END
FUNCTION
t_timedelta_get_c_pointer
FUNCTION
t_timedelta_addElementWise
(
this
,
td
)
RESULT
(
added_td
)
TYPE
(
t_timedelta
)
::
added_td
CLASS
(
t_timedelta
),
INTENT
(
IN
)
::
this
TYPE
(
t_timedelta
),
INTENT
(
in
)
::
td
TYPE
(
c_ptr
)
::
c_pointer1
,
c_pointer2
,
dummy_ptr
TYPE
(
timedelta
),
POINTER
::
td_tmp
c_pointer1
=
this
%
get_c_pointer
()
c_pointer2
=
td
%
get_c_pointer
()
dummy_ptr
=
my_elementwiseaddtimedeltatotimedelta
(
c_pointer1
,
c_pointer2
,
c_pointer1
)
CALL
handle_errno
(
.
NOT
.
C_ASSOCIATED
(
dummy_ptr
),
0
*
100
+
2
,
__FILE__
,
__LINE__
)
CALL
C_F_POINTER
(
c_pointer1
,
td_tmp
)
CALL
my_deallocatedatetime
(
c_pointer1
)
CALL
my_deallocatedatetime
(
c_pointer2
)
added_td
%
td
=
td_tmp
END
FUNCTION
t_timedelta_addElementWise
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