Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
aidge_backend_cpu_ll
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
Lucas Lopez
aidge_backend_cpu_ll
Commits
222c1227
Commit
222c1227
authored
10 months ago
by
Olivier BICHLER
Browse files
Options
Downloads
Patches
Plain Diff
Fixed restrict
parent
8e7e8c69
No related branches found
Branches containing commit
Tags
0.2.1
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/aidge/backend/cpu/operator/MatMulImpl_kernels.hpp
+2
-2
2 additions, 2 deletions
include/aidge/backend/cpu/operator/MatMulImpl_kernels.hpp
with
2 additions
and
2 deletions
include/aidge/backend/cpu/operator/MatMulImpl_kernels.hpp
+
2
−
2
View file @
222c1227
...
...
@@ -18,11 +18,11 @@ namespace Aidge {
template
<
class
I
,
class
O
>
void
MatMulImpl_cpu_forward_kernel
(
const
std
::
size_t
n
,
const
std
::
size_t
k
,
const
std
::
size_t
m
,
const
void
*
input1_
,
const
void
*
input2_
,
void
*
__restrict
__
output_
)
{
const
void
*
input1_
,
const
void
*
input2_
,
void
*
__restrict
output_
)
{
// FIXME: missing MatMul parameters as arguments
const
I
*
input1
=
static_cast
<
const
I
*>
(
input1_
);
const
I
*
input2
=
static_cast
<
const
I
*>
(
input2_
);
O
*
__restrict
__
output
=
static_cast
<
O
*
__restrict
__
>
(
output_
);
O
*
__restrict
output
=
static_cast
<
O
*
__restrict
>
(
output_
);
std
::
memset
(
output
,
O
(
0
),
n
*
m
*
sizeof
(
O
));
...
...
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