File tree 2 files changed +2
-8
lines changed
examples/nvidia_cuda_q/container
2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 1
1
FROM 292282985366.dkr.ecr.us-west-2.amazonaws.com/amazon-braket-pytorch-jobs:latest
2
2
RUN python3 -m pip install --upgrade pip
3
3
4
- # install cuda-quantum
4
+ # install cudaq
5
5
ARG SCRIPT_PATH
6
6
ARG CUDAQ_PATH=/opt/conda/lib/python3.10/site-packages
7
7
ENV MPI_PATH=/opt/amazon/openmpi
8
8
9
- COPY "${SCRIPT_PATH}/cudaq_wheel/wheelhouse/cuda_quantum_cu12-0.0.0-cp310-cp310-manylinux_2_28_x86_64.whl" .
10
- RUN python3 -m pip install cuda_quantum_cu12-0.0.0-cp310-cp310-manylinux_2_28_x86_64.whl
9
+ RUN python3 -m pip install cudaq
11
10
RUN bash "${CUDAQ_PATH}/distributed_interfaces/activate_custom_mpi.sh"
12
11
13
12
# install additional python dependencies
Original file line number Diff line number Diff line change @@ -50,11 +50,6 @@ docker login -u AWS -p $(aws ecr get-login-password --region us-west-2) 29228298
50
50
# with the full name.
51
51
script_dir=$( dirname " $0 " )
52
52
53
- # download cudaq wheel files
54
- wget -O container/cudaq_wheel.zip https://github.com/bettinaheim/cuda-quantum/releases/download/11272024/wheelhouse.zip
55
- unzip container/cudaq_wheel.zip -d container/cudaq_wheel
56
-
57
- # build docker image
58
53
docker build --build-arg SCRIPT_PATH=" $script_dir " \
59
54
-t ${image} -f " ${script_dir} /Dockerfile" . --platform linux/amd64 --progress=plain \
60
55
You can’t perform that action at this time.
0 commit comments