Skip to content

Commit

Permalink
add . to script executions
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrovski committed May 17, 2012
1 parent 83de04f commit c5cc4ed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion categorize.sh
@@ -1,3 +1,4 @@
#!/bin/bash
#
#
# Copyright (c) 2011, The Arizona Board of Regents on behalf of
Expand Down Expand Up @@ -40,7 +41,6 @@
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
#
#!/bin/bash
find . -name 'id_0.log*' -print|sort -n|grep -v '~'>.list
#cpu=`eval "echo $list|grep cpu"`
cat .list|xargs -I{} grep -Hci gpu {}>.gpucount
Expand Down
10 changes: 5 additions & 5 deletions entry.sh
@@ -1,3 +1,4 @@
#!/bin/bash
#
#
# Copyright (c) 2011, The Arizona Board of Regents on behalf of
Expand Down Expand Up @@ -40,7 +41,6 @@
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
#
#!/bin/bash
rm -f .tmp

#id
Expand All @@ -56,19 +56,19 @@ cat $1/info | grep 'nodes:'|cut -d':' -f2 >> .tmp
cat $1/info | grep 'cores:'|cut -d':' -f2 >> .tmp

#rank
cat $1/id_0.log|exRank.sh >> .tmp
cat $1/id_0.log|./exRank.sh >> .tmp

#cpu_gpu
echo $2 >> .tmp

#iterations
cat $1/id_0.log|exIter.sh >> .tmp
cat $1/id_0.log|./exIter.sh >> .tmp

#time
cat $1/id_0.log|exTotal.sh >> .tmp
cat $1/id_0.log|./exTotal.sh >> .tmp

#comp time
cat $1/id_0.log|exComp.sh >> .tmp
cat $1/id_0.log|./exComp.sh >> .tmp

#SNPs on rank 0
snp=`cat $1/id_0.log|grep 'has SNPs'| cut -d' ' -f5|cut -d'-' -f2`
Expand Down

0 comments on commit c5cc4ed

Please sign in to comment.