Skip to content

Commit 0f11a15

Browse files
author
robin
committed
back to pspm8
1 parent 4a827a4 commit 0f11a15

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

pipeline/pipeline.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,6 @@ def measure_methods(self, stopwatch, fil_data, freqs, DM, scale):
132132
time_fft_vect = timer()
133133
fourier.fft_vectorized(time_series)
134134
stopwatch['time_fft_vect'] = timer() - time_fft_vect
135-
print("dft")
136-
137135
# dft
138136
time_dft = timer()
139137
fourier.dft_slow(time_series)

tests/test_pipeline.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def test_static_pipeline(self):
1616
When running the static pipeline,
1717
expect a file with the time per method
1818
"""
19-
filename = './pspm32.fil'
19+
filename = './pspm8.fil'
2020
new_file = './static_filterbank.txt'
2121
pipeline.Pipeline(filename)
2222
self.assertTrue(os.path.exists(new_file))
@@ -27,7 +27,7 @@ def test_row_pipeline(self):
2727
When running the pipeline as stream,
2828
expect a file with the time per method
2929
"""
30-
filename = './pspm32.fil'
30+
filename = './pspm8.fil'
3131
new_file = './rows_filterbank.txt'
3232
pipeline.Pipeline(filename, as_stream=True)
3333
self.assertTrue(os.path.exists(new_file))
@@ -38,7 +38,7 @@ def test_n_rows_pipeline(self):
3838
When running the pipeline as stream,
3939
expect a file with the time per method per chunk
4040
"""
41-
filename = './pspm32.fil'
41+
filename = './pspm8.fil'
4242
new_file = './n_rows_filterbank.txt'
4343
pipeline.Pipeline(filename, as_stream=True, n=10)
4444
self.assertTrue(os.path.exists(new_file))

0 commit comments

Comments
 (0)