-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rework backend folder structure #73
Conversation
#include "CachedBufAlloc.h" | ||
#include "alpakaConfig.h" | ||
#include "alpakaDevices.h" | ||
#include "AllocatorPolicy.hpp" |
Check notice
Code scanning / Cppcheck (reported by Codacy)
MISRA 20.1 rule Note
#include "alpakaConfig.h" | ||
#include "alpakaDevices.h" | ||
#include "AllocatorPolicy.hpp" | ||
#include "CachedBufAlloc.hpp" |
Check notice
Code scanning / Cppcheck (reported by Codacy)
MISRA 20.1 rule Note
#include "alpakaDevices.h" | ||
#include "AllocatorPolicy.hpp" | ||
#include "CachedBufAlloc.hpp" | ||
#include "alpakaConfig.hpp" |
Check notice
Code scanning / Cppcheck (reported by Codacy)
MISRA 20.1 rule Note
#include "AllocatorPolicy.hpp" | ||
#include "CachedBufAlloc.hpp" | ||
#include "alpakaConfig.hpp" | ||
#include "alpakaDevices.hpp" |
Check notice
Code scanning / Cppcheck (reported by Codacy)
MISRA 20.1 rule Note
* Rename base alpaka folder as include * Move BindingModules out of include * Move include folder outside * Move run.hpp * Rename files * Update include paths * Update benchmarking scripts * Update version
This PR reworks the folder structure, separating the C++ backend in a separate
include
directory.This is a first step towards making CLUEstering's C++ API easier to use.