Hi,
I have been running into a similar to this problem with nengo-loihi.
I set the probes before the with sim block but I still get an errorstack
The relevant part of my code:
simTime = 10
nengo_loihi.set_defaults()
sim = nengo_loihi.Simulator(model,dt=dt,precompute=True)
board = sim.sims["loihi"].nxsdk_board
probe_conf = PerformanceProbeCondition(tStart=1, tEnd=int(simTime / dt) * 10, bufferSize=1024, binSize=1)
e_probe = board.probe(ProbeParameter.ENERGY, PerformanceProbeCondition(tStart=1, tEnd=int(simTime / dt) * 10, bufferSize=1024, binSize=1))
with sim:
sim.run(simTime)
I am using nengo-loihi 1.0, nxsdk 0.9.9 python3.5, Ubuntu16
Thanks for the help!