Skip to content

test: Metal test now works (#1581) #4950

test: Metal test now works (#1581)

test: Metal test now works (#1581) #4950

Workflow file for this run

name: CI (Lux)
on:
pull_request:
branches:
- main
paths:
- ".github/workflows/CommonCI.yml"
- "src/**"
- "ext/**"
- "test/**"
- "Project.toml"
- ".github/workflows/CI.yml"
- "lib/LuxTestUtils/**"
- "lib/LuxCore/**"
- "lib/MLDataDevices/**"
- "lib/WeightInitializers/**"
- "lib/LuxLib/**"
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
test:
strategy:
fail-fast: false
matrix:
version:
- "1.10"
- "1.11"
os:
- ubuntu-latest
test_group:
- "core_layers"
- "normalize_layers"
- "recurrent_layers"
- "autodiff"
- "misc"
- "reactant"
- "extras"
uses: ./.github/workflows/CommonCI.yml
with:
julia_version: ${{ matrix.version }}
project: "."
test_args: "BACKEND_GROUP=CPU LUX_TEST_GROUP=${{ matrix.test_group }}"
os: ${{ matrix.os }}
local_dependencies: "lib/MLDataDevices,lib/WeightInitializers,lib/LuxLib,lib/LuxCore"
local_test_dependencies: "lib/MLDataDevices,lib/LuxTestUtils,lib/LuxLib,lib/LuxCore"
downgrade:
strategy:
fail-fast: false
matrix:
test_group:
- "core_layers"
- "normalize_layers"
- "recurrent_layers"
- "autodiff"
- "misc"
- "reactant"
- "extras"
uses: ./.github/workflows/CommonCI.yml
with:
julia_version: "1.11"
project: "."
downgrade_testing: true
test_args: "BACKEND_GROUP=CPU LUX_TEST_GROUP=${{ matrix.test_group }}"
local_dependencies: "lib/MLDataDevices,lib/WeightInitializers,lib/LuxLib,lib/LuxCore"
local_test_dependencies: "lib/MLDataDevices,lib/LuxTestUtils,lib/LuxLib,lib/LuxCore"