Skip to content

Commit

Permalink
add benchmark workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
caic99 committed Feb 22, 2024
1 parent deb8295 commit c8496d5
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Uni-Dock Benchmark
on:
workflow_dispatch:
inputs:
tag:
description: "Docker image used"
required: false
default: "latest"
jobs:
unidock_benchmark:
runs-on: nvidia
container:
image: dptechnology/unidock:${{ github.event.inputs.tag }}
options: --gpus all
steps:
- name: Checkout test suites
uses: actions/checkout@v4
with:
repository: dptech-corp/Uni-Dock-Benchmarks
- name: Setup Python
uses: actions/setup-python@v5
- name: Install requirements
run: pip install -r requirements.txt
- name: Run benchmarks
run: |
python test_molecular_docking.py
python test_virtual_screening.py

0 comments on commit c8496d5

Please sign in to comment.