You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A bunch of fixes to get `-Werror` builds to pass,
both on Linux and on Windows (`/WX`)
* Disable verbose Windows warnings
* `_CRT_SECURE_NO_WARNINGS` because of `std::getenv`
* C4267 because of conversions from `size_t` to other integers
* Define `WIN32_LEAN_AND_MEAN` and `NOMINMAX` on Windows
* Gets rid of some errors and speeds up the build
* Convert integer CUDA objects to std::uintptr_t
before reinterpreting them to a pointer
* Fixed "unused function" warning for `GetHipFormatPixelSize`
* There was a lot of duplication, now a single function
called `imageElementByteSize`
* Mark some variables as potentially unused (only used in asserts)
* Other minor fixes
0 commit comments