Skip to content

Commit

Permalink
Gut out old implementations of kernel functions
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Blackwell committed Oct 22, 2021
1 parent 6abcc63 commit 16e6e2c
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 1,360 deletions.
4 changes: 0 additions & 4 deletions examples/CMakeLists.txt
Expand Up @@ -13,7 +13,3 @@ target_include_directories(fmm_pts PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/include)
add_executable(fmm_cheb ./src/example1.cpp)
target_link_libraries(fmm_cheb PRIVATE pvfmmStatic)
target_include_directories(fmm_cheb PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/include)

add_executable(test_new_kernels ./src/test_new_kernels.cpp)
target_link_libraries(test_new_kernels PRIVATE pvfmmStatic)
target_include_directories(test_new_kernels PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/include)
101 changes: 0 additions & 101 deletions examples/src/test_new_kernels.cpp

This file was deleted.

19 changes: 0 additions & 19 deletions include/kernel.hpp
Expand Up @@ -185,36 +185,17 @@ struct StokesKernel{
inline static const Kernel<T>& vel_grad();
};

template<class T>
struct StokesKernelNew{
inline static const Kernel<T>& velocity();
inline static const Kernel<T>& pressure();
inline static const Kernel<T>& stress ();
inline static const Kernel<T>& vel_grad();
};


template<class T>
struct BiotSavartKernel{
inline static const Kernel<T>& potential();
};

template<class T>
struct BiotSavartKernelNew{
inline static const Kernel<T>& potential();
};


template<class T>
struct HelmholtzKernel{
inline static const Kernel<T>& potential();
};

template<class T>
struct HelmholtzKernelNew{
inline static const Kernel<T>& potential();
};


}//end namespace
#ifdef __INTEL_OFFLOAD
Expand Down

0 comments on commit 16e6e2c

Please sign in to comment.