Mentions légales du service

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

modifying name files and name class

parent 8bbfd737
Branches
Tags
No related merge requests found
......@@ -49,7 +49,7 @@ set(FAUST_USE_PROFILING OFF CACHE BOOL "Profiling the code")
set(FAUST_USE_MATIO ON CACHE BOOL "Using matio library to read mat files")
set(FAUST_USE_XML OFF CACHE BOOL "Using xml configuration to read xml files")
set(FAUST_ISVERBOSE OFF CACHE BOOL "Display useful message for debugging")
set(FAUST_USE_GPU ON CACHE BOOL "Using both CPU and GPU process")
set(FAUST_USE_GPU OFF CACHE BOOL "Using both CPU and GPU process")
set(FAUST_GEN_DOC OFF CACHE BOOL "Generate html documentation with doxygen")
if (FAUST_USE_SINGLEPRECISION)
......
......@@ -9,8 +9,8 @@
#include "faust_init_from_matio_core.h"
#include <string>
#include <sstream>
#include "BlasHandleCPU.h"
#include "SpBlasHandleCPU.h"
#include "faust_BlasHandle.h"
#include "faust_SpBlasHandle.h"
#include <iostream>
......@@ -87,8 +87,8 @@ int main(int argc, char* argv[])
epsilon = atof(argv[3]);
//useless for CPU but use for compatibility with GPU
BlasHandle<Cpu> blas_handle;
SpBlasHandle<Cpu> spblas_handle;
Faust::BlasHandle<Cpu> blas_handle;
Faust::SpBlasHandle<Cpu> spblas_handle;
Faust::Params<FPP,Cpu> params;
......
......@@ -88,7 +88,7 @@ int main(int argc, char* argv[])
// initialisation CUDA environment
std::cout<<"initialisation of GPU environnement"<<std::endl;
//cublasHandle_t cublasHandle;
BlasHandle<Gpu> blas_handle;
Faust::BlasHandle<Gpu> blas_handle;
blas_handle.Init();
//cusparseHandle_t cusparseHandle;
......
......@@ -5,7 +5,7 @@
#include "faust_init_from_matio.h"
#include "faust_init_from_matio_mat.h"
#include "faust_Palm4MSA.h"
#include "BlasHandleCPU.h"
#include "faust_BlasHandle.h"
#include <iostream>
......@@ -71,7 +71,7 @@ int main()
Faust::ParamsPalm<FPP,Cpu> params(data, nfacts, cons, init_fact, crit, verbose, update_way, init_lambda);
BlasHandle<Cpu> blas_handle;
Faust::BlasHandle<Cpu> blas_handle;
Faust::Palm4MSA<FPP,Cpu> palm2(params,blas_handle,true);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment