Moving to KomputeProject org

This commit is contained in:
Alejandro Saucedo 2021-07-22 08:30:00 +01:00
parent 4ac54bf642
commit d9203477d2
19 changed files with 202 additions and 202 deletions

View file

@ -19,13 +19,13 @@ The build structure provides a range of options to build in different Android ha
<br>
<img src="https://raw.githubusercontent.com/KomputeFoundation/kompute/android-example/docs/images/android-editor.jpg">
<img src="https://raw.githubusercontent.com/KomputeProject/kompute/android-example/docs/images/android-editor.jpg">
</td>
<td width="30%">
<img src="https://raw.githubusercontent.com/KomputeFoundation/kompute/android-example/docs/images/android-kompute.jpg">
<img src="https://raw.githubusercontent.com/KomputeProject/kompute/android-example/docs/images/android-kompute.jpg">
</td>
</tr>

View file

@ -1,6 +1,6 @@
# Godot Summator GPU Kompute Example
![](https://github.com/KomputeFoundation/kompute/raw/master/docs/images/komputer-godot-4.gif)
![](https://github.com/KomputeProject/kompute/raw/master/docs/images/komputer-godot-4.gif)
This repository contains the accompanying code for the Blog post ["Supercharging Game Development with GPU Accelerated Machine Learning"](https://medium.com/@AxSaucedo/supercharging-game-development-with-gpu-accelerated-ml-using-vulkan-kompute-the-godot-game-engine-4e75a84ea9f0).

View file

@ -1,6 +1,6 @@
# Kompute Godot Example
![](https://github.com/KomputeFoundation/kompute/raw/master/docs/images/komputer-godot-4.gif)
![](https://github.com/KomputeProject/kompute/raw/master/docs/images/komputer-godot-4.gif)
## Set Up Dependencies
@ -19,7 +19,7 @@ We will be using v0.3.1 of Kompute, and similar to above we will need the built
We can start by cloning the repository on the v0.3.1 branch:
```
git clone --branch v0.3.1 https://github.com/KomputeFoundation/kompute/
git clone --branch v0.3.1 https://github.com/KomputeProject/kompute/
```
You will be able to use cmake to generate the build files for your platform.

View file

@ -1,6 +1,6 @@
# Kompute Godot Example
![](https://github.com/KomputeFoundation/kompute/raw/master/docs/images/komputer-godot-4.gif)
![](https://github.com/KomputeProject/kompute/raw/master/docs/images/komputer-godot-4.gif)
## Set Up Dependencies

View file

@ -1,7 +1,7 @@
# Kompute Game Engine Integration (Godot)
![](https://github.com/KomputeFoundation/kompute/raw/master/docs/images/komputer-godot-4.gif)
![](https://github.com/KomputeProject/kompute/raw/master/docs/images/komputer-godot-4.gif)
This repository contains the accompanying code for the Blog post ["Supercharging Game Development with GPU Accelerated Machine Learning"](https://medium.com/@AxSaucedo/supercharging-game-development-with-gpu-accelerated-ml-using-vulkan-kompute-the-godot-game-engine-4e75a84ea9f0).

View file

@ -5,7 +5,7 @@ This is the accompanying code for the Blog post ["Supercharging Game Development
This section contains the implementation of the Kompute module as a statically compile module built with the Godot engine source code. This approach requires re-compiling the Godot engine source code.
![](https://github.com/KomputeFoundation/kompute/raw/master/docs/images/komputer-godot-4.gif)
![](https://github.com/KomputeProject/kompute/raw/master/docs/images/komputer-godot-4.gif)
## Set Up Dependencies
@ -25,7 +25,7 @@ We will be using v0.3.1 of Kompute, and similar to above we will need the built
We can start by cloning the repository on the v0.3.1 branch:
```
git clone --branch v0.3.1 https://github.com/KomputeFoundation/kompute/
git clone --branch v0.3.1 https://github.com/KomputeProject/kompute/
```
You will be able to use cmake to generate the build files for your platform.

View file

@ -6,7 +6,7 @@ This is the accompanying code for the Blog post ["Supercharging Game Development
This section contains the implementation of the Kompute module as a shared GdNative Library that can be loaded dynamically through the Godot engine. This approach does not require re-compiling the Godot engine source code.
![](https://github.com/KomputeFoundation/kompute/raw/master/docs/images/komputer-godot-4.gif)
![](https://github.com/KomputeProject/kompute/raw/master/docs/images/komputer-godot-4.gif)
### Set Up Dependencies

View file

@ -96,7 +96,7 @@ vulkaninfo
Clone Kompute for access to the latest Python tests.
```
git clone https://github.com/KomputeFoundation/kompute.git
git clone https://github.com/KomputeProject/kompute.git
```
## Install dependencies to run the tests
@ -109,7 +109,7 @@ python3 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip wheel
pip install -r requirements-dev.txt
pip install git+git://github.com/KomputeFoundation/kompute.git
pip install git+git://github.com/KomputeProject/kompute.git
```
## Run the available tests