Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Iluvatar Ixrt environment #265

Merged
merged 2 commits into from
Sep 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,3 @@ ixrt_tmp_path: iluvatar_tmp/resnet50-fp16.engine
has_dynamic_axis: false
repeat: 1
image_size: 224
exist_onnx_path: onnxs/resnet50_bs256_pytorch_fp16False.onnx
# exist_compiler_path: resnet50-fp16.engine
output_types: {"output":"float32"}
input_types: {"input": "float32"}
6 changes: 3 additions & 3 deletions inference/docker_images/iluvatar/pytorch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ RUN apt-get install -y --fix-missing \


# Configure anaconda
RUN wget https://repo.anaconda.com/miniconda/Miniconda3-py38_4.10.3-Linux-x86_64.sh && \
bash ./Miniconda3-py38_4.10.3-Linux-x86_64.sh -b -p /root/miniconda && \
/root/miniconda/bin/conda clean -tipsy && \
RUN wget https://repo.anaconda.com/miniconda/Miniconda3-py310_23.5.2-0-Linux-x86_64.sh && \
bash ./Miniconda3-py310_23.5.2-0-Linux-x86_64.sh -b -p /root/miniconda && \
/root/miniconda/bin/conda clean -tip && \
ln -s /root/miniconda/etc/profile.d/conda.sh /etc/profile.d/conda.sh && \
echo ". /root/miniconda/etc/profile.d/conda.sh" >> ~/.bashrc && \
echo "conda activate base" >> ~/.bashrc && \
Expand Down
8 changes: 5 additions & 3 deletions inference/docker_images/iluvatar/pytorch/packages/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

>联系邮箱: contact-us@iluvatar.com

ixrt-0.4.0+corex.3.2.0-cp38-cp38-linux_x86_64.whl
ixrt-0.7.0+corex.latest.version-cp310-cp310-linux_x86_64.whl

torch-1.13.1+corex.3.2.0-cp38-cp38-linux_x86_64.whl
torchvision-0.14.1+corex.3.2.0.20230914.859-cp310-cp310-linux_x86_64.whl

torchvision-0.14.1+corex.3.2.0-cp38-cp38-linux_x86_64.whl
pycuda-2022.2.2+corex.3.2.0.20230914.859-cp310-cp310-linux_x86_64.whl

torch-1.13.1+corex.3.2.0.20230914.859-cp310-cp310-linux_x86_64.whl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ done
search_sdk_results=`find ${SDK_DIR} -name "corex*.run"`
for installer in $search_sdk_results; do
echo "Install ${installer}"
sh "${installer}" -- --silent --driver --toolkit
sh "${installer}" -- --silent --toolkit
done

search_packages_results=`find ${PKG_DIR} -name "*.whl"`
Expand Down