Peter Heywood
Peter Heywood
A build on Stanage of current master (b5173e78765d03be8d1b393f8a037499b064b676) using: ``` module load CUDA/12.0.0 GCC/12.3.0 Python/3.11.3-GCCcore-12.3.0 CMake/3.26.3-GCCcore-12.3.0 cmake .. -DCMAKE_CUDA_ARCHITECTURES="80;90" -DFLAMEGPU_BUILD_PYTHON=ON cmake --build . --target pyflamegpu -j `nproc` ``` Did not...
Confirmed via a CI run that manylinux_2_28 also results in libnvrtc-builtins.so.12.0 being linked, so its not centos7 specific, but either manylinux specific or devtoolset specific? https://github.com/FLAMEGPU/FLAMEGPU2/actions/runs/8850510611/job/24304952167 ``` Dynamic section at...
Could possibly look into other libraries distributing binaries that are linked against NVRTC that are built on centos using devtoolset compilers, to see if they have similar issues with builtins...
> However, I'm concerned this will make an implicit requirement on the -dev variant of the packages rather than the none-dev versions (which contain the same .so). -dev might be...
Arm64 Github Actions runners are now in a public beta available for teams/enterprise customers for now, with wider roll out by the end of the year. They are "larger runners"...
For now, the decision is to disable the `pull_request` workflows, adding a less frequent / opt-in way of running these jobs on the post-merge target. This could be via manual...
One downside to our current exclusive use of `push` events to trigger CI, is that if you push multiple commits at once, this only triggers for the HEAD commit. If...
Currently our CI is all `push` event based, which does not trigger for pull requests from forks (since #644). This limits its usefulness for third-party contributions (but avoids security concerns...
Swig has had several more releases, including 4.2.1. Currently investigating if this is a cause of errors which do not occur in wheels built from 2024-01-12. ``` AttributeError: 'MessageSpatial3D_Description' object...
Swig 4.3.0 adds python 3.13 support, so we'll probably want to switch to that for CI atleast and make sure that 4.3.0 works as intended (it appears to, and fixes...