tools.yml 642 Bytes
Newer Older
Gao, Xiang's avatar
Gao, Xiang committed
1
2
queue:
  name: Hosted Linux Preview
3
  timeoutInMinutes: 30
Gao, Xiang's avatar
Gao, Xiang committed
4
5
6
7

variables:
  python.version: '3.7'

8

Gao, Xiang's avatar
Gao, Xiang committed
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
steps:

- task: UsePythonVersion@0
  displayName: 'Use Python $(python.version)'
  inputs:
    versionSpec: '$(python.version)'

- script: 'azure/install_dependencies.sh && pip install .'
  displayName: 'Install dependencies'

- script: 'python tools/training-benchmark.py ./dataset/ani_gdb_s01.h5'
  displayName: Training Benchmark

- script: 'python tools/neurochem-test.py ./dataset/ani_gdb_s01.h5'
  displayName: NeuroChem Test

- script: 'python tools/inference-benchmark.py --tqdm ./xyz_files/CH4-5.xyz'
  displayName: Inference Benchmark