We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad84c67 commit e88285fCopy full SHA for e88285f
2 files changed
.github/workflows/ci.yml
@@ -0,0 +1,18 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ check:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - uses: dtolnay/rust-toolchain@stable
13
+ - name: Format
14
+ run: cargo fmt --check
15
+ - name: Test
16
+ run: cargo test
17
+ - name: CLI contract
18
+ run: make check
README.md
@@ -1,5 +1,7 @@
# GATL AD Lab
+Status: external numeric check harness for `gatl-core` `risk-models` artifacts.
GATL AD Lab is an external numeric check harness for `gatl-core` risk-model
artifacts. It consumes `gatl risk-models` JSON, evaluates the typed scalar RPN
expression, executes the exported reverse derivative instruction skeleton, and
0 commit comments