-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Quick CMake fixes enabled by 3.28 #8365
Conversation
Having the dummy file on disk is confusing and is easy to accidentally install when modifying CMake install rules. Better to use the CMake 3.24+ feature of the package redirects dir to truly disable find_package for Halide inside the build.
Converting to draft because I'm going to fold a few more small diffs into here. Stand by. |
3c5024a
to
2cdcaad
Compare
2cdcaad
to
77baeda
Compare
This avoids sending a generator expression downstream. These are functionally identical, but it's just one less thing to evaluate.
@@ -338,6 +338,7 @@ set(SOURCE_FILES | |||
SlidingWindow.cpp | |||
Solve.cpp | |||
SpirvIR.cpp | |||
SpirvIR.h |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this a source file and not a header file?-
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because we specifically do not want to include it in the set of headers that becomes Halide.h
as this header includes the upstream SpirvIR headers.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gotcha, may I suggest adding a comment so this doesn't get "fixed" in the future
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There will be a comment in the PR following the GenGen one; this PR is just meant to minimize future diffs.
Trying to carve out pieces of #8360 that are easy to review/land individually. Here are a few quick fixes:
find_package(Halide)
, rather than polluting our source tree with a dummy file.find_package(CUDAToolkit)
in apps/cuda_mat_mulSpirvIR.h
to the list of sources, not public headers. This won't put it inHalide.h
, but it will put it in IDE file lists.BUILD_LOCAL_INTERFACE
instead ofBUILD_INTERFACE
(this is even more private)