Skip to content

Commit

Permalink
Preparing for 2.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
henricasanova committed Sep 10, 2024
1 parent 4a9c1b5 commit 369033b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
docker exec wrench mkdir wrench/build;
# build and test wrench
docker exec -w /home/wrench/wrench/build wrench cmake -DENABLE_BATSCHED=${batsched} -DCMAKE_VERBOSE_MAKEFILE=ON ..;
docker exec -w /home/wrench/wrench/build wrench make all unit_tests examples;
docker exec -w /home/wrench/wrench/build wrench make all unit_tests examples wrench-daemon;
docker exec -w /home/wrench/wrench/build wrench ./unit_tests;
docker exec -w /home/wrench/wrench/build/examples wrench ./run_all_examples.sh wrench-example-batch-smpi-action;
Expand Down
3 changes: 2 additions & 1 deletion examples/run_all_examples.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
#
# Usage: run_all_examples [executable_to_exclude1,executable_to_exclude2,....]

TO_ALWAYS_EXCLUDE="wrench-example-cloud-bag-of-tasks-energy"
#TO_ALWAYS_EXCLUDE="wrench-example-cloud-bag-of-tasks-energy"
TO_ALWAYS_EXCLUDE=""

TO_EXCLUDE="{$TO_ALWAYS_EXCLUDE},{$1}"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ namespace wrench {

// Select the "best" host
double lowest_load = DBL_MAX;
simgrid::s4u::Host *picked_host;
simgrid::s4u::Host *picked_host = nullptr;
unsigned long picked_num_cores = 0;
for (auto const &h: possible_hosts) {
unsigned long num_running_threads = this->running_thread_counts[h];
Expand Down
1 change: 0 additions & 1 deletion tools/wrench/wrench-daemon/scripts/generate_crow_routes.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import
import json
import re
import sys
Expand Down

0 comments on commit 369033b

Please sign in to comment.