Skip to content

Commit

Permalink
Remove unrelated change
Browse files Browse the repository at this point in the history
  • Loading branch information
rowleya committed Oct 14, 2024
1 parent bf86f23 commit b858cad
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,6 @@ static inline updatable_synapse_t process_plastic_synapse(
} else {
synapse.weight = (weight_t) new_weight;
}
log_info("Weight changed to %d for pre-neuron %u, post-neuron %u",
synapse.weight, pre_spike, s.index);
log_debug(" Weight now %d", synapse.weight);
*changed = 1;

Expand Down Expand Up @@ -200,7 +198,7 @@ static inline void process_weight_update(
const uint32_t *words = (uint32_t *) synapse_row_plastic_controls(fixed_region);
uint32_t pre_spike = plastic_region_address->pre_spike;

log_info("Weight change update for pre-neuron %u", pre_spike);
log_debug("Weight change update for pre-neuron %u", pre_spike);

// Loop through synapses
for (; n_synapses > 0; n_synapses--) {
Expand All @@ -212,7 +210,7 @@ static inline void process_weight_update(
uint32_t neuron_index = synapse_row_sparse_index(word,
synapse_index_mask);

log_info(" Adding weight change %d to post-neuron %u",
log_debug(" Adding weight change %d to post-neuron %u",
weight_change, neuron_index);

// Get post event history of this neuron
Expand Down

0 comments on commit b858cad

Please sign in to comment.