-
Notifications
You must be signed in to change notification settings - Fork 101
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
A error will arise when use a slice of a neuron group as post group of a synapse.
This error will not arise when jit is set toFalse.
self.E2E = bp.synapses.Exponential(self.E, self.E[:100], bp.conn.FixedProb(0.02),
output=bp.synouts.COBA(E=0.), g_max=we,
tau=5., method=method)
self.E2I = bp.synapses.Exponential(self.E, self.I[:100], bp.conn.FixedProb(0.02),
output=bp.synouts.COBA(E=0.), g_max=we,
tau=5., method=method)
self.I2E = bp.synapses.Exponential(self.I, self.E[:100], bp.conn.FixedProb(0.02),
output=bp.synouts.COBA(E=-80.), g_max=wi,
tau=10., method=method)
self.I2I = bp.synapses.Exponential(self.I, self.I[:100], bp.conn.FixedProb(0.02),
output=bp.synouts.COBA(E=-80.), g_max=wi,
tau=10., method=method)Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working