Josu Uribe

Results 5 comments of Josu Uribe

FROM arm32v7/debian:latest ARG DEBIAN_FRONTEND=noninteractive ARG REPO_HOME=/repos ARG PYTORCH_HOME=$REPO_HOME/dist ARG PYTORCH_TAG=v1.8.1 ARG USE_MKLDNN=OFF ARG USE_NNPACK=ON ARG USE_QNNPACK=ON ARG USE_XNNPACK=ON ARG MAX_JOBS=4 RUN apt-get update && apt-get install -y \ libopenblas-dev \...

Execute with: docker run -dit image_id Copy wheel from docker image docker cp container_id:/drop . Now, you can stop container docker container stop container_id It works for Pytorch 1.8.1, anyway...

Not yet, I expected it would be more easy in a specialized builder machine like yours, but I have read several people has got it. The problem is this library...

FROM debian:latest ARG DEBIAN_FRONTEND=noninteractive ARG REPO_HOME=/repos ARG ARROW_HOME=$REPO_HOME/dist ARG LD_LIBRARY_PATH=$ARROW_HOME/lib:$LD_LIBRARY_PATH ARG PYARROW_WITH_PARQUET=1 ARG PARQUET_TEST_DATA=$REPO_HOME/arrow/cpp/submodules/parquet-testing/data ARG ARROW_TEST_DATA=$REPO_HOME/arrow/testing/data ARG ARROW_BUILD_TYPE=release ARG ARROW_TAG=apache-arrow-3.0.0 RUN apt-get update -y && apt-get install -y libjemalloc-dev libboost-dev...

Execute with: docker run -dit _image_id_ Copy wheel from docker image docker cp _container_id_:/drop . Now, you can stop container docker container stop _container_id_ It works for Apache 4.0.0 (master)...