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

Added samiya.py #162

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

New file added

da512ff
Select commit
Loading
Failed to load commit list.
Open

Added samiya.py #162

New file added
da512ff
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request required action May 10, 2024 in 40s

Build Errored

The build errored. This is a change from the previous build, which passed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #163 Feature/new branch.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Job Python ENV OS State
106.1 3.6 CUDA=10.1.105-1 Linux errored
106.2 3.7 CUDA=10.1.105-1 Linux errored

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Bionic)
Python Versions 3.6, 3.7
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "bionic",
  "python": [
    "3.6",
    "3.7"
  ],
  "env": [
    "global={:CUDA=>\"10.1.105-1\"}={:CUDA_SHORT=>\"10.1\"}={:UBUNTU_VERSION=>\"ubuntu1804\"}={:FORCE_CUDA=>\"1\"}"
  ],
  "cache": {
    "pip": true
  },
  "before_install": [
    "INSTALLER=cuda-repo-${UBUNTU_VERSION}_${CUDA}_amd64.deb",
    "wget http://developer.download.nvidia.com/compute/cuda/repos/${UBUNTU_VERSION}/x86_64/${INSTALLER}",
    "sudo dpkg -i ${INSTALLER}",
    "wget https://developer.download.nvidia.com/compute/cuda/repos/${UBUNTU_VERSION}/x86_64/7fa2af80.pub",
    "sudo apt-key add 7fa2af80.pub",
    "sudo apt update -qq",
    "sudo apt install -y cuda-${CUDA_SHORT/./-} cuda-cufft-dev-${CUDA_SHORT/./-}",
    "sudo apt clean",
    "CUDA_HOME=/usr/local/cuda-${CUDA_SHORT}",
    "LD_LIBRARY_PATH=${CUDA_HOME}/lib64:${CUDA_HOME}/include:${LD_LIBRARY_PATH}",
    "PATH=${CUDA_HOME}/bin:${PATH}"
  ],
  "install": [
    "pip install -r requirements/tests.txt"
  ],
  "before_script": [
    "flake8 .",
    "isort -rc --check-only --diff mmfashion/ tools/ demo/",
    "yapf -r -d --style .style.yapf mmfashion/ tools/ demo/ configs/"
  ],
  "script": [
    "python setup.py check -m -s",
    "python setup.py build_ext --inplace"
  ]
}