Skip to content

Commit 311ea3e

Browse files
fixed installation for 8+ not being done in the right folder (#18)
1 parent 1c23b24 commit 311ea3e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,9 @@ We checkout the commit corresponding to the current GraalVM release.
222222
```console
223223
cd <directory containing this README>
224224
mx build
225-
# Install it for Java 11
226-
mkdir -p $GRAAL_HOME/languages/grcuda;
227-
cp mxbuild/dists/jdk11/grcuda.jar $GRAAL_HOME/languages/grcuda/.;
225+
# Install it for Java 8+;
226+
mkdir -p $GRAAL_HOME/jre/languages/grcuda;
227+
cp mxbuild/dists/jdk1.8/grcuda.jar $GRAAL_HOME/languages/grcuda/.;
228228
```
229229

230230
* `./install.sh` does this sequence of command for you, if you need to rebuild GrCUDA.
@@ -392,4 +392,4 @@ If you use GrCUDA in your research, please cite the following publication(s). Th
392392

393393
```
394394
Parravicini, A., Delamare, A., Arnaboldi, M., & Santambrogio, M. D. (2021, May). DAG-based Scheduling with Resource Sharing for Multi-task Applications in a Polyglot GPU Runtime. In 2021 IEEE International Parallel and Distributed Processing Symposium (IPDPS) (pp. 111-120). IEEE.
395-
```
395+
```

install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
mx build;
44

5-
# Install for Java 11;
6-
mkdir -p $GRAAL_HOME/languages/grcuda;
7-
cp mxbuild/dists/jdk11/grcuda.jar $GRAAL_HOME/languages/grcuda/.;
5+
# Install for Java 8+;
6+
mkdir -p $GRAAL_HOME/jre/languages/grcuda;
7+
cp mxbuild/dists/jdk1.8/grcuda.jar $GRAAL_HOME/languages/grcuda/.;

0 commit comments

Comments
 (0)