mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
* Adding pipeline file for eager mode * adding the build eager mode flag * adding torch wheel files for installation * Changing pytorch version for change in wheel files * updating requirements file path * Removing Java and NodeJS from the build * removing import torch for testing build of eager mode * changing the build command * import torch * building eager mode separately * removing Java tests * python path issues * changing python path location * changing the build path file loc * installing torch before build * setting environment for building eager mode * Copying the build file and getting rid of flags * changing python path * adding missing packages * moving build eager mode code * changing python path to python3 * adding amd_hipify * adding logger file * install torch before build * change requirements file location * install torch before build eager * modifying eager mode build * modifying build location * adding new docker image * handling gradle move issue * Typo fix * changing deps file * adding java and nodejs * changing repo name for docker image * removing pybind * building only eager mode * changing the image name * removing install wheel package * build complete onnxruntime with eager mode * building wheel * enabling pybind * adding build eager mode flag in unit tests * removing build java nodejs * adding build command * removing java tests * moving Debug tests before Release * building Debug only case * changing debug test code * running the build eager mode with tests * adding build dir * adding build dir path * changing build dir path * changing build command for eager mode * building eager mode and running tests simultaneously * adding more flags to the pipeline * chaning flag * adding Debug and Release * changing torch to nightly build * changing torch version for nightly build * chaning torch version * move to Ubuntu image * adding pool * adding dockerfile for eager mode * adding python deps file for eager * modifying python deps file for eager * changing deps file * changing deps file statements * changing python path * REMOVING ECHO line * going to original docker file * changing docker file * changing to eager requirements file * changing python deps file * changing paths * changing cmake path * changing build script * changing python installation * running debug mode only * changing pipeline file * test name * test name * test name2 * changing requirements file * final flags for eager mode * previous pipeline * moving to ubuntu image and including some deps * adding cmake path * returning to manylinux image * removing unncecessary files for pipeline
13 lines
608 B
Text
13 lines
608 B
Text
FROM quay.io/pypa/manylinux2014_x86_64:latest
|
|
|
|
ENV PATH /usr/local/gradle/bin:/opt/rh/devtoolset-10/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
|
|
|
ADD scripts /tmp/scripts
|
|
RUN yum remove -y devtoolset\* && yum install -y devtoolset-10-binutils devtoolset-10-gcc devtoolset-10-gcc-c++ devtoolset-10-gcc-gfortran && cd /tmp/scripts && /tmp/scripts/manylinux/install_centos.sh && /tmp/scripts/manylinux/install_deps_eager.sh && rm -rf /tmp/scripts
|
|
|
|
ARG BUILD_UID=1001
|
|
ARG BUILD_USER=onnxruntimedev
|
|
RUN adduser --uid $BUILD_UID $BUILD_USER
|
|
WORKDIR /home/$BUILD_USER
|
|
USER $BUILD_USER
|
|
|