bittensor icon indicating copy to clipboard operation
bittensor copied to clipboard

[BIT 584] [feature] btcli register output stats not in place

Open camfairchild opened this issue 3 years ago • 0 comments

Previously the registration statistics were always output in-place, overwriting the old information.
To help with logging performance, this PR adds a flag --subtensor.register.output_in_place <bool>

Setting this flag to false (default true) makes the logging send output to new lines instead.

Screen Shot 2022-09-21 at 12 17 34 PM

This PR also addresses an issue with the flag --subtensor.register.cuda.use_cuda <bool> and --wallet.reregister <bool> where they were parsed as bool(str) instead of strtobool(str), meaning "" == False and "False" == True and, importantly --cuda.use_cuda False was parsed as True

camfairchild avatar Sep 21 '22 17:09 camfairchild