Skip to content

Commit f2371b0

Browse files
author
robin
committed
minor changes to pipeline
1 parent a2b7641 commit f2371b0

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

examples/run_pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from pipeline.pipeline import Pipeline
1010

1111
# init filterbank filename
12-
fil_name = "./pspm.fil"
12+
fil_name = os.path.abspath("filterbank.fil")
1313
# init filterbank sample size
1414
sample_size = 49152
1515
# init times the pipeline should run

fourier/fourier.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ def fft_vectorized(input_data, nfft=None, axis=-1):
8080
input_data = zeroes
8181

8282
data_length = input_data.shape[0]
83-
print(data_length)
8483

8584
if np.log2(data_length) % 1 > 0:
8685
raise ValueError("Size of input data must be a power of 2")

0 commit comments

Comments
 (0)