Skip to content

Commit f781147

Browse files
committed
Changed authors for impl files: #121
1 parent 5ff6f49 commit f781147

6 files changed

Lines changed: 10 additions & 9 deletions

File tree

knp/backends/cpu/cpu-library/include/knp/backends/cpu-library/impl/populations/altai/altai_impl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

knp/backends/cpu/cpu-library/include/knp/backends/cpu-library/impl/populations/blifat/blifat_impl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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();

knp/backends/cpu/cpu-library/include/knp/backends/cpu-library/impl/populations/blifat/blifat_stdp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

knp/backends/cpu/cpu-library/include/knp/backends/cpu-library/impl/populations/training/stdp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

knp/backends/cpu/cpu-library/include/knp/backends/cpu-library/impl/projections/delta/delta_impl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

knp/backends/cpu/cpu-library/include/knp/backends/cpu-library/impl/projections/training/stdp/additive_stdp.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

0 commit comments

Comments
 (0)