Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Merge The Well with new config #1752

Merge The Well with new config

Merge The Well with new config #1752

Workflow file for this run

name: Test neuralop
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install TensorLy and TensorLy-Torch dev
run: |
CWD=`pwd`
echo 'Cloning repos in ${CWD}'
mkdir git_repos
cd git_repos
git clone https://github.com/tensorly/tensorly
cd tensorly
python -m pip install -e .
cd ..
git clone https://github.com/tensorly/torch
cd torch
python -m pip install -e .
cd ../..
- name: Install Pytorch
run: |
python -m pip install --upgrade pip
python -m pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
- name: Install package
run: |
python -m pip install --upgrade pip setuptools
python -m pip install -e .[dev]
- name: Test with pytest
run: |
pytest -vvv neuralop
Morty Proxy This is a proxified and sanitized view of the page, visit original site.