Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Deeplearning
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RADL
Deeplearning
Commits
7a9bfbd3
Commit
7a9bfbd3
authored
Mar 15, 2023
by
Gabriel Falk
Browse files
Options
Downloads
Patches
Plain Diff
Replace cudaKernels.h
parent
dc28a28d
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
cudaKernels.h
+6
-7
6 additions, 7 deletions
cudaKernels.h
with
6 additions
and
7 deletions
cudaKernels.h
+
6
−
7
View file @
7a9bfbd3
#ifndef _CUDA_KERNELS_
#define _CUDA_KERNELS_
cudaError_t
avgPoolCuda
(
float
*
dst
,
float
*
src
,
int
sizeX
,
int
sizeY
);
cudaError_t
avgPoolCuda
(
float
*
dst
,
float
*
src
,
int
sizeX
,
int
sizeY
,
double
*
time
);
cudaError_t
vecMulCuda
(
float
*
mx
,
float
*
vec
,
float
*
res
,
int
sizeMxX
,
int
sizeMxY
);
cudaError_t
matMulCuda
(
float
*
a
,
float
*
b
,
float
*
c
,
int
sizeAx
,
int
sizeAy
,
int
sizeBx
,
int
sizeBy
);
cudaError_t
matMulTransposeCuda
(
float
*
a
,
float
*
b
,
float
*
c
,
int
sizeAx
,
int
sizeAy
,
int
sizeBx
,
int
sizeBy
);
cudaError_t
matMulCuda
(
float
*
a
,
float
*
b
,
float
*
c
,
int
sizeAx
,
int
sizeAy
,
int
sizeBx
,
int
sizeBy
,
double
*
time
);
cudaError_t
matMulTransposeCuda
(
float
*
a
,
float
*
b
,
float
*
c
,
int
sizeAx
,
int
sizeAy
,
int
sizeBx
,
int
sizeBy
,
double
*
time
);
cudaError_t
matMulTileCuda
(
float
*
a
,
float
*
b
,
float
*
c
,
int
sizeAx
,
int
sizeAy
,
int
sizeBx
,
int
sizeBy
);
cudaError_t
conv2dCuda
(
float
*
mx
,
float
*
f
,
float
*
res
,
int
sizeMxX
,
int
sizeMxY
,
int
sizeF
);
cudaError_t
conv2dCuda
(
float
*
mx
,
float
*
f
,
float
*
res
,
int
sizeMxX
,
int
sizeMxY
,
int
sizeF
,
double
*
time
);
cudaError_t
conv2dEn5x5Cuda
(
float
*
mx
,
float
*
f
,
float
*
res
,
int
sizeMxX
,
int
sizeMxY
,
int
sizeF
);
cudaError_t
conv2dFFTCuda
(
float
*
mx
,
float
*
f
,
float
*
res
,
int
sizeMxX
,
int
sizeMxY
,
int
sizeF
);
cudaError_t
testCuda
(
int
i
);
cudaError_t
conv2dFFTCuda
(
float
*
mx
,
float
*
f
,
float
*
res
,
int
sizeMxX
,
int
sizeMxY
,
int
sizeF
,
double
*
time
);
cudaError_t
conv2dWinoCuda
(
float
*
mx
,
float
*
f
,
float
*
res
,
int
sizeMxX
,
int
sizeMxY
,
int
sizeF
,
double
*
time
);
#endif
\ No newline at end of file
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