diff options
Diffstat (limited to 'gr-gcell/src')
-rw-r--r-- | gr-gcell/src/gcell.i | 2 | ||||
-rw-r--r-- | gr-gcell/src/gcell_fft_vcc.cc | 6 | ||||
-rwxr-xr-x | gr-gcell/src/qa_fft.py | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/gr-gcell/src/gcell.i b/gr-gcell/src/gcell.i index 23f602895..cbe7abcc7 100644 --- a/gr-gcell/src/gcell.i +++ b/gr-gcell/src/gcell.i @@ -28,7 +28,7 @@ #include "gnuradio_swig_bug_workaround.h" // mandatory bug fix //#include <stdexcept> -#include <gc_job_manager.h> +#include <gcell/gc_job_manager.h> #include <gcell_fft_vcc.h> %} diff --git a/gr-gcell/src/gcell_fft_vcc.cc b/gr-gcell/src/gcell_fft_vcc.cc index b53f0c330..8bbcfb2b9 100644 --- a/gr-gcell/src/gcell_fft_vcc.cc +++ b/gr-gcell/src/gcell_fft_vcc.cc @@ -26,9 +26,9 @@ #include <gcell_fft_vcc.h> #include <gr_io_signature.h> -#include <gc_job_manager.h> -#include <gc_aligned_alloc.h> -#include <gcp_fft_1d_r2.h> +#include <gcell/gc_job_manager.h> +#include <gcell/gc_aligned_alloc.h> +#include <gcell/gcp_fft_1d_r2.h> #include <math.h> #include <assert.h> #include <stdexcept> diff --git a/gr-gcell/src/qa_fft.py b/gr-gcell/src/qa_fft.py index d95b76c4c..88a4f5207 100755 --- a/gr-gcell/src/qa_fft.py +++ b/gr-gcell/src/qa_fft.py @@ -33,7 +33,7 @@ primes = (2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53, class test_fft_filter(gr_unittest.TestCase): def setUp(self): - ph = gcell.program_handle_from_filename("../../gcell/src/lib/spu/gcell_all") + ph = gcell.program_handle_from_filename("../../gcell/lib/spu/gcell_all") opts = gcell.jm_options(ph, 1) self.mgr = gcell.job_manager(opts) gcell.set_singleton(self.mgr) |