Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
faust
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
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
GitLab upgrade completed. Current version is 17.11.4.
Show more breadcrumbs
faust group
faust
Commits
ea998757
Commit
ea998757
authored
9 years ago
by
Adrien Leman
Committed by
hhakim
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
modifying file name
parent
04c1ec0d
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/faust_linear_operator/CPU/faust_BlasHandle.h
+33
-0
33 additions, 0 deletions
src/faust_linear_operator/CPU/faust_BlasHandle.h
src/faust_linear_operator/CPU/faust_SpBlasHandle.h
+30
-0
30 additions, 0 deletions
src/faust_linear_operator/CPU/faust_SpBlasHandle.h
with
63 additions
and
0 deletions
src/faust_linear_operator/CPU/faust_BlasHandle.h
0 → 100644
+
33
−
0
View file @
ea998757
#ifndef BLASHANDLE_CPU_H
#define BLASHANDLE_CPU_H
#include
"faust_constant.h"
namespace
Faust
{
template
<
Device
DEVICE
>
class
BlasHandle
;
//BlasHandle<Cpu> is useless,
// its unique purpose is for code factorisation with GPU code
template
<
>
class
BlasHandle
<
Cpu
>
{
public
:
BlasHandle
(){}
BlasHandle
(
const
BlasHandle
<
Cpu
>
&
blashandle
){}
void
operator
=
(
BlasHandle
<
Cpu
>
const
&
blashandle
){};
void
Init
(){}
void
Destroy
(){}
};
}
#endif
This diff is collapsed.
Click to expand it.
src/faust_linear_operator/CPU/faust_SpBlasHandle.h
0 → 100644
+
30
−
0
View file @
ea998757
#ifndef SPBLASHANDLE_CPU_H
#define SPBLASHANDLE_CPU_H
#include
"faust_constant.h"
namespace
Faust
{
template
<
Device
DEVICE
>
class
SpBlasHandle
;
//BlasHandle<Cpu> is useless,
// its unique purpose is for code factorisation with GPU code
template
<
>
class
SpBlasHandle
<
Cpu
>
{
public
:
SpBlasHandle
(){}
SpBlasHandle
(
const
SpBlasHandle
<
Cpu
>
&
blashandle
){}
void
operator
=
(
SpBlasHandle
<
Cpu
>
const
&
blashandle
){};
void
Init
(){}
void
Destroy
(){}
};
}
#endif
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