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

add valgrind instrumentation #1120

Open
bratpiorka opened this issue Feb 20, 2025 · 0 comments
Open

add valgrind instrumentation #1120

bratpiorka opened this issue Feb 20, 2025 · 0 comments
Labels
enhancement New feature or request

Comments

@bratpiorka
Copy link
Contributor

bratpiorka commented Feb 20, 2025

currently, our valgrind instrumentation is empty:

#define VALGRIND_DO_MEMPOOL_ALLOC(pool, ptr, size)                             \
    do {                                                                       \
        (void)(pool);                                                          \
        (void)(ptr);                                                           \
        (void)(size);                                                          \
    } while (0)

#define VALGRIND_DO_MEMPOOL_FREE(pool, ptr)                                    \
    do {                                                                       \
        (void)(pool);                                                          \
        (void)(ptr);                                                           \
    } while (0)
#endif

additionally, our GPU workflows should be run with all instrumentation enabled (could be done in Nightly builds)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant