API Reference: stadls
-
template<typename
T
>
classstadls
::
DecodeVisitor
- #include <visitors.h>
Fill the visited containers by decoding the specified configuration data.
Each container should implement a
decode
member function that accepts an array of words read from the hardware. The first argument to the function can optionally be the coordinate of the container, should it be required to correctly decode the data. Containers that do not themselves contain data (i.e. containers of containers) can alternatively be tagged viatypedef std::false_type has_local_data;
See also
ReadAddressVisitor, which is used to extract the addresses to read the configuration data from.
Public Functions
-
template<typename
CoordinateT
, typenameContainerT
>
inline voidoperator()
(CoordinateT const &coordinate, ContainerT &config)
Private Functions
-
template<typename
CoordinateT
, typenameContainerT
, typenameDecodeContainerT
, size_tN
>
inline voiddecode
(CoordinateT const&, ContainerT &container, void (DecodeContainerT::* decode)(std::array<value_type, N> const&))
-
template<typename
CoordinateT
, typenameContainerT
, typenameDecodeContainerT
, size_tN
>
inline voiddecode
(CoordinateT const &coordinate, ContainerT &container, void (DecodeContainerT::* decode)(CoordinateT const&, std::array<value_type, N> const&))
-
template<typename
CoordinateT
, typenameContainerT
>
inline autoimpl
(CoordinateT const&, ContainerT const&) -> typename std::enable_if<!ContainerT::has_local_data::value>::type
-
template<typename
CoordinateT
, typenameContainerT
>
inline autoimpl
(CoordinateT const &coordinate, ContainerT &container) -> decltype(&ContainerT::decode, void())
-
template<typename
CoordinateT
, typenameContainerT
>
inline autoimpl
(CoordinateT const &coordinate, ContainerT &container) -> decltype(&ContainerT::template decode<value_type>, void())
-
inline size_t
remaining
() const
-
template<size_t
N
>
inline autoslice
() -> std::array<value_type, N>
-
template<typename
-
template<typename
T
>
classstadls
::
EncodeVisitor
- #include <visitors.h>
Extract hardware configuration data for the visited containers.
Each container should implement an
encode
member function that returns an array of words to be written to the hardware. The first argument to the function can optionally be the coordinate of the container, should it be required to correctly encode the data. Containers that do not themselves contain data (i.e. containers of containers) can alternatively be tagged viatypedef std::false_type has_local_data;
See also
WriteAddressVisitor, which is used to extract the addresses to write the configuration data to.
Public Functions
-
template<typename
CoordinateT
, typenameContainerT
>
inline voidoperator()
(CoordinateT const &coordinate, ContainerT &config)
Private Functions
-
template<typename
CoordinateT
, typenameContainerT
, typenameEncodeContainerT
, size_tN
>
inline voidencode
(CoordinateT const&, ContainerT const &container, std::array<value_type, N> (EncodeContainerT::* encode)() const)
-
template<typename
CoordinateT
, typenameContainerT
, typenameEncodeContainerT
, size_tN
>
inline voidencode
(CoordinateT const &coordinate, ContainerT const &container, std::array<value_type, N> (EncodeContainerT::* encode)(CoordinateT const&) const)
-
template<typename
CoordinateT
, typenameContainerT
>
inline autoimpl
(CoordinateT const&, ContainerT const&) -> typename std::enable_if<!ContainerT::has_local_data::value>::type
-
template<typename
CoordinateT
, typenameContainerT
>
inline autoimpl
(CoordinateT const &coordinate, ContainerT const &container) -> decltype(&ContainerT::encode, void())
-
template<typename
CoordinateT
, typenameContainerT
>
inline autoimpl
(CoordinateT const &coordinate, ContainerT const &container) -> decltype(&ContainerT::template encode<value_type>, void())
-
template<typename
-
template<typename
T
>
structstadls
::
ReadAddressVisitor
- #include <visitors.h>
Extract addresses for reading from hardware for the visited containers.
Each container can provide addresses via a
read_addresses
member function or via aaddresses
member function in case the addresses for reading and writing are the same. Containers that do not themselves contain data to be read from the hardware (i.e. containers of containers) can alternatively be tagged viatypedef std::false_type has_local_data;
Public Functions
-
template<typename
CoordinateT
, typenameContainerT
>
inline voidoperator()
(CoordinateT const &coord, ContainerT&)
Private Functions
-
template<typename
CoordinateT
, typenameContainerT
>
inline autoimpl
(CoordinateT const &coord) -> decltype(ContainerT::addresses(coord), void())
-
template<typename
CoordinateT
, typenameContainerT
>
inline autoimpl
(CoordinateT const &coord) -> decltype(ContainerT::read_addresses(coord), void())
-
template<typename
CoordinateT
, typenameContainerT
>
inline autoimpl
(CoordinateT const &coord) -> decltype(ContainerT::template addresses<typename T::value_type>(coord), void())
-
template<typename
CoordinateT
, typenameContainerT
>
inline autoimpl
(CoordinateT const &coord) -> decltype(ContainerT::template read_addresses<typename T::value_type>(coord), void())
-
template<typename
-
template<typename
PPBType
>
classstadls::vx
::
AbsoluteTimePlaybackProgramBuilder
- #include <absolute_time_playback_program_builder.h>
Public Functions
-
AbsoluteTimePlaybackProgramBuilder
()
-
AbsoluteTimePlaybackProgramBuilder
(AbsoluteTimePlaybackProgramBuilder<PPBType> &&other)
-
AbsoluteTimePlaybackProgramBuilder
(AbsoluteTimePlaybackProgramBuilder<PPBType> const&) = delete
-
~AbsoluteTimePlaybackProgramBuilder
()
-
void
copy
(AbsoluteTimePlaybackProgramBuilder<PPBType> const &other) Copy command vector from other absolute_time_playback_program_builder and merge it into command vector from caller.
- Parameters
other – Absolute_time_playback_program_builder to be copied from
-
PPBType
done
() Construct a playback_program_builder with according command queue.
- Returns
Playback_program_builder
-
bool
empty
() const
-
bool
is_write_only
() const
-
void
merge
(AbsoluteTimePlaybackProgramBuilder<PPBType> &&other) Merge other absolute_time_playback_program_builder into caller and empty command vector of other.
- Parameters
other – Absolute_time_playback_program_builder to be merged into caller
-
void
merge
(AbsoluteTimePlaybackProgramBuilder<PPBType> &other) Merge other absolute_time_playback_program_builder into caller and empty command vector of other.
- Parameters
other – Absolute_time_playback_program_builder to be merged into caller
-
AbsoluteTimePlaybackProgramBuilder<PPBType>
operator*
(float const factor) Copy caller scale time of all commands of this copy by certain factor.
- Parameters
factor – Scaling factor
- Returns
Absolute_time_playback_program_builder with scaled command times
-
AbsoluteTimePlaybackProgramBuilder<PPBType> &
operator*=
(float const factor) Scales time of all commands by certain factor.
- Parameters
factor – Scaling factor
-
AbsoluteTimePlaybackProgramBuilder<PPBType>
operator+
(haldls::vx::Timer::Value const offset) const Copy caller and add time offset to all commands of this copy.
- Parameters
offset – Magnitude of time shift in FGPA clock cycles
- Returns
Absolute_time_playback_program_builder with time offset
-
AbsoluteTimePlaybackProgramBuilder<PPBType> &
operator+=
(haldls::vx::Timer::Value const offset) Add a time offset to all commands.
- Parameters
offset – Magnitude of time shift in FGPA clock cycles
-
AbsoluteTimePlaybackProgramBuilder<PPBType> &
operator=
(AbsoluteTimePlaybackProgramBuilder<PPBType> &&other)
-
AbsoluteTimePlaybackProgramContainerTicket
read
(haldls::vx::Timer::Value execTime, haldls::vx::Container::Coordinate const &coord) Add command to read container data from given location.
- Parameters
execTime – Time stamp for FPGA when to execute command
coord – Coordinate value selecting location
- Returns
Ticket for accessing measured data after experiment run
-
void
write
(haldls::vx::Timer::Value execTime, haldls::vx::Container::Coordinate const &coord, haldls::vx::Container const &config) Add command to change given container value at given location.
- Parameters
execTime – Time stamp for FPGA when to execute command
coord – Coordinate value selecting location
config – Container configuration data
-
void
write
(haldls::vx::Timer::Value execTime, haldls::vx::Container::Coordinate const &coord, haldls::vx::Container const &config, haldls::vx::Container const &config_reference) Add command to change given container value at given location.
- Parameters
execTime – Time stamp for FPGA when to execute command
coord – Coordinate value selecting location
config – Container configuration data
config_reference – Reference configuration for differential write
Friends
-
template<typename
BuilderType
>
friend std::ostream &operator<<
(std::ostream &os, AbsoluteTimePlaybackProgramBuilder<BuilderType> const &builder) Print all commands in initial order.
-
-
struct
stadls::vx::AbsoluteTimePlaybackProgramBuilder
::
CommandData
Public Functions
-
CommandData
(CommandData &&other)
-
CommandData
(CommandData const &other)
-
CommandData
(haldls::vx::Timer::Value time, haldls::vx::Container::Coordinate const &coord, haldls::vx::Container const &write_config)
-
CommandData
(haldls::vx::Timer::Value time, haldls::vx::Container::Coordinate const &coord, haldls::vx::Container const &write_config, haldls::vx::Container const &write_config_reference)
-
bool
operator<
(CommandData const &other) const
-
CommandData &
operator=
(CommandData &&other)
-
CommandData &
operator=
(CommandData const &other)
Public Members
-
std::shared_ptr<AbsoluteTimePlaybackProgramContainerTicketStorage>
read_ticket_storage
= nullptr
-
-
class
stadls::vx
::
AbsoluteTimePlaybackProgramContainerTicket
-
Ticket for to-be-available container data corresponding to a read instruction.
Public Functions
-
AbsoluteTimePlaybackProgramContainerTicket
() = default
-
haldls::vx::Container const &
get
() const Get container data if available.
- Throws
std::runtime_error – On container data not available yet
- Returns
Container data
-
haldls::vx::Container::Coordinate const &
get_coordinate
() const Get coordinate corresponding to location of (to be) read container data.
- Returns
Coordinate value
-
haldls::vx::FPGATime
get_fpga_time
() const Get FPGA executor timestamp of last container response if time annotation is enabled.
If time annotation is not enabled, get message count since last time annotation or from the beginning of the response stream.
- Returns
FPGATime value
-
bool
valid
() const Get whether container data is available.
- Returns
Boolean value
Private Functions
Private Members
-
std::shared_ptr<AbsoluteTimePlaybackProgramContainerTicketStorage>
ticket_storage
= nullptr
Friends
- friend class AbsoluteTimePlaybackProgramBuilder
-
-
struct
stadls::vx
::
AbsoluteTimePlaybackProgramContainerTicketStorage
-
Public Members
-
std::optional<ContainerTicket>
container_ticket
= std::nullopt
-
std::optional<ContainerTicket>
-
class
stadls::vx
::
ContainerTicket
- #include <container_ticket.h>
Ticket for to-be-available container data corresponding to a read instruction.
Public Functions
-
ContainerTicket
() = default
-
ContainerTicket
(ContainerTicket &&other) = default
-
ContainerTicket
(ContainerTicket const &other)
-
haldls::vx::Container const &
get
() const Get container data if available.
Returns constant reference to owned container instance.
- Throws
std::runtime_error – On container data not available yet
- Returns
Container data
-
haldls::vx::Container::Coordinate const &
get_coordinate
() const Get coordinate corresponding to location of (to-be) read container data.
Returns constant reference to owned coordinate instance.
- Returns
Coordinate value
-
haldls::vx::FPGATime
get_fpga_time
() const Get FPGA executor timestamp of last container response if time annotation is enabled.
If time annotation is not enabled, get message count since last time annotation or from the beginning of the response stream.
- Returns
FPGATime value
-
ContainerTicket &
operator=
(ContainerTicket &&other) = default
-
ContainerTicket &
operator=
(ContainerTicket const &other)
-
bool
valid
() const Get whether container data is available.
- Returns
Boolean value
Private Types
-
std::variant<#define PLAYBACK_CONTAINER(Name, Type) #define LAST_PLAYBACK_CONTAINER(Name, Type) > ticket_impl_type
Private Functions
Private Members
-
ticket_impl_type
m_ticket_impl
Friends
- friend class detail::PlaybackProgramBuilderAdapterImpl
-
-
template<typename
ContainerT
, typename = void>
structcontainer_supports_empty_coordinate
: public std::true_type - #include <supports_empty.h>
-
template<typename
ContainerT
>
structcontainer_supports_empty_coordinate
<ContainerT, typename boost::enable_if_has_type<typename ContainerT::supports_empty_coordinate>::type> : public ContainerT::supports_empty_coordinate - #include <supports_empty.h>
-
struct
stadls::vx::detail
::
DummyVisitor
- #include <supports_empty.h>
Public Functions
-
template<typename
ContainerT
, typenameCoordinateT
>
inline voidoperator()
(CoordinateT const&, ContainerT const&)
-
template<typename
-
template<typename
DoneType
>
classstadls::vx::detail
::
Dumper
- #include <dumper.h>
Dumper implements an interface derived from fisch::vx::PlaybackProgramBuilder.
However, it does work on haldls container/halco coordinate pairs instead of fisch containers. Reads are not supported as there is currently no application; writes are collected into a std container holding coordinate/container pairs. The std container is returned by done().
Public Functions
-
Dumper
() = default Default constructor.
-
~Dumper
() = default Destructor.
-
void
block_until
(haldls::vx::BlockUntil::Coordinate const &coord, haldls::vx::BlockUntil const &condition) Add instruction to block execution until specified condition is satisfied.
- Parameters
coord – Coordinate for which to block
condition – Condition to block execution for until satisfaction
-
void
copy_back
(Dumper const &other) Copy other Dumper to the end of this instance.
The copied-from builder is untouched during the process.
- Throws
std::runtime_error – On other builder not being write only
- Parameters
other – Builder to copy to this instance at the back
-
done_type
done
() Return ordered list of write coordinate-container pairs.
- Returns
Ordered list of writes of coordinate-container pairs.
-
bool
empty
() const Get whether builder is empty, i.e.
no instructions are embodied.
- Returns
Boolean value
-
void
merge_back
(Dumper &other) Merge other Dumper to the end of this instance.
The moved-from builder is emptied during the process.
- Parameters
other – Builder to move to this instance at the back
-
void
merge_front
(Dumper &other) Merge other PlaybackProgramBuilder to the beginning of this builder instance.
The moved-from builder is emptied during the process.
- Parameters
other – Builder to move to this instance at the front
-
ContainerTicket
read
(haldls::vx::Container::Coordinate const &coord) We do not support read and throw at runtime.
Private Functions
-
-
template<typename
BuilderStorage
, typenameDoneType
>
classstadls::vx::detail
::
PlaybackProgramBuilderAdapter
- #include <playback_program_builder.h>
Sequential PlaybackProgram builder.
Public Types
-
typedef BuilderStorage
Builder
Public Functions
-
PlaybackProgramBuilderAdapter
() Construct builder.
-
PlaybackProgramBuilderAdapter
(PlaybackProgramBuilderAdapter &&other)
-
PlaybackProgramBuilderAdapter
(PlaybackProgramBuilderAdapter const&) = delete
-
~PlaybackProgramBuilderAdapter
()
-
void
block_until
(haldls::vx::BlockUntil::Coordinate const &coord, haldls::vx::BlockUntil const &condition) Add instruction to block execution until specified condition is satisfied.
- Parameters
coord – Coordinate for which to block
condition – Condition to block execution for until satisfaction
-
void
copy_back
(BuilderStorage const &other) Copy BuilderStorage to the end of this builder instance.
The copied-from storage is untouched during the process.
- Throws
std::runtime_error – On other builder not being write only
- Parameters
other – BuilderStorage to copy to this instance at the back
-
void
copy_back
(PlaybackProgramBuilderAdapter const &other) Copy other PlaybackProgramBuilderAdapter to the end of this builder instance.
The copied-from builder is untouched during the process.
- Throws
std::runtime_error – On other builder not being write only
- Parameters
other – Builder to copy to this instance at the back
-
DoneType
done
() Close PlaybackProgram build process and return executable program.
- Returns
Executable PlaybackProgram
-
bool
empty
() const Get whether builder is empty, i.e.
no instructions are embodied.
- Returns
Boolean value
-
bool
is_write_only
() const Get whether builder only stores write instructions.
- Returns
Boolean value
-
void
merge_back
(BuilderStorage &&other) Merge BuilderStorage to the end of this builder instance.
The moved-from storage is emptied during the process.
- Parameters
other – BuilderStorage to move to this instance at the back
-
void
merge_back
(BuilderStorage &other) Merge BuilderStorage to the end of this builder instance.
The moved-from storage is emptied during the process.
- Parameters
other – BuilderStorage to move to this instance at the back
-
void
merge_back
(PlaybackProgramBuilderAdapter &&other) Merge other PlaybackProgramBuilderAdapter to the end of this builder instance.
The moved-from builder is emptied during the process.
- Parameters
other – Builder to move to this instance at the back
-
void
merge_back
(PlaybackProgramBuilderAdapter &other) Merge other PlaybackProgramBuilderAdapter to the end of this builder instance.
The moved-from builder is emptied during the process.
- Parameters
other – Builder to move to this instance at the back
-
PlaybackProgramBuilderAdapter &
operator=
(PlaybackProgramBuilderAdapter &&other)
-
ContainerTicket
read
(haldls::vx::Container::Coordinate const &coord) Add instructions to read container data from given location.
- Parameters
coord – Coordinate value selecting location
-
ContainerTicket
read
(haldls::vx::Container::Coordinate const &coord, haldls::vx::Backend backend) Add instructions to read container data from given location.
- Parameters
coord – Coordinate value selecting location
backend – Backend selection
-
size_t
size_from_fpga
() const Get number of expected UT messages from FPGA.
- Returns
Size
-
size_t
size_to_fpga
() const Get number of UT messages to FPGA.
- Returns
Size
-
void
write
(haldls::vx::Container::Coordinate const &coord, haldls::vx::Container const &config) Add instructions to write given container to given location.
- Parameters
coord – Coordinate value selecting location
config – Container configuration data
-
void
write
(haldls::vx::Container::Coordinate const &coord, haldls::vx::Container const &config, haldls::vx::Backend backend) Add instructions to write given container to given location.
- Parameters
coord – Coordinate value selecting location
config – Container configuration data
backend – Backend selection
-
void
write
(haldls::vx::Container::Coordinate const &coord, haldls::vx::Container const &config, haldls::vx::Container const &config_reference) Add instructions to write given container to given location.
- Parameters
coord – Coordinate value selecting location
config – Container configuration data
config_reference – Reference configuration for differential write
-
void
write
(haldls::vx::Container::Coordinate const &coord, haldls::vx::Container const &config, haldls::vx::Container const &config_reference, haldls::vx::Backend backend) Add instructions to write given container to given location.
- Parameters
coord – Coordinate value selecting location
config – Container configuration data
config_reference – Reference configuration for differential write
backend – Backend selection
Private Types
-
using
Impl
= detail::PlaybackProgramBuilderAdapterImpl<BuilderStorage, DoneType>
Private Functions
-
typedef BuilderStorage
-
template<typename, typename>
classPlaybackProgramBuilderAdapterImpl
-
template<typename
Builder
, typenameResult
>
structstadls::vx
::
PlaybackGeneratorReturn
- #include <playback_generator.h>
Return type of generate() call on playback sequence.
Allows named access to generated PlaybackProgramBuilder and to be specified Result value.
- Template Parameters
Result – Result data structure, e.g. read-ticket data
-
class
stadls::vx
::
PlaybackProgram
- #include <playback_program.h>
Sequential stream of executable instructions for the executor and result-container for event response data during execution.
Public Types
-
typedef std::vector<haldls::vx::HighspeedLinkNotification>
highspeed_link_notifications_type
-
typedef fisch::vx::PlaybackProgram::madc_sample_pack_counts_type
madc_sample_pack_counts_type
-
typedef std::vector<haldls::vx::MADCSampleFromChip>
madc_samples_type
-
typedef fisch::vx::PlaybackProgram::spike_pack_counts_type
spike_pack_counts_type
-
typedef std::vector<haldls::vx::SpikeFromChip>
spikes_type
Public Functions
-
PlaybackProgram
() Default constructor.
-
bool
empty
() const Get whether program is empty, i.e.
does not feature any commands to be sent.
- Returns
Boolean value
-
highspeed_link_notifications_type
get_highspeed_link_notifications
() const Get vector of time-annotated highspeed-link notifications.
- Returns
Vector of notifications
-
madc_samples_type
get_madc_samples
() const Get vector of time-annotated MADC sample events.
- Returns
Vector of sample events
-
madc_sample_pack_counts_type const &
get_madc_samples_pack_counts
() const Get number of occurences of MADC sample packing from chip.
- Returns
Array of packing occurences
-
spikes_type
get_spikes
() const Get vector of time-annotated spike events.
- Returns
Vector of spike events
-
spike_pack_counts_type const &
get_spikes_pack_counts
() const Get number of occurences of spike packing from chip.
- Returns
Array of packing occurences
-
std::unordered_set<hxcomm::vx::Target> const &
get_unsupported_targets
() const Get set of unsupported targets.
- Returns
Set of target restictions
-
bool
operator!=
(PlaybackProgram const &other) const
-
bool
operator==
(PlaybackProgram const &other) const
Private Functions
Construct PlaybackProgram from implementation.
Used in PlaybackProgramBuilderAdapter
- Parameters
program_impl – Implementation playback program
unsupported_targets – Build-imposed restrictions on targets
-
template<typename
Archive
>
friend voidserialize
(Archive &ar, PlaybackProgram&, uint32_t) Get spikes as 2D matrix, i.e.
numpy array(s).
Note
We expose the data as a flat numpy DTYPE with the same data layout as the underlying SpikeFromChipDType type. Get MADC samples as 2D matrix, i.e. numpy array(s).
Note
We expose the data as a flat numpy DTYPE with the same data layout as the underlying MADCSampleFromChipDType type.
Friends
-
friend std::ostream &
operator<<
(std::ostream &os, PlaybackProgram const &program)
-
template<typename
Connection
>
friend RunTimeInforun
(Connection&, PlaybackProgram&) Transfer and execute the given playback program and fetch results.
- Template Parameters
Connection – Connection type to be used for running the program
- Parameters
connection – Connection instance to be used for running the program
program – PlaybackProgram to run
- Returns
Run time information
- friend class stadls::vx::detail::PlaybackProgramBuilderAdapter
- friend class stadls::vx::detail::PlaybackProgramBuilderAdapterImpl
-
typedef std::vector<haldls::vx::HighspeedLinkNotification>
-
class
stadls::vx
::
ReinitStackEntry
- #include <reinit_stack_entry.h>
Public Functions
-
ReinitStackEntry
() = delete
-
template<typename
Connection
>ReinitStackEntry
(Connection &connection)
-
ReinitStackEntry
(ReinitStackEntry&&) = default
-
ReinitStackEntry
(ReinitStackEntry const&) = delete
-
~ReinitStackEntry
()
-
void
enforce
()
-
ReinitStackEntry &
operator=
(ReinitStackEntry&&) = default
-
void
pop
()
-
void
set
(PlaybackProgram const &pbmem_request, std::optional<PlaybackProgram> const &pbmem_snapshot = std::nullopt, bool enforce = true) Set and maybe enforce reinit stack entry value.
- Parameters
pbmem_request – Playback program to be executed once a reinit is required.
pbmem_snapshot – Playback program to be executed once the exclusive access to the hardware is relinquished. All read commands within this program are translated to writes and replace the pbmem_request for future reinit operations. This is to be used to snapshot (parts of) the current state of the hardware prior to releasing the exclusive access to other users and be able to reapply this state at the next reinit operation without need for client-side synchronisation and transform of the read-out data. Currently only Omnibus read -> write operations are supported.
enforce – Whether to directly apply the pbmem_request or only apply it during the next reinit.
-
-
template<typename
CoordinateT
>
structstadls::vx::v3
::
CoordinateToContainer
- #include <coordinate_to_container.h>
Given a coordinate type, resolves the corresponding unique container type.
- Template Parameters
CoordinateT – Coordinate type to resolve container type for
Public Types
-
typedef hate::index_type_list_by_integer<hate::index_type_list_by_type<CoordinateT, coordinate_list>::value, container_list>::type
type
-
class
stadls::vx::v3::detail
::
InitGenerator
- #include <init_generator.h>
Subclassed by stadls::vx::v3::DigitalInit, stadls::vx::v3::ExperimentInit
Public Types
-
typedef halco::common::typed_array<haldls::vx::ADPLL, halco::hicann_dls::vx::v3::ADPLLOnDLS>
adplls_type
ADPLL setting.
-
typedef v3::PlaybackProgramBuilder
Builder
Builder typedef (e.g.
for usage in generators).
-
typedef halco::common::typed_array<haldls::vx::v3::CapMemBlockConfig, halco::hicann_dls::vx::v3::CapMemBlockConfigOnDLS>
capmem_block_config_type
Initialize the CapMem with usable default values.
Public Functions
-
InitGenerator
() Default constructor.
Public Members
-
adplls_type
adplls
-
capmem_block_config_type
capmem_block_config
-
capmem_block_type
capmem_config
-
lola::vx::DACChannelBlock
dac_channel_block
DAC channel configs on xBoard.
-
lola::vx::DACControlBlock
dac_control_block
DAC control config on xBoard.
-
bool
enable_capmem
Select whether the CapMem should be enabled.
Note
The CapMem initialization requires highspeed access.
-
bool
enable_highspeed_link
Enable Highspeed connection.
Note
Disabling this discards all highspeed related configuration.
-
bool
enable_xboard
Enable xBoard DAC and shift register configuration.
Disabling this allows to discard unnecessary configuration when simulating.
Note
Disabling this discards all xBoard configuration
-
haldls::vx::EventRecordingConfig
event_recording
Event recording config, defaults to active recording.
-
struct stadls::vx::v3::detail::InitGenerator::HighspeedLink
highspeed_link
-
haldls::vx::InstructionTimeoutConfig
instruction_timeout
Instruction timeout duration on FPGA config.
-
haldls::vx::JTAGClockScaler
jtag_clock_scaler
JTAG clock scaler setting.
-
lola::vx::v3::MemoryTiming
memory_timing
Memory timing settings.
-
haldls::vx::v3::PLLClockOutputBlock
pll_clock_output_block
PLL clock output block setting.
-
haldls::vx::v3::ReferenceGeneratorConfig
reference_generator_config
Generate usable reference current for the CapMem.
-
haldls::vx::ShiftRegister
shift_register
Shift register on xBoard config.
-
haldls::vx::SynapseBiasSelection
synapse_bias_selection
Select internal bias currents for synapses.
Protected Functions
-
PlaybackGeneratorReturn<Result>
generate
() const Generate PlaybackProgramBuilder.
- Returns
PlaybackGeneratorReturn instance with sequence embodied and specified Result value
Friends
-
friend std::ostream &
operator<<
(std::ostream &os, InitGenerator const &sequence)
-
friend auto
generate
(InitGenerator const&)
-
typedef halco::common::typed_array<haldls::vx::ADPLL, halco::hicann_dls::vx::v3::ADPLLOnDLS>
-
struct
stadls::vx::v3::detail::InitGenerator
::
HighspeedLink
- #include <init_generator.h>
Public Types
-
typedef halco::common::typed_array<haldls::vx::PhyConfigChip, halco::hicann_dls::vx::v3::PhyConfigChipOnDLS>
phy_configs_chip_type
Highspeed-link PHY settings for the chip side.
-
typedef halco::common::typed_array<haldls::vx::PhyConfigFPGA, halco::hicann_dls::vx::v3::PhyConfigFPGAOnDLS>
phy_configs_fpga_type
Highspeed-link PHY settings for the FPGA side.
Public Functions
-
HighspeedLink
() Default constructor.
Public Members
-
haldls::vx::CommonPhyConfigChip
common_phy_config_chip
Highspeed-link PHY enable values for the chip side.
-
haldls::vx::CommonPhyConfigFPGA
common_phy_config_fpga
Highspeed-link PHY enable values for the FPGA side.
-
bool
enable_systime
Enable systime synchronization.
Note
Disabling this discards all systime related configuration, i.e. setting the SystimeSyncBase and initiating the time hand-shake between the chip and the FPGA. This leads to no time annotation being present in the response stream.
-
phy_configs_chip_type
phy_configs_chip
-
phy_configs_fpga_type
phy_configs_fpga
-
haldls::vx::SystimeSyncBase
systime_sync_base
Systime synchronization base value.
-
typedef halco::common::typed_array<haldls::vx::PhyConfigChip, halco::hicann_dls::vx::v3::PhyConfigChipOnDLS>
-
class
stadls::vx::v3
::
DigitalInit
: public stadls::vx::v3::detail::InitGenerator - #include <init_generator.h>
Generator for initialization of the chip up to digital communication.
Uses the default InitGenerator() to establish digital communication to the chip.
Public Types
-
typedef halco::common::typed_array<haldls::vx::ADPLL, halco::hicann_dls::vx::v3::ADPLLOnDLS>
adplls_type
ADPLL setting.
-
typedef v3::PlaybackProgramBuilder
Builder
Builder typedef (e.g.
for usage in generators).
-
typedef halco::common::typed_array<haldls::vx::v3::CapMemBlockConfig, halco::hicann_dls::vx::v3::CapMemBlockConfigOnDLS>
capmem_block_config_type
Initialize the CapMem with usable default values.
Public Functions
-
DigitalInit
() Default constructor.
Public Members
-
adplls_type
adplls
-
capmem_block_config_type
capmem_block_config
-
capmem_block_type
capmem_config
-
lola::vx::DACChannelBlock
dac_channel_block
DAC channel configs on xBoard.
-
lola::vx::DACControlBlock
dac_control_block
DAC control config on xBoard.
-
bool
enable_capmem
Select whether the CapMem should be enabled.
Note
The CapMem initialization requires highspeed access.
-
bool
enable_highspeed_link
Enable Highspeed connection.
Note
Disabling this discards all highspeed related configuration.
-
bool
enable_xboard
Enable xBoard DAC and shift register configuration.
Disabling this allows to discard unnecessary configuration when simulating.
Note
Disabling this discards all xBoard configuration
-
haldls::vx::EventRecordingConfig
event_recording
Event recording config, defaults to active recording.
-
struct stadls::vx::v3::detail::InitGenerator::HighspeedLink
highspeed_link
-
haldls::vx::InstructionTimeoutConfig
instruction_timeout
Instruction timeout duration on FPGA config.
-
haldls::vx::JTAGClockScaler
jtag_clock_scaler
JTAG clock scaler setting.
-
lola::vx::v3::MemoryTiming
memory_timing
Memory timing settings.
-
haldls::vx::v3::PLLClockOutputBlock
pll_clock_output_block
PLL clock output block setting.
-
haldls::vx::v3::ReferenceGeneratorConfig
reference_generator_config
Generate usable reference current for the CapMem.
-
haldls::vx::ShiftRegister
shift_register
Shift register on xBoard config.
-
haldls::vx::SynapseBiasSelection
synapse_bias_selection
Select internal bias currents for synapses.
Protected Functions
-
PlaybackGeneratorReturn<Result>
generate
() const Generate PlaybackProgramBuilder.
- Returns
PlaybackGeneratorReturn instance with sequence embodied and specified Result value
Friends
-
friend auto
generate
(DigitalInit const&)
-
typedef halco::common::typed_array<haldls::vx::ADPLL, halco::hicann_dls::vx::v3::ADPLLOnDLS>
-
struct
stadls::vx::v3
::
DumperDone
- #include <dumperdone.h>
Public Types
Public Functions
-
DumperDone
() = default
-
DumperDone
(DumperDone&&) = default
-
DumperDone
(DumperDone const&) = delete
-
bool
operator!=
(DumperDone const &other) const
-
DumperDone &
operator=
(DumperDone&&) = default
-
DumperDone &
operator=
(DumperDone const&) = delete
-
bool
operator==
(DumperDone const &other) const
-
void
remove_block_until
() Remove entries which contain block_until commands.
-
void
squash
() For each coordinate value only retain the latest command.
Order between different container types is not preserved.
Public Members
-
values_type
values
-
-
class
stadls::vx::v3
::
ExperimentInit
: public stadls::vx::v3::detail::InitGenerator - #include <init_generator.h>
Generator for initialization required for typical experiments.
Uses the InitGenerator() to establish digital communication to the chip, and further initializes the CapMem in a working state and selects internal bias currents for synapses.
Public Types
-
typedef halco::common::typed_array<haldls::vx::ADPLL, halco::hicann_dls::vx::v3::ADPLLOnDLS>
adplls_type
ADPLL setting.
-
typedef PlaybackProgramBuilder
Builder
Builder typedef (e.g.
for usage in generators).
-
typedef halco::common::typed_array<haldls::vx::v3::CapMemBlockConfig, halco::hicann_dls::vx::v3::CapMemBlockConfigOnDLS>
capmem_block_config_type
Initialize the CapMem with usable default values.
-
typedef halco::common::typed_array<haldls::vx::v3::CapMemBlock, halco::hicann_dls::vx::v3::CapMemBlockOnDLS>
capmem_block_type
Set initial CapMem config.
By default, a value of zero is written to all cells.
-
typedef halco::common::typed_array<haldls::vx::v3::ColumnCorrelationQuad, halco::hicann_dls::vx::v3::ColumnCorrelationQuadOnDLS>
column_correlation_quad_type
Set ColumnCorrelationQuad/Switch connections.
-
typedef halco::common::typed_array<haldls::vx::v3::ColumnCurrentQuad, halco::hicann_dls::vx::v3::ColumnCurrentQuadOnDLS>
column_current_quad_type
Set ColumnCurrentQuad/Switch connections.
-
typedef halco::common::typed_array<haldls::vx::v3::CommonCorrelationConfig, halco::hicann_dls::vx::v3::CommonCorrelationConfigOnDLS>
common_correlation_config_type
Set common correlation config.
-
typedef halco::common::typed_array<haldls::vx::CommonNeuronBackendConfig, halco::hicann_dls::vx::v3::CommonNeuronBackendConfigOnDLS>
common_neuron_backend_config_type
Set common neuron backend with clocks enabled.
If clocks are disabled, it may behave strangely.
-
typedef detail::InitGenerator::Result
Result
Public Functions
-
ExperimentInit
() Default constructor.
Public Members
-
adplls_type
adplls
-
capmem_block_config_type
capmem_block_config
-
capmem_block_type
capmem_config
-
column_correlation_quad_type
column_correlation_quad_config
-
column_current_quad_type
column_current_quad_config
-
common_correlation_config_type
common_correlation_config
-
common_neuron_backend_config_type
common_neuron_backend_config
-
lola::vx::DACChannelBlock
dac_channel_block
DAC channel configs on xBoard.
-
lola::vx::DACControlBlock
dac_control_block
DAC control config on xBoard.
-
bool
enable_capmem
Select whether the CapMem should be enabled.
Note
The CapMem initialization requires highspeed access.
-
bool
enable_highspeed_link
Enable Highspeed connection.
Note
Disabling this discards all highspeed related configuration.
-
bool
enable_xboard
Enable xBoard DAC and shift register configuration.
Disabling this allows to discard unnecessary configuration when simulating.
Note
Disabling this discards all xBoard configuration
-
haldls::vx::EventRecordingConfig
event_recording
Event recording config, defaults to active recording.
-
struct stadls::vx::v3::detail::InitGenerator::HighspeedLink
highspeed_link
-
haldls::vx::InstructionTimeoutConfig
instruction_timeout
Instruction timeout duration on FPGA config.
-
haldls::vx::JTAGClockScaler
jtag_clock_scaler
JTAG clock scaler setting.
-
lola::vx::v3::MemoryTiming
memory_timing
Memory timing settings.
-
haldls::vx::v3::PLLClockOutputBlock
pll_clock_output_block
PLL clock output block setting.
-
haldls::vx::v3::ReferenceGeneratorConfig
reference_generator_config
Generate usable reference current for the CapMem.
-
haldls::vx::ShiftRegister
shift_register
Shift register on xBoard config.
-
haldls::vx::SynapseBiasSelection
synapse_bias_selection
Select internal bias currents for synapses.
Private Functions
-
PlaybackGeneratorReturn<Result>
generate
() const Generate PlaybackProgramBuilder.
- Returns
PlaybackGeneratorReturn instance with sequence embodied and specified Result value
Friends
-
friend auto
generate
(ExperimentInit const&)
-
typedef halco::common::typed_array<haldls::vx::ADPLL, halco::hicann_dls::vx::v3::ADPLLOnDLS>
-
template<typename
CoordinateT
>
structstadls::vx::v4
::
CoordinateToContainer
- #include <coordinate_to_container.h>
Given a coordinate type, resolves the corresponding unique container type.
- Template Parameters
CoordinateT – Coordinate type to resolve container type for
Public Types
-
typedef hate::index_type_list_by_integer<hate::index_type_list_by_type<CoordinateT, coordinate_list>::value, container_list>::type
type
-
class
stadls::vx::v4::detail
::
InitGenerator
- #include <init_generator.h>
Subclassed by stadls::vx::v4::DigitalInit, stadls::vx::v4::ExperimentInit
Public Types
-
typedef halco::common::typed_array<haldls::vx::ADPLL, halco::hicann_dls::vx::v4::ADPLLOnDLS>
adplls_type
ADPLL setting.
-
typedef v4::PlaybackProgramBuilder
Builder
Builder typedef (e.g.
for usage in generators).
-
typedef halco::common::typed_array<haldls::vx::v4::CapMemBlockConfig, halco::hicann_dls::vx::v4::CapMemBlockConfigOnDLS>
capmem_block_config_type
Initialize the CapMem with usable default values.
Public Functions
-
InitGenerator
() Default constructor.
Public Members
-
adplls_type
adplls
-
capmem_block_config_type
capmem_block_config
-
capmem_block_type
capmem_config
-
lola::vx::DACChannelBlock
dac_channel_block
DAC channel configs on xBoard.
-
lola::vx::DACControlBlock
dac_control_block
DAC control config on xBoard.
-
bool
enable_capmem
Select whether the CapMem should be enabled.
Note
The CapMem initialization requires highspeed access.
-
bool
enable_highspeed_link
Enable Highspeed connection.
Note
Disabling this discards all highspeed related configuration.
-
bool
enable_xboard
Enable xBoard DAC and shift register configuration.
Disabling this allows to discard unnecessary configuration when simulating.
Note
Disabling this discards all xBoard configuration
-
haldls::vx::EventRecordingConfig
event_recording
Event recording config, defaults to active recording.
-
struct stadls::vx::v4::detail::InitGenerator::HighspeedLink
highspeed_link
-
haldls::vx::InstructionTimeoutConfig
instruction_timeout
Instruction timeout duration on FPGA config.
-
haldls::vx::JTAGClockScaler
jtag_clock_scaler
JTAG clock scaler setting.
-
lola::vx::v4::MemoryTiming
memory_timing
Memory timing settings.
-
haldls::vx::v4::PLLClockOutputBlock
pll_clock_output_block
PLL clock output block setting.
-
haldls::vx::v4::ReferenceGeneratorConfig
reference_generator_config
Generate usable reference current for the CapMem.
-
haldls::vx::ShiftRegister
shift_register
Shift register on xBoard config.
-
haldls::vx::SynapseBiasSelection
synapse_bias_selection
Select internal bias currents for synapses.
Protected Functions
-
PlaybackGeneratorReturn<Result>
generate
() const Generate PlaybackProgramBuilder.
- Returns
PlaybackGeneratorReturn instance with sequence embodied and specified Result value
Friends
-
friend std::ostream &
operator<<
(std::ostream &os, InitGenerator const &sequence)
-
friend auto
generate
(InitGenerator const&)
-
typedef halco::common::typed_array<haldls::vx::ADPLL, halco::hicann_dls::vx::v4::ADPLLOnDLS>
-
struct
stadls::vx::v4::detail::InitGenerator
::
HighspeedLink
- #include <init_generator.h>
Public Types
-
typedef halco::common::typed_array<haldls::vx::PhyConfigChip, halco::hicann_dls::vx::v4::PhyConfigChipOnDLS>
phy_configs_chip_type
Highspeed-link PHY settings for the chip side.
-
typedef halco::common::typed_array<haldls::vx::PhyConfigFPGA, halco::hicann_dls::vx::v4::PhyConfigFPGAOnDLS>
phy_configs_fpga_type
Highspeed-link PHY settings for the FPGA side.
Public Functions
-
HighspeedLink
() Default constructor.
Public Members
-
haldls::vx::CommonPhyConfigChip
common_phy_config_chip
Highspeed-link PHY enable values for the chip side.
-
haldls::vx::CommonPhyConfigFPGA
common_phy_config_fpga
Highspeed-link PHY enable values for the FPGA side.
-
bool
enable_systime
Enable systime synchronization.
Note
Disabling this discards all systime related configuration, i.e. setting the SystimeSyncBase and initiating the time hand-shake between the chip and the FPGA. This leads to no time annotation being present in the response stream.
-
phy_configs_chip_type
phy_configs_chip
-
phy_configs_fpga_type
phy_configs_fpga
-
haldls::vx::SystimeSyncBase
systime_sync_base
Systime synchronization base value.
-
typedef halco::common::typed_array<haldls::vx::PhyConfigChip, halco::hicann_dls::vx::v4::PhyConfigChipOnDLS>
-
class
stadls::vx::v4
::
DigitalInit
: public stadls::vx::v4::detail::InitGenerator - #include <init_generator.h>
Generator for initialization of the chip up to digital communication.
Uses the default InitGenerator() to establish digital communication to the chip.
Public Types
-
typedef halco::common::typed_array<haldls::vx::ADPLL, halco::hicann_dls::vx::v4::ADPLLOnDLS>
adplls_type
ADPLL setting.
-
typedef v4::PlaybackProgramBuilder
Builder
Builder typedef (e.g.
for usage in generators).
-
typedef halco::common::typed_array<haldls::vx::v4::CapMemBlockConfig, halco::hicann_dls::vx::v4::CapMemBlockConfigOnDLS>
capmem_block_config_type
Initialize the CapMem with usable default values.
Public Functions
-
DigitalInit
() Default constructor.
Public Members
-
adplls_type
adplls
-
capmem_block_config_type
capmem_block_config
-
capmem_block_type
capmem_config
-
lola::vx::DACChannelBlock
dac_channel_block
DAC channel configs on xBoard.
-
lola::vx::DACControlBlock
dac_control_block
DAC control config on xBoard.
-
bool
enable_capmem
Select whether the CapMem should be enabled.
Note
The CapMem initialization requires highspeed access.
-
bool
enable_highspeed_link
Enable Highspeed connection.
Note
Disabling this discards all highspeed related configuration.
-
bool
enable_xboard
Enable xBoard DAC and shift register configuration.
Disabling this allows to discard unnecessary configuration when simulating.
Note
Disabling this discards all xBoard configuration
-
haldls::vx::EventRecordingConfig
event_recording
Event recording config, defaults to active recording.
-
struct stadls::vx::v4::detail::InitGenerator::HighspeedLink
highspeed_link
-
haldls::vx::InstructionTimeoutConfig
instruction_timeout
Instruction timeout duration on FPGA config.
-
haldls::vx::JTAGClockScaler
jtag_clock_scaler
JTAG clock scaler setting.
-
lola::vx::v4::MemoryTiming
memory_timing
Memory timing settings.
-
haldls::vx::v4::PLLClockOutputBlock
pll_clock_output_block
PLL clock output block setting.
-
haldls::vx::v4::ReferenceGeneratorConfig
reference_generator_config
Generate usable reference current for the CapMem.
-
haldls::vx::ShiftRegister
shift_register
Shift register on xBoard config.
-
haldls::vx::SynapseBiasSelection
synapse_bias_selection
Select internal bias currents for synapses.
Protected Functions
-
PlaybackGeneratorReturn<Result>
generate
() const Generate PlaybackProgramBuilder.
- Returns
PlaybackGeneratorReturn instance with sequence embodied and specified Result value
Friends
-
friend auto
generate
(DigitalInit const&)
-
typedef halco::common::typed_array<haldls::vx::ADPLL, halco::hicann_dls::vx::v4::ADPLLOnDLS>
-
struct
stadls::vx::v4
::
DumperDone
- #include <dumperdone.h>
Public Types
Public Functions
-
DumperDone
() = default
-
DumperDone
(DumperDone&&) = default
-
DumperDone
(DumperDone const&) = delete
-
bool
operator!=
(DumperDone const &other) const
-
DumperDone &
operator=
(DumperDone&&) = default
-
DumperDone &
operator=
(DumperDone const&) = delete
-
bool
operator==
(DumperDone const &other) const
-
void
remove_block_until
() Remove entries which contain block_until commands.
-
void
squash
() For each coordinate value only retain the latest command.
Order between different container types is not preserved.
Public Members
-
values_type
values
-
-
class
stadls::vx::v4
::
ExperimentInit
: public stadls::vx::v4::detail::InitGenerator - #include <init_generator.h>
Generator for initialization required for typical experiments.
Uses the InitGenerator() to establish digital communication to the chip, and further initializes the CapMem in a working state and selects internal bias currents for synapses.
Public Types
-
typedef halco::common::typed_array<haldls::vx::ADPLL, halco::hicann_dls::vx::v4::ADPLLOnDLS>
adplls_type
ADPLL setting.
-
typedef PlaybackProgramBuilder
Builder
Builder typedef (e.g.
for usage in generators).
-
typedef halco::common::typed_array<haldls::vx::v4::CapMemBlockConfig, halco::hicann_dls::vx::v4::CapMemBlockConfigOnDLS>
capmem_block_config_type
Initialize the CapMem with usable default values.
-
typedef halco::common::typed_array<haldls::vx::v4::CapMemBlock, halco::hicann_dls::vx::v4::CapMemBlockOnDLS>
capmem_block_type
Set initial CapMem config.
By default, a value of zero is written to all cells.
-
typedef halco::common::typed_array<haldls::vx::v4::ColumnCorrelationQuad, halco::hicann_dls::vx::v4::ColumnCorrelationQuadOnDLS>
column_correlation_quad_type
Set ColumnCorrelationQuad/Switch connections.
-
typedef halco::common::typed_array<haldls::vx::v4::ColumnCurrentQuad, halco::hicann_dls::vx::v4::ColumnCurrentQuadOnDLS>
column_current_quad_type
Set ColumnCurrentQuad/Switch connections.
-
typedef halco::common::typed_array<haldls::vx::v4::CommonCorrelationConfig, halco::hicann_dls::vx::v4::CommonCorrelationConfigOnDLS>
common_correlation_config_type
Set common correlation config.
-
typedef halco::common::typed_array<haldls::vx::CommonNeuronBackendConfig, halco::hicann_dls::vx::v4::CommonNeuronBackendConfigOnDLS>
common_neuron_backend_config_type
Set common neuron backend with clocks enabled.
If clocks are disabled, it may behave strangely.
-
typedef detail::InitGenerator::Result
Result
Public Functions
-
ExperimentInit
() Default constructor.
Public Members
-
adplls_type
adplls
-
capmem_block_config_type
capmem_block_config
-
capmem_block_type
capmem_config
-
column_correlation_quad_type
column_correlation_quad_config
-
column_current_quad_type
column_current_quad_config
-
common_correlation_config_type
common_correlation_config
-
common_neuron_backend_config_type
common_neuron_backend_config
-
lola::vx::DACChannelBlock
dac_channel_block
DAC channel configs on xBoard.
-
lola::vx::DACControlBlock
dac_control_block
DAC control config on xBoard.
-
bool
enable_capmem
Select whether the CapMem should be enabled.
Note
The CapMem initialization requires highspeed access.
-
bool
enable_highspeed_link
Enable Highspeed connection.
Note
Disabling this discards all highspeed related configuration.
-
bool
enable_xboard
Enable xBoard DAC and shift register configuration.
Disabling this allows to discard unnecessary configuration when simulating.
Note
Disabling this discards all xBoard configuration
-
haldls::vx::EventRecordingConfig
event_recording
Event recording config, defaults to active recording.
-
struct stadls::vx::v4::detail::InitGenerator::HighspeedLink
highspeed_link
-
haldls::vx::InstructionTimeoutConfig
instruction_timeout
Instruction timeout duration on FPGA config.
-
haldls::vx::JTAGClockScaler
jtag_clock_scaler
JTAG clock scaler setting.
-
lola::vx::v4::MemoryTiming
memory_timing
Memory timing settings.
-
haldls::vx::v4::PLLClockOutputBlock
pll_clock_output_block
PLL clock output block setting.
-
haldls::vx::v4::ReferenceGeneratorConfig
reference_generator_config
Generate usable reference current for the CapMem.
-
haldls::vx::ShiftRegister
shift_register
Shift register on xBoard config.
-
haldls::vx::SynapseBiasSelection
synapse_bias_selection
Select internal bias currents for synapses.
Private Functions
-
PlaybackGeneratorReturn<Result>
generate
() const Generate PlaybackProgramBuilder.
- Returns
PlaybackGeneratorReturn instance with sequence embodied and specified Result value
Friends
-
friend auto
generate
(ExperimentInit const&)
-
typedef halco::common::typed_array<haldls::vx::ADPLL, halco::hicann_dls::vx::v4::ADPLLOnDLS>
-
template<typename
T
>
structstadls
::
WriteAddressVisitor
- #include <visitors.h>
Extract addresses for writing to hardware for the visited containers.
Each container can provide addresses via a
write_addresses
member function or via aaddresses
member function in case the addresses for reading and writing are the same. Containers that do not themselves contain data to be written to the hardware (i.e. containers of containers) can alternatively be tagged viatypedef std::false_type has_local_data;
Public Functions
-
template<typename
CoordinateT
, typenameContainerT
>
inline voidoperator()
(CoordinateT const &coord, ContainerT&)
Private Functions
-
template<typename
CoordinateT
, typenameContainerT
>
inline autoimpl
(CoordinateT const &coord) -> decltype(ContainerT::addresses(coord), void())
-
template<typename
CoordinateT
, typenameContainerT
>
inline autoimpl
(CoordinateT const &coord) -> decltype(ContainerT::template addresses<typename T::value_type>(coord), void())
-
template<typename
CoordinateT
, typenameContainerT
>
inline autoimpl
(CoordinateT const &coord) -> decltype(ContainerT::template write_addresses<typename T::value_type>(coord), void())
-
template<typename
CoordinateT
, typenameContainerT
>
inline autoimpl
(CoordinateT const &coord) -> decltype(ContainerT::write_addresses(coord), void())
-
template<typename
-
namespace
cereal
Functions
-
template<typename
Archive
, typenameDoneType
>
voidCEREAL_SERIALIZE_FUNCTION_NAME
(Archive &ar, stadls::vx::detail::Dumper<DoneType> &value, std::uint32_t const version)
-
template<typename
Archive
, typenameBuilderStorage
, typenameDoneType
>
voidCEREAL_SERIALIZE_FUNCTION_NAME
(Archive &ar, stadls::vx::detail::PlaybackProgramBuilderAdapter<BuilderStorage, DoneType> &value, std::uint32_t const version)
-
template<typename
Archive
>
voidCEREAL_SERIALIZE_FUNCTION_NAME
(Archive &ar, stadls::vx::PlaybackProgram &value, std::uint32_t const version)
-
template<typename
-
namespace
ContainerT
-
namespace
fisch
-
namespace
vx
-
namespace
stadls
-
namespace
stadls
::
vx
Typedefs
-
template<typename
ContainerT
>
usinghas_empty_container_visit_call
= decltype(haldls::vx::detail::VisitPreorderImpl<ContainerT>::template call(std::declval<hate::Empty<ContainerT> const&>(), std::declval<typename ContainerT::coordinate_type>(), std::declval<detail::DummyVisitor>()))
-
template<typename
ContainerT
>
usinghas_empty_coordinate_visit_call
= decltype(haldls::vx::detail::VisitPreorderImpl<ContainerT>::template call(std::declval<ContainerT&>(), std::declval<hate::Empty<typename ContainerT::coordinate_type>>(), std::declval<detail::DummyVisitor>()))
-
typedef fisch::vx::RunTimeInfo
RunTimeInfo
Functions
-
template<>
inline voiddecode_ones
(haldls::vx::v3::CapMemBlockConfig&)
-
template<class
T
>
inline voiddecode_ones
(T &config) Decode data with all bits set to one into a container.
- Template Parameters
T – Container type
- Returns
Filled container
-
template<>
inline voiddecode_random
(std::mt19937 &gen, haldls::vx::JTAGIdCode &config)
-
template<class
T
>
inline voiddecode_random
(std::mt19937 &gen, T &config) Decode random data into a container.
- Template Parameters
T – Container type
- Parameters
gen – RNG
- Returns
randomly filled container
-
template<typename
Seq
>
autogenerate
(Seq const &seq) Generate function to be called on an object implementing the PlaybackGenerator concept.
The PlaybackGenerator concept for a type Generator is comprised of having a nested Result type and a constant function with signature
PlaybackGeneratorReturn<Generator::Result> generate() const;
.
-
template<typename
WordT
, typenameContainerT
, typenameCoordinateT
>
autoget_encode
(ContainerT const &config, CoordinateT const &coord)
-
template<typename
WordT
, typenameContainerT
, typenameCoordinateT
>
autoget_local_encode
(ContainerT const &config, CoordinateT const &coord)
-
template<typename
AddressT
, typenameCoordinateT
, template<typename> typenameCoordinateToContainer
>
autoget_local_read_addresses
(CoordinateT const &c) Get read addresses which are local to this container, i.e.
which can be accessed via container.{read_,}addresses() as opposed to visiting the down-stream containers it is (also) comprised of. In the case of leaf-node containers this are all its read addresses.
-
template<typename
AddressT
, typenameCoordinateT
, template<typename> typenameCoordinateToContainer
>
autoget_local_write_addresses
(CoordinateT const &c) Get write addresses which are local to this container, i.e.
which can be accessed via container.{write,}addresses() as opposed to visiting the down-stream containers it is (also) comprised of. In the case of leaf-node containers this are all its write addresses.
-
template<typename
AddressT
, typenameCoordinateT
, template<typename> typenameCoordinateToContainer
>
autoget_read_addresses
(CoordinateT const &c)
-
template<typename
AddressT
, typenameCoordinateT
, template<typename> typenameCoordinateToContainer
>
autoget_write_addresses
(CoordinateT const &c)
-
template std::ostream & operator<< (std::ostream &, stadls::vx::AbsoluteTimePlaybackProgramBuilder< stadls::vx::v3::PlaybackProgramBuilder > const &)
-
template<typename
BuilderType
>
std::ostream &operator<<
(std::ostream &os, AbsoluteTimePlaybackProgramBuilder<BuilderType> const &builder)
-
template<typename
Connection
>
RunTimeInforun
(Connection &connection, PlaybackProgram &&program) Transfer and execute the given playback program and fetch results.
- Template Parameters
Connection – Connection type to be used for running the program
- Parameters
connection – Connection instance to be used for running the program
program – PlaybackProgram to run
- Returns
Run time information
-
template<typename
Connection
>
RunTimeInforun
(Connection &connection, PlaybackProgram &program) Transfer and execute the given playback program and fetch results.
- Template Parameters
Connection – Connection type to be used for running the program
- Parameters
connection – Connection instance to be used for running the program
program – PlaybackProgram to run
- Returns
Run time information
Transfer and execute the given fisch playback program and fetch results.
- Template Parameters
Connection – Connection type to be used for running the program
- Parameters
connection – Connection instance to be used for running the program
program – PlaybackProgram to run
- Returns
Run time information
-
template<typename
WordT
, typenameContainerT
, typenameCoordinateT
, size_tN
>
voidset_decode
(ContainerT &config, CoordinateT const &coord, std::array<WordT, N> const &data)
-
template<typename
WordT
, typenameContainerT
, typenameCoordinateT
>
voidset_decode
(ContainerT &config, CoordinateT const &coord, std::vector<WordT> const &data)
-
template<typename
WordT
, typenameContainerT
, typenameCoordinateT
, size_tN
>
voidset_local_decode
(ContainerT &config, CoordinateT const &coord, std::array<WordT, N> const &data)
Variables
-
constexpr size_t
playback_memory_size_to_fpga
= fisch::vx::playback_memory_size_to_fpga Playback memory FIFO size on FPGA in instructions for playback execution.
-
template<typename
ContainerT
>
constexpr boolsupports_empty_container_v
= hate::is_detected_v<has_empty_container_visit_call, ContainerT>
-
template<typename
ContainerT
>
constexpr boolsupports_empty_coordinate_v
= hate::is_detected_v<has_empty_coordinate_visit_call, ContainerT> && detail::container_supports_empty_coordinate_v<ContainerT>
-
template<typename
-
namespace
stadls::vx
::
detail
Typedefs
-
template<typename
T
, typenameC
>
usinghas_addresses
= decltype(std::declval<T&>().addresses(std::declval<C>()))
-
template<typename T, typename C, typename A> has_addresses_templated = decltype(std::declval< T & >().template addresses< A >(std::declval< C >()))
-
template<typename
T
, typenameC
>
usinghas_decode
= decltype(std::declval<T&>().decode(std::declval<C>()))
-
template<typename
T
, typenameC
, typenameCC
>
usinghas_decode_coordinate
= decltype(std::declval<T&>().decode(std::declval<CC const&>(), std::declval<C>()))
-
template<typename T, typename C, typename CC, typename A> has_decode_coordinate_templated = decltype(std::declval< T & >().template decode< A >(std::declval< CC const & >(), std::declval< C >()))
Helpers for checking if decode exists.
This is used to compile-time dispatch to the correct version below.
-
template<typename T, typename C, typename A> has_decode_templated = decltype(std::declval< T & >().template decode< A >(std::declval< C >()))
Helpers for checking if decode exists.
This is used to compile-time dispatch to the correct version below.
-
template<typename
T
>
usinghas_encode_coordinate
= decltype(std::declval<T&>().encode(std::declval<typename T::coordinate_type const&>()))
-
template<typename T, typename W> has_encode_coordinate_templated = decltype(std::declval< T & >().template encode< W >(std::declval< typename T::coordinate_type const & >()))
-
template<typename T, typename W> has_encode_templated = decltype(std::declval< T & >().template encode< W >())
Helpers for checking if encode exists and in which form (templated vs.
non-templated). This is used to compile-time dispatch to the correct version below.
-
template<typename
T
, typenameC
>
usinghas_read_addresses
= decltype(std::declval<T&>().read_addresses(std::declval<C>()))
-
template<typename T, typename C, typename A> has_read_addresses_templated = decltype(std::declval< T & >().template read_addresses< A >(std::declval< C >()))
Helpers for checking if {read_,write_,}addresses exists and in which form (templated vs.
non-templated). This is used to compile-time dispatch to the correct version below.
-
template<typename
T
, typenameC
>
usinghas_write_addresses
= decltype(std::declval<T&>().write_addresses(std::declval<C>()))
-
template<typename T, typename C, typename A> has_write_addresses_templated = decltype(std::declval< T & >().template write_addresses< A >(std::declval< C >()))
Functions
-
template<typename
T
>
size_tcount_decoding_words
(T const &config) Get number of words expected for decoding.
- Template Parameters
T – Container type
- Parameters
Container –
- Returns
Number of words for default backend
-
template<typename
T
>
T::coordinate_typeget_coord
(T const &config) Get coordinate matching container, e.g.
with respect to size.
- Template Parameters
T – Container type
- Parameters
Container –
- Returns
Coordinate
-
template std::ostream & operator<< (std::ostream &, PlaybackProgramBuilderAdapter< fisch::vx::PlaybackProgramBuilder, stadls::vx::PlaybackProgram > const &)
-
template std::ostream & operator<< (std::ostream &, PlaybackProgramBuilderAdapter< stadls::vx::v3::Dumper, stadls::vx::v3::Dumper::done_type > const &)
Variables
-
template<typename
ContainerT
>
constexpr boolcontainer_supports_empty_coordinate_v
= container_supports_empty_coordinate<ContainerT>::value
-
template<typename
-
namespace
stadls::vx
::
ppu
Functions
-
template<typename
ContainerT
, template<typename> typenameCoordinateToContainer
>
ContainerTread
(typename ContainerT::coordinate_type const &coord)
-
template<typename
ContainerT
, template<typename> typenameCoordinateToContainer
>
voidwrite
(typename ContainerT::coordinate_type const &coord, ContainerT const &config)
-
template<typename
-
namespace
stadls::vx
::
v3
Typedefs
-
using
AbsoluteTimePlaybackProgramBuilder
= stadls::vx::AbsoluteTimePlaybackProgramBuilder<stadls::vx::v3::PlaybackProgramBuilder>
-
using
AbsoluteTimePlaybackProgramContainerTicket
= stadls::vx::AbsoluteTimePlaybackProgramContainerTicket
-
hate::type_list<#define PLAYBACK_CONTAINER(Name, Type) # 13 "/jenkins/jenlib_workspaces_f9/doc_gerrit_documentation-brainscales2-dependencies.ZG9jX2dlcnJpdF9kb2N1bWVudGF0aW9uLWJyYWluc2NhbGVzMi1kZXBlbmRlbmNpZXMjMTI4MDc.x/haldls/include/stadls/vx/v3/coordinate_to_container.h" 2#define LAST_PLAYBACK_CONTAINER(Name, Type) #define PLAYBACK_CONTAINER(Name, Type) # 16 "/jenkins/jenlib_workspaces_f9/doc_gerrit_documentation-brainscales2-dependencies.ZG9jX2dlcnJpdF9kb2N1bWVudGF0aW9uLWJyYWluc2NhbGVzMi1kZXBlbmRlbmNpZXMjMTI4MDc.x/haldls/include/stadls/vx/v3/coordinate_to_container.h" 2 > container_list
List of container types used to resolve a container type from a coordinate type.
-
using
ContainerTicket
= stadls::vx::ContainerTicket
-
hate::type_list<#define PLAYBACK_CONTAINER(Name, Type) # 25 "/jenkins/jenlib_workspaces_f9/doc_gerrit_documentation-brainscales2-dependencies.ZG9jX2dlcnJpdF9kb2N1bWVudGF0aW9uLWJyYWluc2NhbGVzMi1kZXBlbmRlbmNpZXMjMTI4MDc.x/haldls/include/stadls/vx/v3/coordinate_to_container.h" 2#define LAST_PLAYBACK_CONTAINER(Name, Type) #define PLAYBACK_CONTAINER(Name, Type) # 28 "/jenkins/jenlib_workspaces_f9/doc_gerrit_documentation-brainscales2-dependencies.ZG9jX2dlcnJpdF9kb2N1bWVudGF0aW9uLWJyYWluc2NhbGVzMi1kZXBlbmRlbmNpZXMjMTI4MDc.x/haldls/include/stadls/vx/v3/coordinate_to_container.h" 2 > coordinate_list
List of coordinate types sorted the same way as the container list.
-
template<typename
Result
>
usingPlaybackGeneratorReturn
= stadls::vx::PlaybackGeneratorReturn<PlaybackProgramBuilder, Result>
-
using
PlaybackProgram
= stadls::vx::PlaybackProgram
-
using
PlaybackProgramBuilder
= detail::PlaybackProgramBuilderAdapter<fisch::vx::PlaybackProgramBuilder, PlaybackProgram>
-
using
PlaybackProgramBuilderDumper
= detail::PlaybackProgramBuilderAdapter<Dumper, Dumper::done_type>
-
typedef stadls::vx::ReinitStackEntry
ReinitStackEntry
Functions
-
PlaybackProgramBuilder
convert_to_builder
(Dumper::done_type const &cocos) Convert a sequence of coordinate container pairs to a PlaybackProgramBuilder.
- Parameters
cocos – Coordinate-Container pair sequence
-
PlaybackProgramBuilder
convert_to_builder
(PlaybackProgramBuilderDumper &&dumper) Convert a PlaybackProgramBuilderDumper to a PlaybackProgramBuilder (rvalue reference overload).
The dumper is emptied during the process.
- Parameters
dumper – Dumper to convert
-
PlaybackProgramBuilder
convert_to_builder
(PlaybackProgramBuilderDumper &dumper) Convert a PlaybackProgramBuilderDumper to a PlaybackProgramBuilder.
The dumper is emptied during the process.
- Parameters
dumper – Dumper to convert
-
lola::vx::v3::Chip
convert_to_chip
(DumperDone const &dumperdone) Convert the dumper result to a Chip config.
This conversion is not bijective.
- Parameters
dumperdone – Dumper result
-
lola::vx::v3::Chip
convert_to_chip
(DumperDone const &dumperdone, lola::vx::v3::Chip const &previous) Convert the dumper result to a Chip config.
This conversion is not bijective.
- Parameters
dumperdone – Dumper result
previous – Optional previous ChipConfig to apply changes to
-
PlaybackProgramBuilderDumper
convert_to_dumper
(DumperDone const &cocos) Convert a sequence of coordinate container pairs to a PlaybackProgramBuilderDumper.
- Parameters
cocos – Coordinate-Container pair sequence
-
using
-
namespace
detail
-
namespace
stadls::vx::v3
::
ppu
Functions
-
template<typename
ContainerT
>
ContainerTread
(typename ContainerT::coordinate_type const &coord)
-
template<typename
ContainerT
>
voidwrite
(typename ContainerT::coordinate_type const &coord, ContainerT const &config)
-
template<typename
-
namespace
stadls::vx
::
v4
Typedefs
-
hate::type_list<#define PLAYBACK_CONTAINER(Name, Type) # 13 "/jenkins/jenlib_workspaces_f9/doc_gerrit_documentation-brainscales2-dependencies.ZG9jX2dlcnJpdF9kb2N1bWVudGF0aW9uLWJyYWluc2NhbGVzMi1kZXBlbmRlbmNpZXMjMTI4MDc.x/haldls/include/stadls/vx/v4/coordinate_to_container.h" 2#define LAST_PLAYBACK_CONTAINER(Name, Type) #define PLAYBACK_CONTAINER(Name, Type) # 16 "/jenkins/jenlib_workspaces_f9/doc_gerrit_documentation-brainscales2-dependencies.ZG9jX2dlcnJpdF9kb2N1bWVudGF0aW9uLWJyYWluc2NhbGVzMi1kZXBlbmRlbmNpZXMjMTI4MDc.x/haldls/include/stadls/vx/v4/coordinate_to_container.h" 2 > container_list
List of container types used to resolve a container type from a coordinate type.
-
using
ContainerTicket
= stadls::vx::ContainerTicket
-
hate::type_list<#define PLAYBACK_CONTAINER(Name, Type) # 25 "/jenkins/jenlib_workspaces_f9/doc_gerrit_documentation-brainscales2-dependencies.ZG9jX2dlcnJpdF9kb2N1bWVudGF0aW9uLWJyYWluc2NhbGVzMi1kZXBlbmRlbmNpZXMjMTI4MDc.x/haldls/include/stadls/vx/v4/coordinate_to_container.h" 2#define LAST_PLAYBACK_CONTAINER(Name, Type) #define PLAYBACK_CONTAINER(Name, Type) # 28 "/jenkins/jenlib_workspaces_f9/doc_gerrit_documentation-brainscales2-dependencies.ZG9jX2dlcnJpdF9kb2N1bWVudGF0aW9uLWJyYWluc2NhbGVzMi1kZXBlbmRlbmNpZXMjMTI4MDc.x/haldls/include/stadls/vx/v4/coordinate_to_container.h" 2 > coordinate_list
List of coordinate types sorted the same way as the container list.
-
template<typename
Result
>
usingPlaybackGeneratorReturn
= stadls::vx::PlaybackGeneratorReturn<PlaybackProgramBuilder, Result>
-
using
PlaybackProgram
= stadls::vx::PlaybackProgram
-
using
PlaybackProgramBuilder
= detail::PlaybackProgramBuilderAdapter<fisch::vx::PlaybackProgramBuilder, PlaybackProgram>
-
using
PlaybackProgramBuilderDumper
= detail::PlaybackProgramBuilderAdapter<Dumper, Dumper::done_type>
-
typedef stadls::vx::ReinitStackEntry
ReinitStackEntry
Functions
-
PlaybackProgramBuilder
convert_to_builder
(Dumper::done_type const &cocos) Convert a sequence of coordinate container pairs to a PlaybackProgramBuilder.
- Parameters
cocos – Coordinate-Container pair sequence
-
PlaybackProgramBuilder
convert_to_builder
(PlaybackProgramBuilderDumper &&dumper) Convert a PlaybackProgramBuilderDumper to a PlaybackProgramBuilder (rvalue reference overload).
The dumper is emptied during the process.
- Parameters
dumper – Dumper to convert
-
PlaybackProgramBuilder
convert_to_builder
(PlaybackProgramBuilderDumper &dumper) Convert a PlaybackProgramBuilderDumper to a PlaybackProgramBuilder.
The dumper is emptied during the process.
- Parameters
dumper – Dumper to convert
-
lola::vx::v4::Chip
convert_to_chip
(DumperDone const &dumperdone) Convert the dumper result to a Chip config.
This conversion is not bijective.
- Parameters
dumperdone – Dumper result
-
lola::vx::v4::Chip
convert_to_chip
(DumperDone const &dumperdone, lola::vx::v4::Chip const &previous) Convert the dumper result to a Chip config.
This conversion is not bijective.
- Parameters
dumperdone – Dumper result
previous – Optional previous ChipConfig to apply changes to
-
PlaybackProgramBuilderDumper
convert_to_dumper
(DumperDone const &cocos) Convert a sequence of coordinate container pairs to a PlaybackProgramBuilderDumper.
- Parameters
cocos – Coordinate-Container pair sequence
-
-
namespace
detail
-
namespace
stadls::vx::v4
::
ppu
Functions
-
template<typename
ContainerT
>
ContainerTread
(typename ContainerT::coordinate_type const &coord)
-
template<typename
ContainerT
>
voidwrite
(typename ContainerT::coordinate_type const &coord, ContainerT const &config)
-
template<typename
-
namespace
std
STL namespace.
-
file
visitors.h
- #include <>#include <>#include <>#include <>#include <>#include “”#include “”#include “”
-
file
addresses.h
- #include “”#include “”#include “”#include “stadls/visitors.h”#include “stadls/vx/supports_empty.h”#include <>#include <>
-
file
constants.h
- #include “”
-
file
dumper.h
- #include “”#include “”#include “”#include “stadls/vx/container_ticket.h”
-
file
dumper.h
- #include “”#include “”#include “stadls/vx/dumper.h”#include “stadls/vx/genpybind.h”#include “stadls/vx/playback_program_builder.h”#include “stadls/vx/v3/coordinate_to_container.h”#include “stadls/vx/v3/dumperdone.h”#include <>
-
file
dumper.h
- #include “”#include “”#include “stadls/vx/dumper.h”#include “stadls/vx/genpybind.h”#include “stadls/vx/playback_program_builder.h”#include “stadls/vx/v4/coordinate_to_container.h”#include “stadls/vx/v4/dumperdone.h”#include <>
-
file
encode.h
- #include “”#include “”#include “”#include “stadls/visitors.h”#include <>#include <>
-
file
genpybind.h
- #include <genpybind.h>
-
file
run_time_info.h
- #include “”#include “stadls/vx/genpybind.h”
-
file
set_decode.h
- #include “”#include “”#include “stadls/visitors.h”#include “stadls/vx/supports_empty.h”#include <>
-
file
stadls.h
- #include “stadls/vx/constants.h”#include “”#include “stadls/vx/playback_generator.h”#include “stadls/vx/playback_program.h”#include “stadls/vx/playback_program_builder.h”#include “stadls/vx/reinit_stack_entry.h”#include “stadls/vx/run.h”
-
file
stadls.h
-
#include “stadls/vx/v3/container_ticket.h”#include “stadls/vx/v3/dumper.h”#include “stadls/vx/v3/init_generator.h”#include “stadls/vx/v3/playback_generator.h”#include “stadls/vx/v3/playback_program.h”#include “stadls/vx/v3/playback_program_builder.h”#include “stadls/vx/v3/reinit_stack_entry.h”#include “stadls/vx/v3/run.h”
-
file
stadls.h
- #include “stadls/vx/v4/container_ticket.h”#include “stadls/vx/v4/dumper.h”#include “stadls/vx/v4/init_generator.h”#include “stadls/vx/v4/playback_generator.h”#include “stadls/vx/v4/playback_program.h”#include “stadls/vx/v4/playback_program_builder.h”#include “stadls/vx/v4/reinit_stack_entry.h”#include “stadls/vx/v4/run.h”
-
file
supports_empty.h
- #include “”#include “”
-
file
absolute_time_playback_program_builder.h
- #include “”#include “”#include “”#include “stadls/vx/genpybind.h”#include “stadls/vx/v3/playback_program_builder.h”#include <>#include <>#include <>
-
file
absolute_time_playback_program_builder.h
- #include “”#include “stadls/vx/genpybind.h”#include “stadls/vx/v3/playback_program_builder.h”
-
file
absolute_time_playback_program_container_ticket.h
- #include “”#include “”#include “”#include “stadls/vx/container_ticket.h”#include “stadls/vx/genpybind.h”#include <>#include <>
-
file
absolute_time_playback_program_container_ticket.h
-
#include “stadls/vx/genpybind.h”
-
file
container_ticket.h
- #include “”#include “”#include “”#include “”#include “”#include “stadls/vx/genpybind.h”#include <>#include <>#include <>#include <>#include “”
Defines
-
LAST_PLAYBACK_CONTAINER
(Name, Type)
-
PLAYBACK_CONTAINER
(Name, Type)
-
-
file
container_ticket.h
- #include “stadls/vx/container_ticket.h”#include “stadls/vx/genpybind.h”
-
file
container_ticket.h
- #include “stadls/vx/container_ticket.h”#include “stadls/vx/genpybind.h”
-
file
coordinate_to_container.h
- #include “”#include “”#include “”#include “”#include “”
Defines
-
LAST_PLAYBACK_CONTAINER
(Name, Type)
-
LAST_PLAYBACK_CONTAINER
(Name, Type)
-
PLAYBACK_CONTAINER
(Name, Type)
-
PLAYBACK_CONTAINER
(Name, Type)
-
PLAYBACK_CONTAINER
(Name, Type)
-
PLAYBACK_CONTAINER
(Name, Type)
-
-
file
coordinate_to_container.h
- #include “”#include “”#include “”#include “”#include “”
Defines
-
LAST_PLAYBACK_CONTAINER
(Name, Type)
-
LAST_PLAYBACK_CONTAINER
(Name, Type)
-
PLAYBACK_CONTAINER
(Name, Type)
-
PLAYBACK_CONTAINER
(Name, Type)
-
PLAYBACK_CONTAINER
(Name, Type)
-
PLAYBACK_CONTAINER
(Name, Type)
-
-
file
decode.h
- #include <>#include <>#include “”#include “”#include “”#include “”#include “”#include “”#include “”#include “”#include “”#include “stadls/visitors.h”#include “”
-
file
decode.h
- #include “stadls/vx/decode.h”#include “”
Defines
-
CHIP_REVISION
-
-
file
decode.h
- #include “stadls/vx/decode.h”#include “”
Defines
-
CHIP_REVISION
-
-
file
dumperdone.h
- #include “”#include “”#include “”#include “stadls/vx/genpybind.h”#include <>#include <>#include <>
-
file
dumperdone.h
- #include “”#include “”#include “”#include “stadls/vx/genpybind.h”#include <>#include <>#include <>
-
file
init_generator.h
- #include “”#include “stadls/vx/v3/playback_generator.h”#include “stadls/vx/v3/playback_program_builder.h”
-
file
init_generator.h
- #include “”#include “stadls/vx/v4/playback_generator.h”#include “stadls/vx/v4/playback_program_builder.h”
-
file
playback_generator.h
- #include “”#include “”#include “”#include “stadls/vx/genpybind.h”
-
file
playback_generator.h
- #include “stadls/vx/genpybind.h”#include “stadls/vx/playback_generator.h”#include “stadls/vx/v3/playback_program_builder.h”
-
file
playback_generator.h
- #include “stadls/vx/genpybind.h”#include “stadls/vx/playback_generator.h”#include “stadls/vx/v4/playback_program_builder.h”
-
file
playback_program.h
- #include <>#include <>#include <>#include <>#include <>#include <>#include “”#include “”#include “”#include “”#include “”#include “”#include “stadls/vx/genpybind.h”#include “stadls/vx/run_time_info.h”#include <>
-
file
playback_program.h
- #include “stadls/vx/genpybind.h”#include “stadls/vx/playback_program.h”
-
file
playback_program.h
- #include “stadls/vx/genpybind.h”#include “stadls/vx/playback_program.h”
-
file
playback_program_builder.h
- #include <>#include <>#include <>#include “”#include “”#include “”#include “”#include “”#include “”#include “”#include “stadls/vx/container_ticket.h”#include “stadls/vx/dumper.h”#include “stadls/vx/genpybind.h”#include “stadls/vx/playback_program.h”
-
file
playback_program_builder.h
- #include “”#include “”#include “stadls/vx/genpybind.h”#include “stadls/vx/playback_program_builder.h”#include “stadls/vx/v3/coordinate_to_container.h”#include “stadls/vx/v3/dumper.h”#include <>
-
file
playback_program_builder.h
- #include “”#include “”#include “stadls/vx/genpybind.h”#include “stadls/vx/playback_program_builder.h”#include “stadls/vx/v4/coordinate_to_container.h”#include “stadls/vx/v4/dumper.h”#include <>
-
file
read.h
- #include “”#include “”#include “”#include “”#include “stadls/vx/addresses.h”#include “stadls/vx/set_decode.h”#include <>#include <>
-
file
read.h
- #include “stadls/vx/ppu/read.h”#include “stadls/vx/v3/coordinate_to_container.h”
Defines
-
CHIP_REVISION
-
-
file
read.h
- #include “stadls/vx/ppu/read.h”#include “stadls/vx/v4/coordinate_to_container.h”
Defines
-
CHIP_REVISION
-
-
file
write.h
- #include “”#include “”#include “”#include “”#include “”#include “stadls/vx/addresses.h”#include “stadls/vx/encode.h”#include <>#include <>#include <>
-
file
write.h
- #include “stadls/vx/ppu/write.h”#include “stadls/vx/v3/coordinate_to_container.h”
Defines
-
CHIP_REVISION
-
-
file
write.h
- #include “stadls/vx/ppu/write.h”#include “stadls/vx/v4/coordinate_to_container.h”
Defines
-
CHIP_REVISION
-
-
file
pystadls.h
- #include <>#include “”#include “stadls/vx/genpybind.h”#include “stadls/vx/v3/stadls.h”
-
file
pystadls.h
- #include <>#include “”#include “stadls/vx/genpybind.h”#include “stadls/vx/v4/stadls.h”
-
file
reinit_stack_entry.h
- #include “”#include “stadls/vx/genpybind.h”#include “stadls/vx/playback_program.h”#include <>#include <>#include “”
-
file
reinit_stack_entry.h
- #include “stadls/vx/genpybind.h”#include “stadls/vx/reinit_stack_entry.h”
-
file
reinit_stack_entry.h
- #include “stadls/vx/genpybind.h”#include “stadls/vx/reinit_stack_entry.h”
-
file
run.h
- #include “stadls/vx/genpybind.h”#include “stadls/vx/run_time_info.h”#include “”
-
file
run.h
- #include “stadls/vx/genpybind.h”#include “stadls/vx/run.h”
-
file
run.h
- #include “stadls/vx/genpybind.h”#include “stadls/vx/run.h”
-
dir
/jenkins/jenlib_workspaces_f9/doc_gerrit_documentation-brainscales2-dependencies.ZG9jX2dlcnJpdF9kb2N1bWVudGF0aW9uLWJyYWluc2NhbGVzMi1kZXBlbmRlbmNpZXMjMTI4MDc.x/haldls
-
dir
/jenkins/jenlib_workspaces_f9/doc_gerrit_documentation-brainscales2-dependencies.ZG9jX2dlcnJpdF9kb2N1bWVudGF0aW9uLWJyYWluc2NhbGVzMi1kZXBlbmRlbmNpZXMjMTI4MDc.x/haldls/include
-
dir
/jenkins/jenlib_workspaces_f9/doc_gerrit_documentation-brainscales2-dependencies.ZG9jX2dlcnJpdF9kb2N1bWVudGF0aW9uLWJyYWluc2NhbGVzMi1kZXBlbmRlbmNpZXMjMTI4MDc.x/haldls/include/stadls/vx/ppu
-
dir
/jenkins/jenlib_workspaces_f9/doc_gerrit_documentation-brainscales2-dependencies.ZG9jX2dlcnJpdF9kb2N1bWVudGF0aW9uLWJyYWluc2NhbGVzMi1kZXBlbmRlbmNpZXMjMTI4MDc.x/haldls/include/stadls/vx/v3/ppu
-
dir
/jenkins/jenlib_workspaces_f9/doc_gerrit_documentation-brainscales2-dependencies.ZG9jX2dlcnJpdF9kb2N1bWVudGF0aW9uLWJyYWluc2NhbGVzMi1kZXBlbmRlbmNpZXMjMTI4MDc.x/haldls/include/stadls/vx/v4/ppu
-
dir
/jenkins/jenlib_workspaces_f9/doc_gerrit_documentation-brainscales2-dependencies.ZG9jX2dlcnJpdF9kb2N1bWVudGF0aW9uLWJyYWluc2NhbGVzMi1kZXBlbmRlbmNpZXMjMTI4MDc.x/haldls/include/stadls
-
dir
/jenkins/jenlib_workspaces_f9/doc_gerrit_documentation-brainscales2-dependencies.ZG9jX2dlcnJpdF9kb2N1bWVudGF0aW9uLWJyYWluc2NhbGVzMi1kZXBlbmRlbmNpZXMjMTI4MDc.x/haldls/include/stadls/vx/v3
-
dir
/jenkins/jenlib_workspaces_f9/doc_gerrit_documentation-brainscales2-dependencies.ZG9jX2dlcnJpdF9kb2N1bWVudGF0aW9uLWJyYWluc2NhbGVzMi1kZXBlbmRlbmNpZXMjMTI4MDc.x/haldls/include/stadls/vx/v4
-
dir
/jenkins/jenlib_workspaces_f9/doc_gerrit_documentation-brainscales2-dependencies.ZG9jX2dlcnJpdF9kb2N1bWVudGF0aW9uLWJyYWluc2NhbGVzMi1kZXBlbmRlbmNpZXMjMTI4MDc.x/haldls/include/stadls/vx