From 365d452d4d8d2f9805a0fc7cdff076e8eebdf09c Mon Sep 17 00:00:00 2001 From: Julien Chaumond Date: Mon, 25 May 2020 17:28:02 -0400 Subject: [PATCH] [ci] Slow GPU tests run daily (#4465) --- .github/workflows/self-scheduled.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/self-scheduled.yml b/.github/workflows/self-scheduled.yml index 0473949058..8a5c641af5 100644 --- a/.github/workflows/self-scheduled.yml +++ b/.github/workflows/self-scheduled.yml @@ -31,13 +31,12 @@ jobs: - name: Install dependencies run: | source .env/bin/activate - pip install .[sklearn,tf,torch,testing] + pip install .[sklearn,torch,testing] - name: Are GPUs recognized by our DL frameworks run: | source .env/bin/activate python -c "import torch; print(torch.cuda.is_available())" - python -c "import tensorflow as tf; print(tf.test.is_built_with_cuda(), tf.config.list_physical_devices('GPU'))" - name: Run all tests on GPU env: