We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I noticed Kompute.hpp contains just a copy of all other headers. Is there any reason for not doing something like this:
Kompute.hpp
#pragma once #include <Tensor.hpp> #include <Sequence.hpp> // ...
Since then the preprocessor will take over the task of expanding all #include macros for us. An example of that can be found here: https://github.com/libcpr/cpr/blob/master/include/cpr/cpr.h
#include
Then we also get rid of all the logic for compiling either Kompute as a single header via KOMPUTE_OPT_BUILD_SINGLE_HEADER.
KOMPUTE_OPT_BUILD_SINGLE_HEADER
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I noticed
Kompute.hpp
contains just a copy of all other headers.Is there any reason for not doing something like this:
Since then the preprocessor will take over the task of expanding all
#include
macros for us.An example of that can be found here: https://github.com/libcpr/cpr/blob/master/include/cpr/cpr.h
Then we also get rid of all the logic for compiling either Kompute as a single header via
KOMPUTE_OPT_BUILD_SINGLE_HEADER
.The text was updated successfully, but these errors were encountered: