Mentions légales du service

Skip to content
Snippets Groups Projects
Commit ea998757 authored by Adrien Leman's avatar Adrien Leman Committed by hhakim
Browse files

modifying file name

parent 04c1ec0d
Branches
Tags
No related merge requests found
#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
#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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment