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
1b5b560c
There was an error fetching the commit references. Please try again later.
Commit
1b5b560c
authored
6 years ago
by
Nina Džugasová
Browse files
Options
Downloads
Patches
Plain Diff
Added adjustments in documentation of Timer and File.
parent
eb1c40d9
No related branches found
No related tags found
1 merge request
!15
Nina
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/Examples/FileExample.cpp
+1
-2
1 addition, 2 deletions
src/Examples/FileExample.cpp
src/Examples/TimerExample.cpp
+3
-0
3 additions, 0 deletions
src/Examples/TimerExample.cpp
src/TNL/File.h
+14
-6
14 additions, 6 deletions
src/TNL/File.h
src/TNL/Timer.h
+7
-7
7 additions, 7 deletions
src/TNL/Timer.h
with
25 additions
and
15 deletions
src/Examples/FileExample.cpp
+
1
−
2
View file @
1b5b560c
...
...
@@ -19,7 +19,6 @@ int main()
file
.
read
(
title2
,
4
);
file
.
close
();
if
fileExists
(
"new-file.tnl"
)
std
::
remove
(
"new-file.tnl"
);
cout
<<
"title2:"
<<
title2
<<
endl
;
}
This diff is collapsed.
Click to expand it.
src/Examples/TimerExample.cpp
+
3
−
0
View file @
1b5b560c
#include
<iostream>
#include
<TNL/Timer.h>
#include
<unistd.h>
using
namespace
TNL
;
using
namespace
std
;
int
main
()
{
unsigned
int
microseconds
=
0.5
;
Timer
time
;
time
.
start
();
usleep
(
microseconds
);
time
.
stop
();
time
.
getRealTime
();
time
.
reset
();
...
...
This diff is collapsed.
Click to expand it.
src/TNL/File.h
+
14
−
6
View file @
1b5b560c
...
...
@@ -37,7 +37,7 @@ enum class IOMode
const
size_t
FileGPUvsCPUTransferBufferSize
=
5
*
2
<<
20
;
///\brief Class file is aimed mainly for
the
binary data.
///\brief Class file is aimed mainly for
saving and loading
binary data.
///
/// \par Example
/// \include FileExample.cpp
...
...
@@ -59,10 +59,10 @@ class File
public:
/// Basic constructor.
///
\brief
Basic constructor.
File
();
/// Destructor.
///
\brief
Destructor.
~
File
();
/////
...
...
@@ -95,8 +95,12 @@ class File
/// \brief Method that can write particular data type from given file into GPU. (Function that gets particular elements from given file.)
///
/// Returns boolean value based on the succes in reading elements from given file.
/// \param buffer Pointer in memory (where the read elements are stored?).
/// Returns \e true when the elements are successfully read from given file. Otherwise returns \e false.
///
/// \tparam Type Type of data.
/// \tparam Device Place where data are stored after reading from file. For example Devices::Host or Devices::Cuda.
/// \tparam Index Type of index by which the elements are indexed.
/// \param buffer Pointer in memory where the elements are loaded and stored after reading.
/// \param elements Number of elements the user wants to get (read) from given file.
template
<
typename
Type
,
typename
Device
=
Devices
::
Host
,
typename
Index
=
int
>
bool
read
(
Type
*
buffer
,
...
...
@@ -109,7 +113,11 @@ class File
/// \brief Method that can write particular data type from CPU into given file. (Function that writes particular elements into given file.)
///
/// Returns boolean value based on the succes in writing elements into given file.
/// \param buffer Pointer in memory.
///
/// \tparam Type Type of data.
/// \tparam Device Place from where data are loaded before writing into file. For example Devices::Host or Devices::Cuda.
/// \tparam Index Type of index by which the elements are indexed.
/// \param buffer Pointer in memory from where the elements are loaded before writing into file.
/// \param elements Number of elements the user wants to write into the given file.
template
<
typename
Type
,
typename
Device
=
Devices
::
Host
,
typename
Index
=
int
>
bool
write
(
const
Type
*
buffer
,
...
...
This diff is collapsed.
Click to expand it.
src/TNL/Timer.h
+
7
−
7
View file @
1b5b560c
...
...
@@ -49,21 +49,21 @@ class Timer
/// \brief Starts timer.
///
/// Starts all time and cycle measurements such as real time, CPU time and
/// CPU cycles.
Function
start() can be used also after using stop()
function
.
/// CPU cycles.
Method
start() can be used also after using stop()
method
.
/// The timer then continues measuring the time without reseting.
void
start
();
/////
/// \brief Returns the elapsed time on given timer.
///
/// It returns the elapsed time between calling the start() and stop()
function
s.
/// Starts counting the real time after the
function
start() is called and
/// pauses when the
function
stop() is called.
/// It returns the elapsed time between calling the start() and stop()
method
s.
/// Starts counting the real time after the
method
start() is called and
/// pauses when the
method
stop() is called.
/// If the timer have been started more then once without resetting,
/// the real time is counted by adding all intervals (between start and stop
///
function
s) together.
///
method
s) together.
/// This function can be called while the timer is running, there is no
/// need to use stop()
function
first.
/// need to use stop()
method
first.
double
getRealTime
()
const
;
/////
...
...
@@ -86,7 +86,7 @@ class Timer
/// \brief Function for measuring the real time.
///
/// Returns
the current calendar time
.
/// Returns
number of seconds since Epoch, 1970-01-01 00:00:00 UTC
.
double
readRealTime
()
const
;
/// \brief Function for measuring the CPU time.
...
...
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