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
bedf45fd
Commit
bedf45fd
authored
1 year ago
by
Niklas Eiling
Browse files
Options
Downloads
Patches
Plain Diff
tests: increase warmup iterations in overhead test
parent
4213b497
No related branches found
No related tags found
No related merge requests found
Pipeline
#1043008
passed
1 year ago
Stage: prepare
Stage: build
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/.gitignore
+1
-0
1 addition, 0 deletions
tests/.gitignore
tests/test_apps/overhead.cu
+2
-2
2 additions, 2 deletions
tests/test_apps/overhead.cu
with
3 additions
and
2 deletions
tests/.gitignore
+
1
−
0
View file @
bedf45fd
...
...
@@ -4,3 +4,4 @@ test_api
test_cpu
test_kernel
test_kernel_call
cudnn-samples
This diff is collapsed.
Click to expand it.
tests/test_apps/overhead.cu
+
2
−
2
View file @
bedf45fd
...
...
@@ -7,7 +7,7 @@
#include
<cuda_runtime.h>
#define ITERATIONS 100000
#define WAR
U
MUPS 10
#define WARMUPS 10
0
#define MEMSIZE 1024*1024
const
int
blocksize
=
32
;
...
...
@@ -33,7 +33,7 @@ int main()
printf
(
"init CUDA
\n
"
);
cudaGetDeviceCount
(
&
cnt
);
printf
(
"1. cudaGetDeviceCount (%d iterations)
\n
"
,
iterations
);
for
(
int
i
=
0
;
i
!=
WAR
U
MUPS
;
i
++
)
{
for
(
int
i
=
0
;
i
!=
WARMUPS
;
i
++
)
{
cudaGetDeviceCount
(
&
cnt
);
}
gettimeofday
(
&
begin
,
NULL
);
...
...
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