Skip to content

PR: Changed some function names and variable names for CUDA kernels #73

PR: Changed some function names and variable names for CUDA kernels

PR: Changed some function names and variable names for CUDA kernels #73

Workflow file for this run

name: Python application test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9' # Specify the Python version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run pytest
run: |
cd Examples/; pytest -s # Assuming your tests are in the 'tests' directory