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

Audit Runtime build infrastructure #1588

Merged
merged 21 commits into from
Mar 31, 2025
Merged

Audit Runtime build infrastructure #1588

merged 21 commits into from
Mar 31, 2025

Conversation

dime10
Copy link
Contributor

@dime10 dime10 commented Mar 27, 2025

The primary, high-level goal is to enable stricter safety checks in our build systems. In addition to stricter checks, ideally, all our build recipes should produce clean, warning-free outputs, as ignoring one set of warnings can easily lead to overlooking other warnings.
This PR takes a look at the runtime and improves the following:

  • provide a warning-free (cmake+compiler) build across tested platforms
  • enable warnings as errors and -Wall by default
  • ensure runtime can be built with ENABLE_ASAN across tested platforms
  • fix all memory errors
  • general cleanup, including a dependency update of Catch2

The above was tested on the runtime with the following configurations:

  • make targets: test-runtime, coverage-runtime, lit, pytest
  • platforms: mac + apple clang 16, linux + clang 18, linux + gcc 13

The PR does not enable ASAN by default or set up an ASAN CI build (yet).

... by recording it into logs instead.

This eliminates CMake deprecation warnings from the external project using a low minimum
version. Warning message:

  Compatibility with CMake < 3.5 will be removed from a future version of
  CMake.
@dime10 dime10 added runtime Pull requests that update the runtime housecleaning labels Mar 27, 2025
@dime10 dime10 requested a review from a team March 27, 2025 14:45
Copy link
Contributor

Hello. You may have forgotten to update the changelog!
Please edit doc/releases/changelog-dev.md on your branch with:

  • A one-to-two sentence description of the change. You may include a small working example for new features.
  • A link back to this PR.
  • Your name (or GitHub username) in the contributors section.

dime10 added 12 commits March 27, 2025 11:04
Migration based on the following guide:
https://github.com/catchorg/Catch2/blob/v3.8.0/docs/migrate-v2-to-v3.md

The new version has separate headers for faster compile times with a
static library. It also updated its minimum CMake version which allows
to get rid of this CMake deprecation warning:

      Compatibility with CMake < 3.10 will be removed from a future version of
      CMake.

Additional cleanup in the test directory.
The problem is a faulty copy from std::string to char*. The followwing
error has been resolved:

  AddressSanitizer: heap-buffer-overflow
  READ of size 20976
    #1 0x1029c71e4 in runCircuit openqasm_python_module.cpp:186
std::vector's reserve does not change the size of a vector, it is merely
a memory optimization. So while the underlying memory buffer is resized,
the container itself is not. Resolved the following error:

  AddressSanitizer: container-overflow
  WRITE of size 8
    #0 0x104d2f7a0 in CATCH2_INTERNAL_TEST_10() Test_NullQubit.cpp:117
QuantumDevices are allocated on the heap and need to be freed. Fixes the
following error:

  LeakSanitizer: detected memory leaks
  Direct leak of 72 byte(s) in 1 object(s) allocated from:
    #0 0x5599a5edf01d in operator new(unsigned long)
    #1 0x7f44d215e812 in NullQubitFactory /home/davidi/catalyst/runtime/lib/backend/null_qubit/NullQubit.cpp:4:1
    #2 0x5599a5ee172d in loadDevice(...) /home/davidi/catalyst/runtime/tests/TestUtils.hpp:46:18
Enables clickable file+line number links by using the commonly
used format in error message printing.
In the libraries we dlopen, the RPATH to the dlopen target has been
hardcoded with build-time information, which will not work after
distributing the package. Instead, we should rely on known relative
paths, such as $ORIGIN.
- remove catalyst_qir_runtime target
  - this target existed only for testing, and was not suited as a
    general interface target to the runtime since it includes all
    internal headers and properties as well
  - an explicit testing target is now added in the test directory
- remove object target for the capi as it serves no purpose
- prefer private by default for cmake target properties
- use public to propagate header information correctly for each target
.. and into the backend utility includes.
.. since we load the function dynamically.
@dime10 dime10 force-pushed the warnings-as-errors branch from 54e9160 to 46bfc41 Compare March 27, 2025 15:05
@dime10 dime10 force-pushed the warnings-as-errors branch 2 times, most recently from ba70c0f to 3a95d05 Compare March 27, 2025 16:03
dime10 added 4 commits March 27, 2025 12:44
ASAN flags are now computed independently in the runtime Makefile,
instead of coming from the top-level one. This has two advantages:
- one can modify the default value for ENABLE_ASAN in the runtime
  Makefile, and still run from make from the top-level
- environment variables are adjustable for each scope, for instance
  when running the runtime tests, which are executables, we should not
  preload the ASAN RT since it is already embedded in the executable

ASAN flags for running Python tests have been adjusted to account for
certain peculiarities:
- dlopen cannot find libraries specified by name only since it loses
  RPATH information from the calling library when replaced by ASAN
- tests that generate executables are skipped since correctly linking
  them from Catalyst's frontend is difficult
GCC, while supporting ASAN in principle, and while runtime tests
can successfully be be run with it, Python frontend tests still fail
(both lit and pytest).
Resolves the following error (due to inclusion of a source file
instead of a header file):

  ERROR: AddressSanitizer: odr-violation
    [1] size=37 'typeinfo name for Catalyst::Runtime::Device::OQDDevice' /home/davidi/catalyst/runtime/tests/Test_OQDDevice.cpp
    [2] size=37 'typeinfo name for Catalyst::Runtime::Device::OQDDevice' /home/davidi/catalyst/runtime/lib/backend/oqd/OQDDevice.cpp
@dime10 dime10 force-pushed the warnings-as-errors branch from 3a95d05 to ffc67dc Compare March 27, 2025 16:44
Copy link

codecov bot commented Mar 27, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 96.78%. Comparing base (8b385c1) to head (3159f4b).
Report is 9 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #1588      +/-   ##
==========================================
+ Coverage   96.08%   96.78%   +0.70%     
==========================================
  Files          81       80       -1     
  Lines        8615     8565      -50     
  Branches      816      816              
==========================================
+ Hits         8278     8290      +12     
+ Misses        280      218      -62     
  Partials       57       57              

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Copy link
Contributor

@erick-xanadu erick-xanadu left a comment

Choose a reason for hiding this comment

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

Perfect!

@erick-xanadu erick-xanadu added the reviewer:require-wheels Pull Requests will need wheel building job successful before being merged label Mar 27, 2025
@dime10 dime10 added the author:build-wheels Run the wheel building workflows on this Pull Request label Mar 28, 2025
dime10 added 2 commits March 28, 2025 10:37
Our LAPACKE dependency throws the following error:

  CMake Error at runtime/build/_lapacke-accelerate/src/lapacke-accelerate-build/_deps/reference-lapack-src/INSTALL/CMakeLists.txt:1 (cmake_minimum_required):
    Compatibility with CMake < 3.5 has been removed from CMake.
@dime10 dime10 force-pushed the warnings-as-errors branch from bd4d0ba to 1d4f97a Compare March 28, 2025 15:36
@dime10 dime10 merged commit 84a7110 into main Mar 31, 2025
57 checks passed
@dime10 dime10 deleted the warnings-as-errors branch March 31, 2025 21:28
@dime10 dime10 mentioned this pull request Apr 1, 2025
14 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
author:build-wheels Run the wheel building workflows on this Pull Request housecleaning reviewer:require-wheels Pull Requests will need wheel building job successful before being merged runtime Pull requests that update the runtime
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants