Skip to content
Open
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
5 changes: 4 additions & 1 deletion src/katsdpcontroller/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -2851,10 +2851,13 @@ def _make_beamformer_engineering_pol(
if ibv:
bf_ingest.command = ["schedrr", "capambel", "-c", "cap_net_raw+p", "--", "bf_ingest.py"]
bf_ingest.capabilities.append("NET_RAW") # For ibverbs raw QPs
if timeplot or not ram:
if timeplot:
# Actual usage is about 600MB, more-or-less independent of the
# parameters.
bf_ingest.mem = 1024
elif not ram:
# SSD-backed capture. HDF5 chunk writing can exceed 1 GiB allocation
bf_ingest.mem = 2048
else:
# When writing to tmpfs, the file is accounted as memory to our
# process, so we need more memory allocation than there is
Expand Down