Skip to content

Commit 3a065cb

Browse files
authored
Merge branch 'main' into scheduling
2 parents a163f22 + 3377070 commit 3a065cb

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

apps/blas/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
test.expect
2+
test.fil.data
3+
test.fil.out

apps/blas/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

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

66

apps/blas/util.py

100644100755
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env python3
12
import argparse
23
from functools import reduce
34
from itertools import chain

runt.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ name = "blas"
124124
paths = ["apps/blas/*/test.fil"]
125125
expect_dir = "apps/blas/"
126126
cmd = """
127-
python apps/blas/util.py -r -n 5 -w 4 -k {} && \
127+
apps/blas/util.py -r -n 5 -w 4 -k {} && \
128128
dir=$(dirname {}) && \
129129
rm $dir/test.expect $dir/test.fil.data $dir/test.fil.out
130130
"""

0 commit comments

Comments
 (0)