Skip to content
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

Merged
merged 10 commits into from
Aug 2, 2024
Merged

Quick CMake fixes enabled by 3.28 #8365

merged 10 commits into from
Aug 2, 2024

Conversation

alexreinking
Copy link
Member

@alexreinking alexreinking commented Aug 1, 2024

Trying to carve out pieces of #8360 that are easy to review/land individually. Here are a few quick fixes:

  1. A few inconsistent-formatting tweaks, improved comments
  2. Using the package-redirects feature to disable in-tree find_package(Halide), rather than polluting our source tree with a dummy file.
  3. Replacing another dummy file in the Python bindings with a better cmake -E command
  4. Using find_package(CUDAToolkit) in apps/cuda_mat_mul
  5. Add SpirvIR.h to the list of sources, not public headers. This won't put it in Halide.h, but it will put it in IDE file lists.
  6. Use BUILD_LOCAL_INTERFACE instead of BUILD_INTERFACE (this is even more private)

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.
@alexreinking alexreinking marked this pull request as draft August 1, 2024 21:09
@alexreinking
Copy link
Member Author

Converting to draft because I'm going to fold a few more small diffs into here. Stand by.

@alexreinking alexreinking changed the title Remove dummy files; use CUDAToolkit package; add SpirvIR.h to sources Quick CMake fixes enabled by 3.28 Aug 2, 2024
@alexreinking alexreinking marked this pull request as ready for review August 2, 2024 00:35
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
Copy link
Contributor

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?-

Copy link
Member Author

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.

Copy link
Contributor

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

Copy link
Member Author

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.

@alexreinking alexreinking merged commit 1a7b914 into main Aug 2, 2024
16 checks passed
@alexreinking alexreinking deleted the build/quick-fixes branch August 2, 2024 18:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants