File tree Expand file tree Collapse file tree
knp/backends/cpu/cpu-library/include/knp/backends/cpu-library/impl Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11/* *
22 * @file altai_impl.h
3- * @kaspersky_support Postnikov D .
3+ * @kaspersky_support Vartenkov A .
44 * @date 08.12.2025
55 * @license Apache 2.0
66 * @copyright © 2025 AO Kaspersky Lab
Original file line number Diff line number Diff line change 11/* *
22 * @file blifat_impl.h
3- * @kaspersky_support Postnikov D .
3+ * @kaspersky_support Artiom N .
44 * @date 12.12.2025
55 * @license Apache 2.0
66 * @copyright © 2025 AO Kaspersky Lab
@@ -131,7 +131,7 @@ inline bool calculate_post_impact_single_neuron_state_impl(
131131 neuron.potential_ = neuron.pre_impact_potential_ ;
132132 if (neuron.total_blocking_period_ < 0 )
133133 {
134- neuron.total_blocking_period_ ++ ;
134+ ++ neuron.total_blocking_period_ ;
135135 if (neuron.total_blocking_period_ == 0 )
136136 {
137137 neuron.total_blocking_period_ = std::numeric_limits<int64_t >::max ();
Original file line number Diff line number Diff line change 11/* *
22 * @file blifat_stdp.h
3- * @kaspersky_support Postnikov D .
3+ * @kaspersky_support Artiom N .
44 * @date 12.12.2025
55 * @license Apache 2.0
66 * @copyright © 2025 AO Kaspersky Lab
Original file line number Diff line number Diff line change 11/* *
22 * @file stdp.h
3- * @kaspersky_support Postnikov D .
3+ * @kaspersky_support Artiom N .
44 * @date 08.12.2025
55 * @license Apache 2.0
66 * @copyright © 2025 AO Kaspersky Lab
Original file line number Diff line number Diff line change 11/* *
22 * @file delta_impl.h
3- * @kaspersky_support Postnikov D .
3+ * @kaspersky_support Vartenkov A .
44 * @date 10.12.2025
55 * @license Apache 2.0
66 * @copyright © 2024-2025 AO Kaspersky Lab
Original file line number Diff line number Diff line change 11/* *
22 * @file additive_stdp.h
3- * @kaspersky_support Postnikov D .
3+ * @kaspersky_support Artiom N .
44 * @date 18.12.2025
55 * @license Apache 2.0
66 * @copyright © 2024-2025 AO Kaspersky Lab
@@ -142,7 +142,7 @@ inline void init_projection(
142142 assert (uid == msg.header_ .sender_uid_ );
143143 if (processing_type == ProcessingType::STDPOnly || processing_type == ProcessingType::STDPAndSpike)
144144 {
145- SPDLOG_TRACE (" Added spikes to STDP projection postsynaptic history." );
145+ SPDLOG_TRACE (" Add spikes to STDP projection postsynaptic history." );
146146 append_spike_times (
147147 projection, msg,
148148 [&projection](uint32_t neuron_index)
@@ -151,7 +151,7 @@ inline void init_projection(
151151 }
152152 if (processing_type == ProcessingType::STDPAndSpike)
153153 {
154- SPDLOG_TRACE (" Added spikes to STDP projection presynaptic history." );
154+ SPDLOG_TRACE (" Add spikes to STDP projection presynaptic history." );
155155 append_spike_times (
156156 projection, msg,
157157 [&projection](uint32_t neuron_index)
@@ -160,6 +160,7 @@ inline void init_projection(
160160 }
161161 if (processing_type == ProcessingType::STDPOnly)
162162 {
163+ SPDLOG_TRACE (" STDP-only synapse, remove message from list." );
163164 msg.neuron_indexes_ = {};
164165 }
165166
You can’t perform that action at this time.
0 commit comments