Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/example_data_collection_vx300s.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def main(args):

if record:
nc.create_dataset(
name="My Example Dataset",
name="Test ice roxy-2",
description="This is an example dataset",
)
print("Created Dataset...")
Expand Down
2 changes: 2 additions & 0 deletions neuracore-dictionary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ addfinalizer
addinivalue
agentview
agilex
iceoryx
aiolimiter
aiortc
allclose
Expand All @@ -16,6 +17,7 @@ attns
autocast
Autoencoders
autoregressively
uninit
autoset
autouse
avgpool
Expand Down
4 changes: 2 additions & 2 deletions neuracore/core/streaming/data_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,11 @@ def stop_recording(
if producer_channel.trace_id:
producer_channel.cleanup_producer_channel(
stop_cutoff_sequence_number=stop_cutoff_sequence_number,
wait_for_slot_drain=wait_for_producer_drain,
wait_for_transport_drain=wait_for_producer_drain,
)
finally:
producer_channel.stop_producer_channel(
wait_for_slot_drain=wait_for_producer_drain,
wait_for_transport_drain=wait_for_producer_drain,
)

def is_recording(self) -> bool:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Disk-backed chunk spool for shared-slot completion work."""
"""Disk-backed chunk spool for video-frame completion work."""

from __future__ import annotations

Expand Down Expand Up @@ -43,7 +43,7 @@ def __init__(
)

def append(self, chunk: bytes | bytearray | memoryview) -> ChunkSpoolRef:
"""Copy one chunk from shared memory into the spool and return its ref."""
"""Copy one video chunk into the spool and return its ref."""
chunk_view = chunk if isinstance(chunk, memoryview) else memoryview(chunk)
chunk_len = len(chunk_view)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def _release_partial_refs(self, partial: SpoolPartialMessage) -> None:


class CompletionWorker:
"""Non-blocking sharded completion pipeline for shared-slot ingest."""
"""Non-blocking sharded completion pipeline for video-frame ingest."""

def __init__(
self,
Expand Down
Loading
Loading