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
AGULLO Emmanuel
Chameleon
Commits
c620aa90
Commit
c620aa90
authored
Feb 06, 2018
by
Mathieu Faverge
Browse files
Update @brief description in include
parent
19807503
Changes
13
Hide whitespace changes
Inline
Side-by-side
include/chameleon/chameleon_timer.h
View file @
c620aa90
...
...
@@ -9,6 +9,8 @@
*
* @version 1.0.0
*
* @brief Chameleon timer
*
* Provide a simple timer for examples and runtimes which do not provide their
* own timer.
*
...
...
@@ -40,29 +42,29 @@ gettimeofday(struct timeval* tv, struct timezone* tz)
static
int
tzflag
;
if
(
NULL
!=
tv
)
{
GetSystemTimeAsFileTime
(
&
ft
);
tmpres
|=
ft
.
dwHighDateTime
;
tmpres
<<=
32
;
tmpres
|=
ft
.
dwLowDateTime
;
{
GetSystemTimeAsFileTime
(
&
ft
);
tmpres
|=
ft
.
dwHighDateTime
;
tmpres
<<=
32
;
tmpres
|=
ft
.
dwLowDateTime
;
/*converting file time to unix epoch*/
tmpres
/=
10
;
/*convert into microseconds*/
tmpres
-=
DELTA_EPOCH_IN_MICROSECS
;
/*converting file time to unix epoch*/
tmpres
/=
10
;
/*convert into microseconds*/
tmpres
-=
DELTA_EPOCH_IN_MICROSECS
;
tv
->
tv_sec
=
(
long
)(
tmpres
/
1000000UL
);
tv
->
tv_usec
=
(
long
)(
tmpres
%
1000000UL
);
}
tv
->
tv_sec
=
(
long
)(
tmpres
/
1000000UL
);
tv
->
tv_usec
=
(
long
)(
tmpres
%
1000000UL
);
}
if
(
NULL
!=
tz
)
{
if
(
!
tzflag
)
{
if
(
!
tzflag
)
{
_tzset
();
tzflag
++
;
}
tz
->
tz_minuteswest
=
_timezone
/
60
;
tz
->
tz_dsttime
=
_daylight
;
_tzset
();
tzflag
++
;
}
tz
->
tz_minuteswest
=
_timezone
/
60
;
tz
->
tz_dsttime
=
_daylight
;
}
return
0
;
}
...
...
include/chameleon/morse_constants.h
View file @
c620aa90
...
...
@@ -9,7 +9,7 @@
*
***
*
* @brief Chameleon
header
* @brief Chameleon
global constants
*
* @version 1.0.0
* @author Cedric Augonnet
...
...
include/chameleon/morse_fortran.h
View file @
c620aa90
!
!!
!
**
!
!
--
Inria
!
--
(
C
)
Copyright
2012
...
...
@@ -33,15 +33,9 @@
!
The
fact
that
you
are
presently
reading
this
means
that
you
have
had
!
knowledge
of
the
CeCILL
-
B
license
and
that
you
accept
its
terms
.
!
!!!
!**
!
!
!
MORSE
FORTRAN
header
!
MORSE
is
a
software
package
provided
by
Univ
.
of
Tennessee
,
!
Univ
.
of
California
Berkeley
and
Univ
.
of
Colorado
Denver
!
!
@
brief
Chameleon
Fortran77
header
!
@
version
1
.
0
.
0
!
@
author
Bilel
Hadri
!
@
author
Mathieu
Faverge
...
...
include/chameleon/morse_kernels.h
View file @
c620aa90
...
...
@@ -9,12 +9,12 @@
*
***
*
* @brief Chameleon
codelets
kernel
* @brief Chameleon
elementary
kernel
s enum
*
* @version 1.0.0
*
@author Mathieu Faverge
*
@author Cedric Augonnet
*
@date 2011-06-01
* @author Mathieu Faverge
* @author Cedric Augonnet
* @date 2011-06-01
*
**/
#ifndef _MORSE_KERNELS_H_
...
...
include/chameleon/morse_runtime.h
View file @
c620aa90
...
...
@@ -7,12 +7,9 @@
* @copyright 2012-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* Univ. Bordeaux. All rights reserved.
*
* CHAMELEON runtimes API
*
* CHAMELEON is a software package provided by Univ. of Tennessee,
* Univ. of California Berkeley and Univ. of Colorado Denver,
* and Inria Bordeaux Sud-Ouest
***
*
* @brief Chameleon runtimes API
* @version 1.0.0
* @author Mathieu Faverge
* @author Cedric Augonnet
...
...
include/chameleon/morse_simulate.h
View file @
c620aa90
...
...
@@ -9,7 +9,7 @@
*
***
*
* @brief Chameleon
codelets kernel
* @brief Chameleon
SimGrid simulation header
*
* @version 1.0.0
* @author Florent Pruvost
...
...
include/chameleon/morse_struct.h
View file @
c620aa90
...
...
@@ -9,7 +9,7 @@
*
***
*
* @brief Chameleon
header
* @brief Chameleon
structures
*
* @version 1.0.0
* @author Cedric Augonnet
...
...
include/chameleon/morse_tasks.h
View file @
c620aa90
...
...
@@ -9,12 +9,12 @@
*
***
*
* @brief Chameleon
codelets kernel
* @brief Chameleon
elementary tasks main header
*
* @version 1.0.0
*
@author Mathieu Faverge
*
@author Cedric Augonnet
*
@date 2011-06-01
* @author Mathieu Faverge
* @author Cedric Augonnet
* @date 2011-06-01
*
**/
#ifndef _MORSE_TASKS_H_
...
...
include/chameleon/morse_tasks_z.h
View file @
c620aa90
...
...
@@ -9,7 +9,7 @@
*
***
*
* @brief Chameleon
auxiliary routines
* @brief Chameleon
MORSE_Complex64_t elementary tasks header
*
* @version 1.0.0
* @comment This file has been automatically generated
...
...
include/chameleon/morse_tasks_zc.h
View file @
c620aa90
...
...
@@ -9,7 +9,7 @@
*
***
*
* @brief Chameleon
auxiliary routines
* @brief Chameleon
complex mixed precision elementary tasks header
*
* @version 1.0.0
* @comment This file has been automatically generated
...
...
include/chameleon/morse_types.h
View file @
c620aa90
...
...
@@ -9,7 +9,7 @@
*
***
*
* @brief Chameleon header
* @brief Chameleon
basic datatypes
header
*
* @version 1.0.0
* @author Cedric Augonnet
...
...
include/chameleon/morse_z.h
View file @
c620aa90
...
...
@@ -9,7 +9,7 @@
*
***
*
* @brief Chameleon
header file for double _Complex routine
s
* @brief Chameleon
MORSE_complex64_t wrapper
s
*
* @version 1.0.0
* @comment This file has been automatically generated
...
...
include/chameleon/morse_zc.h
View file @
c620aa90
...
...
@@ -9,7 +9,7 @@
*
***
*
* @brief Chameleon
header file for iterative refinement routines
* @brief Chameleon
mixed precision wrappers header
*
* @version 1.0.0
* @comment This file has been automatically generated
...
...
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