Skip to content

Commit

Permalink
Merge pull request #1366 from anarkiwi/opt
Browse files Browse the repository at this point in the history
v1.0.114.
  • Loading branch information
anarkiwi authored Aug 1, 2024
2 parents a418a7b + eac0c87 commit b4fc69c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
libvulkan-dev \
pybind11-dev
WORKDIR /root
RUN git clone https://github.com/iqtlabs/gr-iqtlabs -b 1.0.113
RUN git clone https://github.com/iqtlabs/gr-iqtlabs -b 1.0.114
COPY --from=iqtlabs/gamutrf-vkfft:latest /root /root/gr-iqtlabs
WORKDIR /root/gr-iqtlabs/build
COPY --from=iqtlabs/gamutrf-sigmf:latest /usr/local /usr/local
Expand Down
5 changes: 2 additions & 3 deletions gamutrf/grscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,9 +390,8 @@ def __init__(
(block, "inference"), (self.inference_output_block, "inference")
)

if not retune_fft_output_block:
retune_fft_output_block = blocks.null_sink(gr.sizeof_float * nfft)
self.connect((retune_fft, 0), (retune_fft_output_block, 0))
if retune_fft_output_block:
self.connect((retune_fft, 0), (retune_fft_output_block, 0))

if pretune:
self.msg_connect((self.retune_pre_fft, "tune"), (self.sources[0], cmd_port))
Expand Down

0 comments on commit b4fc69c

Please sign in to comment.