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

[vpdq] Modernize CMake Usage #1600

Merged
merged 1 commit into from
Jul 5, 2024
Merged

Conversation

ianwal
Copy link
Contributor

@ianwal ianwal commented Jul 4, 2024

Summary

Changes are splitting CMake files to their respective directories. This is the preferred way to structure modern CMake projects.

This allows easier modifications to some parts of the project without breaking another.

  • Update examples and CI to use modern CLI commands.

    • cmake -S . -B build replaces mkdir build && cmake ...

      • Command was added in CMake 3.12, which was released in 2018. Ubuntu 20.04 ships 3.16 so it's old enough to use in the examples to me.
    • cmake --build build -j replaces make

  • Move CLI programs to new directory, apps

  • Add CMake build types for sanitizers

    • This makes it much easier to run sanitizers locally and through the CI.
  • Link Python binding with pdq since it is now a separately built library

  • Add another stage in the CPP CI for a no sanitizer regtest

    • This only adds 1 minute to the run time and is useful in case there is a problem with the sanitizers.
  • Fix benchmark.py

    • This wasn't working before. Updated new CLI apps path. Removed old ffmpeg filepath argument. Removed dead imports.

I've been learning proper CMake at work and wanted to apply it to a more complex project. This should significantly simplify the work needed for future changes to the project, such as adding unit tests or bindings.

And hopefully it can serve as a reference to others since there is a lack of proper CMake projects out there, especially with Cython.

Test Plan

Tested with container, CI and Arch Linux the Python binding and cpp through regtest.

Tested the Python package output sdist build to ensure it works when downloaded from PyPi.

I building on an M2 Pro, but there are some other unrelated issues in the implementation that causes compilation to fail. I will address these issues in a separate PR. After fixing those problems this CMake setup works on macos + Clang.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
run: |
rm -rf cpp/build
mkdir cpp/build
cd cpp/build
cmake .. -DCMAKE_CXX_FLAGS="-O2 -fPIC -Wall -Wextra -Werror -Wno-unused-function -Wno-deprecated-declarations -fsanitize=thread,undefined" -DCMAKE_EXE_LINKER_FLAGS="-fsanitize=address,leak,undefined"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The linker flags in this were wrong. It should be thread not address Not entirely sure how it was working.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think I learned a little but of cmake to review the original authors' work here, but at this point my head is empty.

secondsPerHash: int,
downsampleFrameDimension: int,
):
Path.mkdir(OUTPUT, exist_ok=True)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need this directory or the hashes won't be output. This avoids having to make it manually.

set(CMAKE_SHARED_LINKER_FLAGS_TSAN
"${CMAKE_SHARED_LINKER_FLAGS_DEBUG} -fsanitize=thread,undefined" CACHE STRING
"Linker lags to be used to create shared libraries for Tsan build type." FORCE)
endif()
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not going to pretend that I fully understand this block, but it makes sense at a high level and it does work.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This one is out of my area of expertise. The best guidance I have for you is that if still produces the right output on regtest, and if asan and tsan still work, we are good.

Copy link
Contributor

@Dcallies Dcallies left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for continuing to update the README as you go.

I have little relevant expertise, but find your overall test plan convincing that it's at least neutral.

I assume you've run with all the sanitizer builds and they are all clean.

set(CMAKE_SHARED_LINKER_FLAGS_TSAN
"${CMAKE_SHARED_LINKER_FLAGS_DEBUG} -fsanitize=thread,undefined" CACHE STRING
"Linker lags to be used to create shared libraries for Tsan build type." FORCE)
endif()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This one is out of my area of expertise. The best guidance I have for you is that if still produces the right output on regtest, and if asan and tsan still work, we are good.

run: |
rm -rf cpp/build
mkdir cpp/build
cd cpp/build
cmake .. -DCMAKE_CXX_FLAGS="-O2 -fPIC -Wall -Wextra -Werror -Wno-unused-function -Wno-deprecated-declarations -fsanitize=thread,undefined" -DCMAKE_EXE_LINKER_FLAGS="-fsanitize=address,leak,undefined"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think I learned a little but of cmake to review the original authors' work here, but at this point my head is empty.

@@ -20,12 +20,13 @@
CPP_BUILD_DIR = CPP_DIR / "build"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Haven't not looked at this for a while, it seems setup.py have mostly fallen out of vogue vs pyproject.toml, but that can be a problem for later, ref: https://packaging.python.org/en/latest/overview/

@Dcallies Dcallies merged commit d49a70e into facebook:main Jul 5, 2024
9 checks passed
@ianwal ianwal mentioned this pull request Oct 3, 2024
julietshen pushed a commit to julietshen/tx-sandbox that referenced this pull request Mar 7, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants