Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cricket-ci
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ACS
Public
Virtualization
cricket-ci
Commits
06bdb378
Commit
06bdb378
authored
1 year ago
by
Niklas Eiling
Browse files
Options
Downloads
Patches
Plain Diff
add warumup runs to overhead
Signed-off-by:
Niklas Eiling
<
niklas.eiling@eonerc.rwth-aachen.de
>
parent
7863d6a5
No related branches found
No related tags found
No related merge requests found
Pipeline
#1041386
passed
1 year ago
Stage: prepare
Stage: build
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/test_apps/overhead.cu
+19
-5
19 additions, 5 deletions
tests/test_apps/overhead.cu
with
19 additions
and
5 deletions
tests/test_apps/overhead.cu
+
19
−
5
View file @
06bdb378
...
...
@@ -6,7 +6,8 @@
#include
<cuda_runtime.h>
#define ITERATIONS 10
#define ITERATIONS 100000
#define WARUMUPS 10
#define MEMSIZE 1024*1024
const
int
blocksize
=
32
;
...
...
@@ -31,7 +32,10 @@ int main()
printf
(
"init CUDA
\n
"
);
cudaGetDeviceCount
(
&
cnt
);
printf
(
"cudaGetDeviceCount (%d iterations)
\n
"
,
iterations
);
printf
(
"1. cudaGetDeviceCount (%d iterations)
\n
"
,
iterations
);
for
(
int
i
=
0
;
i
!=
WARUMUPS
;
i
++
)
{
cudaGetDeviceCount
(
&
cnt
);
}
gettimeofday
(
&
begin
,
NULL
);
for
(
int
i
=
0
;
i
!=
iterations
;
i
++
)
{
cudaGetDeviceCount
(
&
cnt
);
...
...
@@ -41,7 +45,11 @@ int main()
uint16_t
*
dev_A
;
size_t
A_size
=
MEMSIZE
;
printf
(
"cudaMalloc/cudaFree (%d iterations)
\n
"
,
iterations
);
printf
(
"2. cudaMalloc/cudaFree (%d iterations)
\n
"
,
iterations
);
for
(
int
i
=
0
;
i
!=
WARMUPS
;
i
++
)
{
cudaMalloc
(
(
void
**
)
&
dev_A
,
A_size
);
cudaFree
(
dev_A
);
}
gettimeofday
(
&
begin
,
NULL
);
for
(
int
i
=
0
;
i
!=
iterations
;
i
++
)
{
cudaMalloc
(
(
void
**
)
&
dev_A
,
A_size
);
...
...
@@ -53,7 +61,10 @@ int main()
dim3
dimBlock
(
blocksize
,
1
);
dim3
dimGrid
(
1
,
1
);
printf
(
"kernel launch w/o parameteter (%d iterations)
\n
"
,
iterations
);
printf
(
"3. kernel launch w/o parameteter (%d iterations)
\n
"
,
iterations
);
for
(
int
i
=
0
;
i
!=
WARMUPS
;
i
++
)
{
kernel_no_param
<<<
dimGrid
,
dimBlock
>>>
();
}
gettimeofday
(
&
begin
,
NULL
);
for
(
int
i
=
0
;
i
!=
iterations
;
i
++
)
{
kernel_no_param
<<<
dimGrid
,
dimBlock
>>>
();
...
...
@@ -71,7 +82,10 @@ int main()
cudaMalloc
(
(
void
**
)
&
dev_A
,
MEMSIZE
);
cudaMemset
(
dev_A
,
1
,
MEMSIZE
);
cudaMemset
(
dev_x
,
2
,
MEMSIZE
);
printf
(
"kernel launch w/ parameteters (%d iterations)
\n
"
,
iterations
);
printf
(
"4. kernel launch w/ parameteters (%d iterations)
\n
"
,
iterations
);
for
(
int
i
=
0
;
i
!=
WARMUPS
;
i
++
)
{
kernel
<<<
dimGrid
,
dimBlock
>>>
(
dev_A
,
dev_x
,
dev_res
,
0
,
0
,
0
,
0
);
}
gettimeofday
(
&
begin
,
NULL
);
for
(
int
i
=
0
;
i
!=
iterations
;
i
++
)
{
kernel
<<<
dimGrid
,
dimBlock
>>>
(
dev_A
,
dev_x
,
dev_res
,
0
,
0
,
0
,
0
);
...
...
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