Skip to content

Commit 1c20045

Browse files
authored
Merge pull request #4 from gjbex/development
Minor improvements
2 parents e539abf + 8f98de4 commit 1c20045

File tree

4 files changed

+30
-8
lines changed

4 files changed

+30
-8
lines changed

python_for_systems_programming.pptx

-2.07 KB
Binary file not shown.

source-code/application/my_app.py

+9-7
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def generate_data(n, a=0, b=1):
1111
return [random.randint(a, b) for _ in range(n)]
1212

1313
def main():
14-
arg_parser = ArgumentParser(description='test application')
14+
arg_parser = ArgumentParser(add_help=False)
1515
arg_parser.add_argument('--conf',
1616
help='configuration file to use')
1717
arg_parser.add_argument('--verbose', action='store_true',
@@ -36,12 +36,14 @@ def main():
3636
print('user configuration file values:', file=sys.stderr)
3737
cfg.write(sys.stderr)
3838
cfg_opts = dict(cfg['defaults'])
39-
arg_parser.set_defaults(**cfg_opts)
40-
arg_parser.add_argument('n', type=int, nargs='?',
41-
help='number of random values to generate')
42-
arg_parser.add_argument('--a', type=int, help='smallest value')
43-
arg_parser.add_argument('--b', type=int, help='largest value')
44-
arg_parser.parse_args(remaining_options, options)
39+
arg_parser_cl = ArgumentParser(description='test application',
40+
parents=[arg_parser])
41+
arg_parser_cl.set_defaults(**cfg_opts)
42+
arg_parser_cl.add_argument('n', type=int, nargs='?',
43+
help='number of random values to generate')
44+
arg_parser_cl.add_argument('--a', type=int, help='smallest value')
45+
arg_parser_cl.add_argument('--b', type=int, help='largest value')
46+
arg_parser_cl.parse_args(remaining_options, options)
4547
if options.verbose:
4648
print('final options:', file=sys.stderr)
4749
print(f'n = {options.n}\na = {options.a}\nb = {options.b}', end='\n\n',

source-code/hydra/README.md

+20
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,23 @@ multiruns and so on.
1414
1. `config.yaml`: configuration file with the defaults.
1515
1. `distr/gauss.yaml`: configuration file for the Gaussian distirubtion.
1616
1. `distr/uniform.yaml`: configuration file for the uniform distirubtion.
17+
18+
## How to use it?
19+
Run with configuratino file settings:
20+
```bash
21+
$ ./gen_rand.py
22+
```
23+
To increase the number of random values:
24+
```bash
25+
$ ./gen_rand.py 10
26+
```
27+
28+
To use a uniform distribution:
29+
```bash
30+
$ ./gen_rand.py distr=uniform
31+
```
32+
33+
To use a uniform distribution between -1 and 0:
34+
```bash
35+
$ ./gen_rand.py distr=uniform distr.a=-1.0 distr.b=0.0
36+
```

source-code/hydra/gen_rand.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def gen_rand(cfg):
1414
if cfg.n <= 0:
1515
LOG.error(f'negative number to generate {cfg.n}')
1616
return 1
17-
LOG.info(f'genrating {cfg.n} random numbers')
17+
LOG.info(f'generating {cfg.n} random numbers')
1818
LOG.info(f'using {cfg.distr.name} distribution')
1919
if cfg.distr.name == 'gauss':
2020
LOG.info(f'mu={cfg.distr.mu}, sigma={cfg.distr.sigma}')

0 commit comments

Comments
 (0)