Skip to content

Commit

Permalink
Use bright blue
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemartinlogan committed Mar 31, 2024
1 parent c71014f commit 007c4fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions jarvis_cd/basic/pkg.py
Original file line number Diff line number Diff line change
Expand Up @@ -1104,16 +1104,16 @@ def run_iter(self, resume=False):
self.log(f'[ITER] Iteration'
f'[(param) {self.iterator.iter_count}/{self.iterator.max_iter_count}]'
f'[(rep) {i + 1}/{self.iterator.repeat}]: '
f'{self.iterator.linear_conf_dict}', Color.MAGENTA)
f'{self.iterator.linear_conf_dict}', Color.BRIGHT_BLUE)
self.iterator.config_pkgs(conf_dict)
self.run(kill=True)
self.iterator.save_run(conf_dict)
self.clean(with_iter_out=False)
conf_dict = self.iterator.next()
self.log(f'[ITER] Beginning analysis', Color.MAGENTA)
self.log(f'[ITER] Beginning analysis', Color.BRIGHT_BLUE)
self.iterator.analysis()
self.log(f'[ITER] Finished analysis', Color.MAGENTA)
self.log(f'[ITER] Stored results in: {self.iterator.stats_path}', Color.MAGENTA)
self.log(f'[ITER] Finished analysis', Color.BRIGHT_BLUE)
self.log(f'[ITER] Stored results in: {self.iterator.stats_path}', Color.BRIGHT_BLUE)

def run(self, kill=False):
"""
Expand Down

0 comments on commit 007c4fd

Please sign in to comment.