Add PcloudAmbienceStencil, LG1PcloudAmbienceStencil

These two classes represent our first foray into stencil
construction. One of them standardizes PcloudAmbience stencils
across all stimbuffs, and the other specifies the internal
memory constraints and requirements for a LivoxGen1 device's
stencils.
This commit is contained in:
2025-11-26 12:32:42 -04:00
parent ce0456d472
commit 8eb7eaba3d
6 changed files with 125 additions and 31 deletions
+38
View File
@@ -0,0 +1,38 @@
#ifndef _PCLOUD_AMBIENCE_STENCIL_H
#define _PCLOUD_AMBIENCE_STENCIL_H
#include <cstdint>
#include <cstddef>
#include <user/stencil.h>
namespace smo {
namespace stim_buff {
/**
* PcloudAmbienceStencil represents stencils for point cloud ambience data.
* This is a base class for device-specific implementations.
*/
class PcloudAmbienceStencil
: public smo::cologex::Stencil
{
public:
typedef uint32_t PcloudAmbienceStimulusValue;
/**
* RangeDescriptor describes a contiguous range of body spots for
* point cloud ambience stencils.
*/
struct RangeDescriptor : public Stencil::RangeDescriptor
{
uint32_t bodySpot;
size_t nContiguousSpots;
};
PcloudAmbienceStencil() = default;
virtual ~PcloudAmbienceStencil() = default;
};
} // namespace stim_buff
} // namespace smo
#endif // _PCLOUD_AMBIENCE_STENCIL_H
+19 -30
View File
@@ -1,9 +1,7 @@
#ifndef _STENCIL_H #ifndef _STENCIL_H
#define _STENCIL_H #define _STENCIL_H
#include <vector> #include <cstddef>
#include <memory>
#include <user/stimFrame.h>
#include <mentalEntity.h> #include <mentalEntity.h>
namespace smo { namespace smo {
@@ -31,31 +29,24 @@ namespace cologex {
class Stencil class Stencil
{ {
public: public:
/** /** EXPLANATION:
* Constructor that takes a shared_ptr to StimFrame and produces a completed * This is used by smo and stimbufflibs to describe the range of bodyspot
* Stencil. The Stencil scans the StimFrame and efficiently allocates * descriptors in a stencil. Each descriptor describes a contiguous range of
* internal structures to describe the stencil ranges. * body spots whose values exceed the intrin threshold for the intrin being
* * reported. Or in the case of a stored cologex/idea, it describes
* @param frame Shared pointer to the StimFrame to analyze * contiguous body spots in the perceptual reference data, which may
* @param threshold The threshold value for determining relevant data * eventually be whittled/collapsed down from implicative data into
* structural data.
*/ */
Stencil( struct RangeDescriptor
const std::shared_ptr<stim_buff::StimFrame> &frame, {
const uint32_t threshold) };
: frame(frame), threshold(threshold)
{} Stencil() = default;
virtual ~Stencil() = default; virtual ~Stencil() = default;
/** /**
* Pure virtual method for derived classes to implement their specific * Returns true if the Stencil has data, false otherwise.
* threshold analysis logic. Returns true if there are values above threshold,
* false otherwise.
*/
virtual bool analyzeFrame() = 0;
/**
* Stencil is constructed from a StimFrame. If the input StimFrame had no
* values above threshold, then the Stencil will have no data.
*/ */
virtual bool hasData() const = 0; virtual bool hasData() const = 0;
operator bool() const { return hasData(); } operator bool() const { return hasData(); }
@@ -66,15 +57,13 @@ public:
// Return true if the offset is relevant, false otherwise // Return true if the offset is relevant, false otherwise
virtual bool isRelevant(size_t offset) const = 0; virtual bool isRelevant(size_t offset) const = 0;
virtual size_t getNRangeDescriptors() const = 0;
/** /**
* Build internal stencil metadata from the shared_ptr member to describe * Build internal stencil metadata to describe the range of values that
* the range of StimFrame values that are relevant. * are relevant.
*/ */
virtual bool buildStencilMetadata() = 0; virtual bool buildStencilMetadata() = 0;
protected:
uint32_t threshold;
std::shared_ptr<stim_buff::StimFrame> frame;
}; };
} // namespace cologex } // namespace cologex
+1
View File
@@ -15,6 +15,7 @@ if(ENABLE_STIMBUFFAPI_livoxGen1)
add_library(livoxGen1 SHARED add_library(livoxGen1 SHARED
livoxGen1.cpp livoxGen1.cpp
pcloudStimulusProducer.cpp pcloudStimulusProducer.cpp
lg1PcloudAmbienceStencil.cpp
ioUringAssemblyEngine.cpp ioUringAssemblyEngine.cpp
openClCollatingAndMeshingEngine.cpp openClCollatingAndMeshingEngine.cpp
openClKernels.cl.S openClKernels.cl.S
@@ -0,0 +1,19 @@
#include "lg1PcloudAmbienceStencil.h"
#include <unistd.h>
namespace smo {
namespace stim_buff {
// Common IOEngineConstraints for LG1 ambience stencil StagingBuffer
// (used for both input and output constraints)
const StagingBuffer::IOEngineConstraints
LG1PcloudAmbienceStencil::stencilBufferConstraints(
// slotStartAlignmentByteVal, slotPadToNBytes.
sizeof(void*),
sizeof(PcloudAmbienceStencil::RangeDescriptor),
// frameStartAlignmentByteVal, framePadToNBytes.
static_cast<size_t>(sysconf(_SC_PAGE_SIZE)),
static_cast<size_t>(sysconf(_SC_PAGE_SIZE)));
} // namespace stim_buff
} // namespace smo
@@ -0,0 +1,45 @@
#ifndef _LG1_PCLOUD_AMBIENCE_STENCIL_H
#define _LG1_PCLOUD_AMBIENCE_STENCIL_H
#include "livoxGen1.h"
#include <user/pcloudAmbienceStencil.h>
#include <user/stagingBuffer.h>
#include <unistd.h>
namespace smo {
namespace stim_buff {
/**
* LG1PcloudAmbienceStencil represents Livox Gen1-specific stencils for
* ambience data. The StagingBuffer is sized to handle the worst-case scenario
* where every ambience body spot requires its own descriptor
* (nDgramsPerFrame slots).
*/
class LG1PcloudAmbienceStencil
: public PcloudAmbienceStencil
{
public:
// Common IOEngineConstraints for stencil buffer (used for both input and output)
static const StagingBuffer::IOEngineConstraints stencilBufferConstraints;
/**
* Constructor
* @param nDgramsPerFrame Number of datagrams per frame, used to size the
* stencil buffer for worst-case scenario (one descriptor per dgram)
*/
explicit LG1PcloudAmbienceStencil(size_t nDgramsPerFrame)
: PcloudAmbienceStencil(),
stencilBuffer(
stencilBufferConstraints, // Input constraints
stencilBufferConstraints, // Output constraints (same as input)
nDgramsPerFrame)
{}
public:
StagingBuffer stencilBuffer;
};
} // namespace stim_buff
} // namespace smo
#endif // _LG1_PCLOUD_AMBIENCE_STENCIL_H
@@ -9,7 +9,9 @@
#include <asynchronousLoop.h> #include <asynchronousLoop.h>
#include <user/stimulusFrame.h> #include <user/stimulusFrame.h>
#include <user/frameAssemblyDesc.h> #include <user/frameAssemblyDesc.h>
#include <user/pcloudAmbienceStencil.h>
#include <livoxProto1/device.h> #include <livoxProto1/device.h>
#include "livoxGen1.h"
#include "pcloudStimulusProducer.h" #include "pcloudStimulusProducer.h"
namespace smo { namespace smo {
@@ -56,7 +58,7 @@ static StagingBuffer::IOEngineConstraints openClAmbienceInputConstraints(
// slotStartAlignmentByteVal (page alignment) // slotStartAlignmentByteVal (page alignment)
static_cast<size_t>(sysconf(_SC_PAGE_SIZE)), static_cast<size_t>(sysconf(_SC_PAGE_SIZE)),
// slotPadToNBytes: This is dynamically calculated based on the return mode. // slotPadToNBytes: This is dynamically calculated based on the return mode.
sizeof(uint32_t), sizeof(PcloudAmbienceStencil::PcloudAmbienceStimulusValue),
// frameStartAlignmentByteVal (page alignment) // frameStartAlignmentByteVal (page alignment)
static_cast<size_t>(sysconf(_SC_PAGE_SIZE)), static_cast<size_t>(sysconf(_SC_PAGE_SIZE)),
// framePadToNBytes (pointer size) // framePadToNBytes (pointer size)