Skip to content

Commit

Permalink
Move benchmark.config to config
Browse files Browse the repository at this point in the history
  • Loading branch information
myaaghubi committed Aug 24, 2023
1 parent e67f106 commit a5bf053
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion base/hello_world.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

cd `dirname $0`
. ./_functions.sh
. ../benchmark.config
. ../config

bn_name=`basename $0 .sh`

Expand Down
2 changes: 1 addition & 1 deletion base/show_fw_array.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
cd `dirname $0`
cd ..

. ../benchmark.config
. ../config

# include framework list
targets="$frameworks_list"
Expand Down
2 changes: 1 addition & 1 deletion benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if [ ! `which curl` ]; then
exit 1;
fi

. ./benchmark.config
. ./config

function showHelp()
{
Expand Down
2 changes: 1 addition & 1 deletion check.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

. ./benchmark.config
. ./config
. ./base/option_target.sh

# Colors
Expand Down
2 changes: 1 addition & 1 deletion clean.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

. ./benchmark.config
. ./config
. ./base/option_target.sh

shopt -s extglob
Expand Down
2 changes: 1 addition & 1 deletion clear-cache.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if [ ! `which composer` ]; then
fi


. ./benchmark.config
. ./config
. ./base/option_target.sh

shopt -s extglob
Expand Down
2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if [ ! `which curl` ]; then
fi


. ./benchmark.config
. ./config
. ./base/option_target.sh

for fw in $param_targets
Expand Down
2 changes: 1 addition & 1 deletion update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if [ ! `which composer` ]; then
exit 1;
fi

. ./benchmark.config
. ./config
. ./base/option_target.sh

for fw in $param_targets
Expand Down

0 comments on commit a5bf053

Please sign in to comment.