Skip to content
Snippets Groups Projects

Add selection mechanism in graph

Merged Olivier BICHLER requested to merge select into dev
1 unresolved thread
8 files
+ 219
3
Compare changes
  • Side-by-side
  • Inline
Files
8
+ 31
0
/********************************************************************************
* Copyright (c) 2025 CEA-List
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
********************************************************************************/
#ifndef AIDGE_CORE_DATA_SPIKEGEN_H_
#define AIDGE_CORE_DATA_SPIKEGEN_H_
#include <cstdint>
#include "aidge/data/Tensor.hpp"
namespace Aidge {
/*
* @brief Spike rate encoding of input data
*/
Tensor spikegenRate(std::shared_ptr<Tensor> tensor, std::uint32_t numSteps);
Tensor spikegenLatency(std::shared_ptr<Tensor> tensor);
}
#endif
Loading