Skip to content

Commit

Permalink
Update libraft build command
Browse files Browse the repository at this point in the history
Due to the changes in rapidsai/raft#1333, the `libraft` build command in our `devel` containers need to be updated.
  • Loading branch information
ajschmidt8 committed Mar 20, 2023
1 parent df87703 commit 783c9d2
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ RUN cd ${RAPIDS_DIR}/benchmark && \

RUN cd ${RAPIDS_DIR}/raft && \
source activate rapids && \
./build.sh --allgpuarch --compile-libs libraft raft-dask pylibraft
./build.sh --allgpuarch --compile-lib libraft raft-dask pylibraft

RUN cd ${RAPIDS_DIR}/cudf && \
source activate rapids && \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ RUN cd ${RAPIDS_DIR}/benchmark && \

RUN cd ${RAPIDS_DIR}/raft && \
source activate rapids && \
./build.sh --allgpuarch --compile-libs libraft raft-dask pylibraft
./build.sh --allgpuarch --compile-lib libraft raft-dask pylibraft

RUN cd ${RAPIDS_DIR}/cudf && \
source activate rapids && \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ RUN cd ${RAPIDS_DIR}/benchmark && \

RUN cd ${RAPIDS_DIR}/raft && \
source activate rapids && \
./build.sh --allgpuarch --compile-libs libraft raft-dask pylibraft
./build.sh --allgpuarch --compile-lib libraft raft-dask pylibraft

RUN cd ${RAPIDS_DIR}/cudf && \
source activate rapids && \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ RUN cd ${RAPIDS_DIR}/benchmark && \

RUN cd ${RAPIDS_DIR}/raft && \
source activate rapids && \
./build.sh --allgpuarch --compile-libs libraft raft-dask pylibraft
./build.sh --allgpuarch --compile-lib libraft raft-dask pylibraft

RUN cd ${RAPIDS_DIR}/cudf && \
source activate rapids && \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ RUN cd ${RAPIDS_DIR}/benchmark && \

RUN cd ${RAPIDS_DIR}/raft && \
source activate rapids && \
./build.sh --allgpuarch --compile-libs libraft raft-dask pylibraft
./build.sh --allgpuarch --compile-lib libraft raft-dask pylibraft

RUN cd ${RAPIDS_DIR}/cudf && \
source activate rapids && \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ RUN cd ${RAPIDS_DIR}/benchmark && \

RUN cd ${RAPIDS_DIR}/raft && \
source activate rapids && \
./build.sh --allgpuarch --compile-libs libraft raft-dask pylibraft
./build.sh --allgpuarch --compile-lib libraft raft-dask pylibraft

RUN cd ${RAPIDS_DIR}/cudf && \
source activate rapids && \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ RUN cd ${RAPIDS_DIR}/benchmark && \

RUN cd ${RAPIDS_DIR}/raft && \
source activate rapids && \
./build.sh --allgpuarch --compile-libs libraft raft-dask pylibraft
./build.sh --allgpuarch --compile-lib libraft raft-dask pylibraft

RUN cd ${RAPIDS_DIR}/cudf && \
source activate rapids && \
Expand Down
2 changes: 1 addition & 1 deletion templates/rapidsai-core/Devel.dockerfile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ RUN cd ${RAPIDS_DIR}/{{ lib.name }} && \
./build.sh --allgpuarch libcuml cuml prims

{% elif lib.name == "raft"%}
./build.sh --allgpuarch --compile-libs libraft raft-dask pylibraft
./build.sh --allgpuarch --compile-lib libraft raft-dask pylibraft

{% elif lib.name == "dask-cuda"%}
python setup.py install
Expand Down

0 comments on commit 783c9d2

Please sign in to comment.