Mentions légales du service

Skip to content
Snippets Groups Projects
testLetImplicitChebyshev.cpp 717 B
// ==== CMAKE =====
// @FUSE_BLAS
// ================
// Keep in private GIT
// @FUSE_MPI
// @FUSE_STARPU
//
//
#include <string>
//
// Chebychev cell class
#include "Kernels/Chebyshev/FChebCell.hpp"
#include "Kernels/Chebyshev/FChebSymKernel.hpp"
//
template<typename FReal, int ORDER> 
using FInterpolationCell =  FChebCell<FReal, ORDER>;

template<typename FReal, typename GroupCellClass,
	 typename GroupContainerClass,
	 typename MatrixKernelClass, int ORDER>  

using FInterpolationKernel = FChebSymKernel<FReal,
					    GroupCellClass,
					    GroupContainerClass,
					    MatrixKernelClass,
					    ORDER> ;

static std::string interpolationKernel("Chebyshev");
#include "testFMMInterpolationStarPU.hpp"