set uc_att and dc_att but they do not remain set #378
Answered
by
jlashner
jennamo
asked this question in
Issues and Debugging
-
relocking then fails because it has issue seen on crate 1 slots 5 and 7 |
Beta Was this translation helpful? Give feedback.
Answered by
jlashner
Aug 11, 2023
Replies: 1 comment 4 replies
-
|
Hi Jenna, Daniel pretty much answered this in slack, but uxm_relock assumes that the attens in the config exist and are correct, so we need to set them in the cfg object. To do that, before running uxm_relock I did this for the other slots ucs = [30, 20, 15, 15, 30, 20, 15, 15]
dcs = [30, 30, 30, 30, 30, 30, 30, 30]
for b in range(8):
cfg.dev.bands{'uc_att'] = ucs[b]
cfg.dev.bands{'uc_att'] = ucs[b]before running: uxm_relock.uxm_relock(S, cfg, ...)You can run |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
jennamo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Hi Jenna, Daniel pretty much answered this in slack, but uxm_relock assumes that the attens in the config exist and are correct, so we need to set them in the cfg object. To do that, before running uxm_relock I did this for the other slots
before running:
You can run
cfg.dev.update_file()if you'd like, or you can just pass the modified cfg object to uxm_relock and it will write the updated cfg to disk (if it completes successfully).