Skip to content

Commit

Permalink
Merge branch 'main' into scheduling
Browse files Browse the repository at this point in the history
  • Loading branch information
UnsignedByte authored Jan 19, 2025
2 parents a163f22 + 3377070 commit 3a065cb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions apps/blas/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
test.expect
test.fil.data
test.fil.out
2 changes: 1 addition & 1 deletion apps/blas/run.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

KERNEL=$1
python apps/blas/util.py -r -n 5 -w 4 -k $KERNEL
apps/blas/util.py -r -n 5 -w 4 -k $KERNEL


1 change: 1 addition & 0 deletions apps/blas/util.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
import argparse
from functools import reduce
from itertools import chain
Expand Down
2 changes: 1 addition & 1 deletion runt.toml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ name = "blas"
paths = ["apps/blas/*/test.fil"]
expect_dir = "apps/blas/"
cmd = """
python apps/blas/util.py -r -n 5 -w 4 -k {} && \
apps/blas/util.py -r -n 5 -w 4 -k {} && \
dir=$(dirname {}) && \
rm $dir/test.expect $dir/test.fil.data $dir/test.fil.out
"""
Expand Down

0 comments on commit 3a065cb

Please sign in to comment.