Repalcement for xlnk.xlnk_reset() in PYNQ v2.7

Hi
Thank you ! I solved it !! del needs to company with gc.collect()

import gc

params_w = np.fromfile("yolo.bin", dtype=np.uint32) 
np.copyto(weight_buffer, params_w)

del params_w
gc.collect()
2 Likes