Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tnl-dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TNL
tnl-dev
Commits
e8c5dc89
There was an error fetching the commit references. Please try again later.
Commit
e8c5dc89
authored
6 years ago
by
Nina Džugasová
Browse files
Options
Downloads
Patches
Plain Diff
Started with Math and ParameterContainer documentation.
parent
7abd0b1a
No related branches found
No related tags found
1 merge request
!15
Nina
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/TNL/Config/ParameterContainer.h
+9
-0
9 additions, 0 deletions
src/TNL/Config/ParameterContainer.h
src/TNL/Math.h
+18
-9
18 additions, 9 deletions
src/TNL/Math.h
with
27 additions
and
9 deletions
src/TNL/Config/ParameterContainer.h
+
9
−
0
View file @
e8c5dc89
...
...
@@ -44,8 +44,17 @@ class ParameterContainer
{
public:
/**
* \brief Basic constructor.
*/
ParameterContainer
();
/**
* \brief Adds parameter
* @tparam T Type of parameter value.
* @param name Name of the parameter.
* @param value Value assigned to the parameter.
*/
template
<
class
T
>
bool
addParameter
(
const
String
&
name
,
const
T
&
value
);
...
...
This diff is collapsed.
Click to expand it.
src/TNL/Math.h
+
18
−
9
View file @
e8c5dc89
...
...
@@ -19,7 +19,7 @@
namespace
TNL
{
/***
* This function returns minimum of two numbers.
*
\brief
This function returns minimum of two numbers.
* GPU device code uses the functions defined in the CUDA's math_functions.h,
* MIC uses trivial override and host uses the STL functions.
*/
...
...
@@ -43,7 +43,7 @@ ResultType min( const T1& a, const T2& b )
/***
* This function returns maximum of two numbers.
*
\brief
This function returns maximum of two numbers.
* GPU device code uses the functions defined in the CUDA's math_functions.h,
* MIC uses trivial override and host uses the STL functions.
*/
...
...
@@ -66,7 +66,7 @@ ResultType max( const T1& a, const T2& b )
}
/***
* This function returns absolute value of given number.
*
\brief
This function returns absolute value of given number.
*/
template
<
class
T
>
__cuda_callable__
inline
...
...
@@ -87,7 +87,7 @@ T abs( const T& n )
}
/***
* This function returns argument of minimum of two numbers.
*
\brief
This function returns argument of minimum of two numbers.
*/
template
<
typename
T1
,
typename
T2
,
typename
ResultType
=
typename
std
::
common_type
<
T1
,
T2
>
::
type
>
__cuda_callable__
inline
...
...
@@ -97,7 +97,7 @@ ResultType argMin( const T1& a, const T2& b )
}
/***
* This function returns argument of maximum of two numbers.
*
\brief
This function returns argument of maximum of two numbers.
*/
template
<
typename
T1
,
typename
T2
,
typename
ResultType
=
typename
std
::
common_type
<
T1
,
T2
>
::
type
>
__cuda_callable__
...
...
@@ -107,7 +107,7 @@ ResultType argMax( const T1& a, const T2& b )
}
/***
* This function returns argument of minimum of absolute values of two numbers.
*
\brief
This function returns argument of minimum of absolute values of two numbers.
*/
template
<
typename
T1
,
typename
T2
,
typename
ResultType
=
typename
std
::
common_type
<
T1
,
T2
>
::
type
>
__cuda_callable__
inline
...
...
@@ -117,7 +117,7 @@ ResultType argAbsMin( const T1& a, const T2& b )
}
/***
* This function returns argument of maximum of absolute values of two numbers.
*
\brief
This function returns argument of maximum of absolute values of two numbers.
*/
template
<
typename
T1
,
typename
T2
,
typename
ResultType
=
typename
std
::
common_type
<
T1
,
T2
>
::
type
>
__cuda_callable__
...
...
@@ -137,7 +137,9 @@ ResultType pow( const T1& base, const T2& exp )
#endif
}
/**
* \brief This function returns square root of a value.
*/
template
<
typename
T
>
__cuda_callable__
inline
T
sqrt
(
const
T
&
value
)
...
...
@@ -149,7 +151,9 @@ T sqrt( const T& value )
#endif
}
/**
* \brief This function swaps values of two parameters.
*/
template
<
typename
Type
>
__cuda_callable__
void
swap
(
Type
&
a
,
Type
&
b
)
...
...
@@ -159,6 +163,11 @@ void swap( Type& a, Type& b )
b
=
tmp
;
}
/**
* \brief This function represents the signum function.
*
* It extracts the sign of a real number.
*/
template
<
class
T
>
__cuda_callable__
T
sign
(
const
T
&
a
)
...
...
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