diff options
author | Andrzej Janik <[email protected]> | 2021-02-21 14:44:17 +0100 |
---|---|---|
committer | Andrzej Janik <[email protected]> | 2021-02-21 14:44:17 +0100 |
commit | 1be88cac58d42b8a435113c240593842ff3938e6 (patch) | |
tree | 7a0d7bf0822b995465eddf0f0f894959602b6126 | |
parent | 9bc3fdbf7df9fc36fe6de71ee6acdd2bad7b593c (diff) | |
download | ZLUDA-1be88cac58d42b8a435113c240593842ff3938e6.tar.gz ZLUDA-1be88cac58d42b8a435113c240593842ff3938e6.zip |
Update docsimprove_ci
-rw-r--r-- | .github/workflows/rust.yml | 4 | ||||
-rw-r--r-- | README.md | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index f567e2f..1f2c0a2 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -11,7 +11,7 @@ env: jobs: build_lin: - name: Build (Linux) + name: Build and publish (Linux) runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 @@ -37,7 +37,7 @@ jobs: target/release/libcuda.so target/release/libcuda.so.1 build_win: - name: Build (Windows) + name: Build and publish (Windows) runs-on: windows-latest steps: - uses: actions/checkout@v2 @@ -58,7 +58,7 @@ Run your application like this: ``` ### Linux -A very recent version of [compute-runtime](https://github.com/intel/compute-runtime) and [Level Zero loader](https://github.com/oneapi-src/level-zero/releases) is required. At the time of the writing 20.45.18403 is the oldest recommended version. +You should install most recent run-time driver packages as outlined here: https://dgpu-docs.intel.com/installation-guides/index.html. Run your application like this: ``` LD_LIBRARY_PATH=<ZLUDA_DIRECTORY> <APPLICATION> <APPLICATIONS_ARGUMENTS> @@ -72,7 +72,8 @@ cargo build --release ``` in the main directory of the project. ### Linux -If you are building on Linux you must also symlink (or rename) the ZLUDA output library: +You should install most recent run-time an developer driver packages as outlined here: https://dgpu-docs.intel.com/installation-guides/index.html. Additionally, you should have `ocl-icd-opencl-dev` (or equivalent) installed. +If you are building on Linux you must also symlink (or rename) the ZLUDA output binaries after ZLUDA build finishes: ``` ln -s libnvcuda.so target/release/libcuda.so ln -s libcuda.so target/release/libcuda.so.1 |