Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LinkTest
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cstao-public
LinkTest
Commits
f7a52a29
Commit
f7a52a29
authored
1 year ago
by
Yannik Müller
Browse files
Options
Downloads
Patches
Plain Diff
Added documentation fore the linktest_kkernel functions
parent
16d430e1
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
benchmark/vcluster.h
+26
-2
26 additions, 2 deletions
benchmark/vcluster.h
with
26 additions
and
2 deletions
benchmark/vcluster.h
+
26
−
2
View file @
f7a52a29
...
@@ -228,21 +228,45 @@ public:
...
@@ -228,21 +228,45 @@ public:
*/
*/
virtual
std
::
uint64_t
kpingpong_minimal_buffer_overhead
()
const
;
virtual
std
::
uint64_t
kpingpong_minimal_buffer_overhead
()
const
;
// Pingpong kernel with warmup.
/*! \brief kpingpong with warmup
*
* This function provides a default implementation for the entire kernel routine including warmup and some reporting
* The transport layer implementation is externalised in kpingpong(...)
*
*/
int
linktest_kpingpong
(
int
from
,
int
to
,
int
linktest_kpingpong
(
int
from
,
int
to
,
MemoryBuffer
&
buf
,
MemoryBuffer
&
buf
,
const
struct
linktest_args
*
args
,
const
struct
linktest_args
*
args
,
double
*
time
);
double
*
time
);
/*! \brief kUniDir with warmup
*
* This function provides a default implementation for the entire kernel routine including warmup and some reporting
* The transport layer implementation is externalised in kUniDir(...)
*
*/
int
linktest_kUniDir
(
const
int
from
,
const
int
to
,
int
linktest_kUniDir
(
const
int
from
,
const
int
to
,
MemoryBuffer
&
buf1
,
MemoryBuffer
&
buf2
,
MemoryBuffer
&
buf1
,
MemoryBuffer
&
buf2
,
const
struct
linktest_args
*
const
args
,
const
struct
linktest_args
*
const
args
,
double
*
time
,
const
int
doBarrier
);
double
*
time
,
const
int
doBarrier
);
/*! \brief kUniDirMultiBuf with warmup
*
* This function provides a default implementation for the entire kernel routine including warmup and some reporting
* The transport layer implementation is externalised in kUniDirMultiBuf(...)
*
*/
int
linktest_kUniDirMultiBuf
(
const
int
from
,
const
int
to
,
int
linktest_kUniDirMultiBuf
(
const
int
from
,
const
int
to
,
MemoryBufferMulti
&
buf_multi
,
MemoryBuffer
&
buf2
,
MemoryBufferMulti
&
buf_multi
,
MemoryBuffer
&
buf2
,
const
struct
linktest_args
*
const
args
,
const
struct
linktest_args
*
const
args
,
double
*
const
time
,
const
int
doBarrier
);
double
*
const
time
,
const
int
doBarrier
);
/*! \brief kUniDirLimitedMultiBuf with warmup
*
* This function provides a default implementation for the entire kernel routine including warmup and some reporting
* The transport layer implementation is externalised in kUniDirLimitedMultiBuf(...)
*
*/
int
linktest_kUniDirLimitedMultiBuf
(
const
int
from
,
const
int
to
,
int
linktest_kUniDirLimitedMultiBuf
(
const
int
from
,
const
int
to
,
MemoryBufferMulti
&
buf_multi
,
MemoryBuffer
&
buf2
,
MemoryBufferMulti
&
buf_multi
,
MemoryBuffer
&
buf2
,
const
struct
linktest_args
*
const
args
,
const
struct
linktest_args
*
const
args
,
...
...
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