-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #83 from EthicalML/update_dependencies
Fix compatibility for Vulkan HPP 1.2.155 and above
- Loading branch information
Showing
20 changed files
with
199 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[submodule "external/googletest"] | ||
path = external/googletest | ||
url = https://github.com/google/googletest | ||
branch = release-1.10.0 | ||
[submodule "external/Vulkan-Headers"] | ||
path = external/Vulkan-Headers | ||
url = https://github.com/KhronosGroup/Vulkan-Headers | ||
branch = v1.2.158 | ||
[submodule "external/spdlog"] | ||
path = external/spdlog | ||
url = https://github.com/gabime/spdlog | ||
branch = v1.8.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
|
||
Build System Deep Dive | ||
====================== | ||
|
||
The recommended approach to build the project is as out-of-source build in the ``build`` folder. This project comes with a ``Makefile`` that provides a set of commands that help with developer workflows. You can see some of the commands if you want to add some of the more advanced commands. | ||
|
||
For a base build you just have to run: | ||
|
||
.. code-block:: | ||
cmake -Bbuild | ||
This by default configures without any of the extra build tasks (such as building shaders) and compiles without the optional dependencies. The table below provides more detail. | ||
|
||
.. list-table:: | ||
:header-rows: 1 | ||
|
||
* - Flag | ||
- Description | ||
* - -DCMAKE_INSTALL_PREFIX="build/src/CMakefiles/Export/" | ||
- Enables local installation (which won't require admin privileges) | ||
* - -DCMAKE_TOOLCHAIN_FILE="..." | ||
- This is the path for your package manager if you use it such as vcpkg | ||
* - -DKOMPUTE_OPT_BUILD_TESTS=1 | ||
- Enable if you wish to build and run the tests (must have deps installed. | ||
* - -DKOMPUTE_OPT_BUILD_DOCS=1 | ||
- Enable if you wish to build the docs (must have docs deps installed) | ||
* - -DKOMPUTE_OPT_BUILD_SINGLE_HEADER=1 | ||
- Option to build the single header file using "quom" utility | ||
* - -DKOMPUTE_EXTRA_CXX_FLAGS="..." | ||
- Allows you to pass extra config flags to compiler | ||
* - -DKOMPUTE_OPT_INSTALL=0 | ||
- Disables the install step in the cmake file (useful for android build) | ||
* - -DKOMPUTE_OPT_ANDROID_BUILD=1 | ||
- Enables android build which includes and excludes relevant libraries | ||
|
||
|
||
Compile Flags | ||
~~~~~~~~~~~~~ | ||
|
||
.. list-table:: | ||
:header-rows: 1 | ||
|
||
* - Flag | ||
- Description | ||
* - KOMPUTE_CREATE_PIPELINE_RESULT_VALUE | ||
- Ensure the return value of createPipeline is processed as ResultValue instead of Result | ||
* - -DKOMPUTE_VK_API_VERSION="..." | ||
- Sets the default api version to use for vulkan kompute api | ||
* - -DKOMPUTE_VK_API_MAJOR_VERSION=1 | ||
- Major version to use for the Vulkan API | ||
* - -DKOMPUTE_VK_API_MINOR_VERSION=1 | ||
- Minor version to use for the Vulkan API | ||
* - -DKOMPUTE_ENABLE_SPDLOG=1 | ||
- Enables the build with SPDLOG and FMT dependencies (must be installed) | ||
* - -DKOMPUTE_LOG_VERRIDE=1 | ||
- Does not define the SPDLOG_\ :raw-html-m2r:`<LEVEL>` macros if these are to be overridden | ||
* - -DSPDLOG_ACTIVE_LEVEL | ||
- The level for the log level on compile level (whether spdlog is enabled) | ||
* - -DVVK_USE_PLATFORM_ANDROID_KHR | ||
- Flag to enable android imports in kompute (enabled with -DKOMPUTE_OPT_ANDROID_BUILD) | ||
* - -DRELEASE=1 | ||
- Enable release build (enabled by cmake release build) | ||
* - -DDEBUG=1 | ||
- Enable debug build including debug flags (enabled by cmake debug build) | ||
* - -DKOMPUTE_DISABLE_VK_DEBUG_LAYERS | ||
- Disable the debug Vulkan layers, mainly used for android builds | ||
|
||
|
||
Dependencies | ||
^^^^^^^^^^^^ | ||
|
||
Given Kompute is expected to be used across a broad range of architectures and hardware, it will be important to make sure we are able to minimise dependencies. | ||
|
||
Required dependencies | ||
~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
The only required dependency in the build is Vulkan. More specifically, the header files vulkan.h and vulkan.hpp, which are both part of the Vulkan SDK. If you haven't installed the Vulkan SDK yet, you can `download it here <https://vulkan.lunarg.com/>`_. | ||
|
||
Optional dependencies | ||
~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
SPDLOG is the preferred logging library, however by default Vulkan Kompute runs without SPDLOG by overriding the macros. It also provides an easy way to override the macros if you prefer to bring your own logging framework. The macro override is the following: | ||
|
||
.. code-block:: c++ | ||
|
||
#ifndef KOMPUTE_LOG_OVERRIDE // Use this if you want to define custom macro overrides | ||
#if KOMPUTE_SPDLOG_ENABLED // Use this if you want to enable SPDLOG | ||
#include <spdlog/spdlog.h> | ||
#endif //KOMPUTE_SPDLOG_ENABLED | ||
// ... Otherwise it adds macros that use std::cout (and only print first element) | ||
#endif // KOMPUTE_LOG_OVERRIDE | ||
|
||
You can choose to build with or without SPDLOG by using the cmake flag ``KOMPUTE_OPT_ENABLE_SPDLOG``. | ||
|
||
Finally, remember that you will still need to set both the compile time log level with ``SPDLOG_ACTIVE_LEVEL``\ , and the runtime log level with ``spdlog::set_level(spdlog::level::debug);``. |
Submodule Vulkan-Headers
added at
320af0
Submodule googletest
added at
703bd9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.