projects
/
Faustine.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
OOP initial commit with new tracked files.
[Faustine.git]
/
interpretor
/
faust-0.9.47mr3
/
benchmark
/
bench.sh
1
#!/bin/bash
2
AOPT
=
"-b 1024 -p 3 -d hw:0"
3
DST
=
results-$
(
date
+%
y
%
m
%
d.
%
H
%
M
%
S
)
4
5
echo
"Faust ALSA Benchmark : "
$AOPT
>
$DST
6
uname
-a
>>
$DST
7
date
>>
$DST
8
for
d
in
*
dir
;
do
9
for
f
in
$d
/*;
do
10
if
[
-x
$f
];
then
11
$f $AOPT
>>
$DST
12
fi
13
done
14
done