Updated to add logistic regression godot example

This commit is contained in:
Alejandro Saucedo 2020-09-26 16:37:24 +01:00
parent 63426281fe
commit 9308b83af4
50 changed files with 101078 additions and 0 deletions

View file

@ -0,0 +1,25 @@
# Vulkan Kompute Godot Example
## Set Up Dependencies
We can get all the required dependencies from godot by running
```
git clone --branch 3.2 https://github.com/godotengine/godot-cpp
cd godot-cpp
```
Then we can get all the subomdules
```
git submodule sync
```
and we build the bindings
```
scons -j16 platform=linuxbsd target=debug
```