This example implements a FLAME GPU 2 copy of the original FLAME GPU 1 pedestrian navigation example.
It provides a demonstration of keyframe animated agents and user interfaces, visible in this video.
Building FLAME GPU has the following requirements. There are also optional dependencies which are required for some components, such as Documentation or Python bindings.
- CMake
>= 3.18
- CUDA
>= 11.0
and a Compute Capability>= 3.5
NVIDIA GPU. - C++17 capable C++ compiler (host), compatible with the installed CUDA version
- Microsoft Visual Studio 2019 (Windows)
- make and GCC
>= 8.1
(Linux)
- git
Optionally:
- cpplint for linting code
- Doxygen to build the documentation
- Python
>= 3.8
for python integration - swig
>= 4.0.2
for python integration- Swig
4.x
will be automatically downloaded by CMake if not provided (if possible).
- Swig
- FLAMEGPU2-visualiser dependencies
Building via CMake is a three step process, with slight differences depending on your platform.
- Create a build directory for an out-of tree build
- Configure CMake into the build directory
- Using the CMake GUI or CLI tools
- Specifying build options such as the CUDA Compute Capabilities to target, the inclusion of Visualisation or Python components, or performance impacting features such as
SEATBELTS
. See CMake Configuration Options for details of the available configuration options
- Build compilation targets using the configured build system
- See Available Targets for a list of available targets.
To build under Linux using the command line, you can perform the following steps.
For example, to configure CMake for Release
builds, for consumer Pascal GPUs (Compute Capability 61
), with python bindings enabled, producing the static library and boids_bruteforce
example binary.
# Create the build directory and change into it
mkdir -p build && cd build
# Configure CMake from the command line passing configure-time options.
cmake .. -DCMAKE_BUILD_TYPE=Release -CMAKE_CUDA_ARCHITECTURES=61
# Build the target(s)
cmake --build . --target all -j 8
# Alternatively make can be invoked directly
make flamegpu all -j8
# Run the compiled model with the input file, for unlimited steps
cd bin/Release
./pedestrian_navigation -i ../../../map.xml -s 0
Under Windows, you must instruct CMake on which Visual Studio and architecture to build for, using the CMake -A
and -G
options.
This can be done through the GUI or the CLI.
I.e. to configure CMake for consumer Pascal GPUs (Compute Capability 61
), with python bindings enabled, and build the producing the static library and boids_bruteforce
example binary in the Release configuration:
REM Create the build directory
mkdir build
cd build
REM Configure CMake from the command line, specifying the -A and -G options. Alternatively use the GUI
cmake .. -A x64 -G "Visual Studio 16 2019" -CMAKE_CUDA_ARCHITECTURES=61
REM You can then open Visual Studio manually from the .sln file, or via:
cmake --open .
REM Alternatively, build from the command line specifying the build configuration
cmake --build . --config Release --target ALL_BUILD --verbose
Option | Value | Description |
---|---|---|
CMAKE_BUILD_TYPE |
Release /Debug |
Select the build configuration for single-target generators such as make |
SEATBELTS |
ON /OFF |
Enable / Disable additional runtime checks which harm performance but increase usability. Default ON |
CMAKE_CUDA_ARCHITECTURES |
e.g 60 , "60;70" |
[CUDA Compute Capabilities][cuda-CC] to build/optimise for, as a ; separated list. See [CMAKE_CUDA_ARCHITECTURES][cmake-CCA]. Defaults to all-major or equivalent. Alternatively use the CUDAARCHS environment variable. |
VISUALISATION |
ON /OFF |
Enable Visualisation. Default OFF . |
VISUALISATION_ROOT |
path/to/vis |
Provide a path to a local copy of the FLAMEGPU/FLAMEGPU2-visualiser repository |
USE_NVTX |
ON /OFF |
Enable NVTX markers for improved profiling. Default OFF |
WARNINGS_AS_ERRORS |
ON /OFF |
Promote compiler/tool warnings to errors are build time. Default OFF |
FLAMEGPU_VERSION |
v2.0.0-alpha.2 |
Git tag or commit hash of the FLAMEGPU/FLAMEGPU2 repository to be fetched |
FLAMEGPU_ROOT |
path/to/FLAMEGPU2 |
Path to local copy of FLAMEGPU/FLAMEGPU2, to be used rather than fetching from github during CMake configuration. Use -DFLAMEGPU_ROOT= to revert to fetching from GitHub. |
See the FLAMEGPU/FLAMEGPU2 Readme for a full list of CMake options for the main repository.
For a list of available CMake configuration options, run the following from the build
directory:
cmake -LH ..
Target | Description |
---|---|
all |
Linux target containing default set of targets, including everything but the documentation and lint targets |
ALL_BUILD |
The windows equivalent of all |
all_lint |
Run all available Linter targets |
pedestrian_navigation |
The pedestrian_navigation target created by the CMakeLists.txt in the root of this repository |
lint_pedestrian_navigation |
Lint the pedestrian_navigation target. |
flamegpu |
Build the FLAME GPU static library |
docs |
The FLAME GPU API documentation (if available) |
For a full list of available targets, run the following after configuring CMake:
cmake --build . --target help
Support for academic software is dependant on evidence of impact. Without evidence it is difficult/impossible to justify investment to add features and provide maintenance. We collect a minimal amount of anonymous usage data so that we can gather usage statistics that enable us to continue to develop the software under a free and permissible licence.
Information is collected when a simulation, ensemble or test suite run have completed.
The TelemetryDeck service is used to store telemetry data. All data is sent to their API endpoint of https://nom.telemetrydeck.com/v1/ via https. For more details please review the TelmetryDeck privacy policy.
We do not collect any personal data such as usernames, email addresses or hardware identifiers but we do generate a random user identifier. This identifier is salted and hashed by Telemetry deck.
More information can be found in the FLAMEGPU documentation.
Telemetry is enabled by default, but can be opted out by:
- Setting an environment variable
FLAMEGPU_SHARE_USAGE_STATISTICS
toOFF
,false
or0
(case insensitive).- If this is set during the first CMake configuration it will be used for all subsequent CMake configurations until the CMake Cache is cleared, or it is manually changed.
- If this is set during simulation, ensemble or test execution (i.e. runtime) it will also be respected
- Setting the
FLAMEGPU_SHARE_USAGE_STATISTICS
CMake option toOFF
or another false-like CMake value, which will default telemetry to be off for executions. - Programmatically overriding the default value by:
- Calling
flamegpu::io::Telemetry::disable()
orpyflamegpu.Telemetry.disable()
prior to the construction of anySimulation
,CUDASimulation
orCUDAEnsemble
objects. - Setting the
telemetry
config property of aSimulation.Config
,CUDASimulation.SimulationConfig
orCUDAEnsemble.EnsembleConfig
tofalse
.
- Calling
See Contributors for a list of contributors towards this project.
If you use this software in your work, please cite DOI 10.5281/zenodo.5428984. Release specific DOI are also provided via Zenodo.
Alternatively, CITATION.cff provides citation metadata, which can also be accessed from GitHub.
FLAME GPU is distributed under the MIT Licence.