-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathnicactl.py
executable file
·75 lines (60 loc) · 2.1 KB
/
nicactl.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/usr/bin/env python3
"""
nicactl - CLI to control NICA properties
"""
import argparse
import os
import sys
from nica import NicaHardware, default_mst_device
# TODO control through NICA manager
MST_DEVICE = default_mst_device()
def define_parser():
'''Parse command line arguments.'''
parser = argparse.ArgumentParser(description='Control NICA.')
parser.add_argument('-d', metavar='DEVICE', dest='device', default=MST_DEVICE,
help='MST device to use (default: {})'.format(MST_DEVICE))
parser.add_argument('command', help='Subcommand to run')
return parser
PARSER = define_parser()
def init_nica():
'''Initialize a Netdev object for the expected one underlying card.'''
args = PARSER.parse_args(sys.argv[1:2])
if os.path.exists(args.device):
nica = NicaHardware(args.device)
return nica, args
# global NICA
NICA, ARGS = init_nica()
def print_help():
'''Command line help'''
PARSER.print_help()
print('Commands:')
print('\n'.join(COMMANDS.keys()))
def set_quantum():
'''Set the quantum of a given TC to a number of flits.'''
parser = argparse.ArgumentParser(description='Set quantum of a given TC')
parser.add_argument('tc', type=int)
parser.add_argument('quantum', type=int)
args = parser.parse_args(sys.argv[2:])
NICA.n2h_arbiter.set_quantum(args.tc, args.quantum)
NICA.h2n_arbiter.set_quantum(args.tc, args.quantum)
def status():
'''Set the quantum of a given TC to a number of flits.'''
print('TC\tNet-to-Host Quantum\tHost-to-Net Quantum')
for traffic_class in range(4):
n2h_quantum = NICA.n2h_arbiter.get_quantum(traffic_class)
h2n_quantum = NICA.h2n_arbiter.get_quantum(traffic_class)
print('{}\t{}\t\t\t{}'.format(traffic_class, n2h_quantum, h2n_quantum))
COMMANDS = {
'help': print_help,
'set-quantum': set_quantum,
'status': status,
}
def main():
'''Main entrypoint'''
if not hasattr(ARGS, 'command'):
print('Unrecognized command')
PARSER.print_help()
sys.exit(1)
COMMANDS[ARGS.command]()
if __name__ == '__main__':
main()