Changeset 8624
- Timestamp:
- 06/19/08 09:04:26
- Files:
-
- gnuradio/trunk/config/grc_gcell.m4 (modified) (1 diff)
- gnuradio/trunk/configure.ac (modified) (1 diff)
- gnuradio/trunk/gcell/src/apps/Makefile.am (modified) (2 diffs)
- gnuradio/trunk/gcell/src/apps/benchmark_dma.cc (modified) (3 diffs)
- gnuradio/trunk/gcell/src/apps/benchmark_nop.cc (modified) (3 diffs)
- gnuradio/trunk/mblock/src/lib/Makefile.am (modified) (1 diff)
- gnuradio/trunk/mblock/src/lib/mb_time.cc (deleted)
- gnuradio/trunk/mblock/src/lib/mb_time.h (copied) (copied from gnuradio/branches/developers/eb/wip/mblock/src/lib/mb_time.h)
- gnuradio/trunk/omnithread/Makefile.am (modified) (3 diffs)
- gnuradio/trunk/omnithread/omni_time.cc (copied) (copied from gnuradio/branches/developers/eb/wip/omnithread/omni_time.cc)
- gnuradio/trunk/omnithread/omni_time.h (copied) (copied from gnuradio/branches/developers/eb/wip/omnithread/omni_time.h)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gnuradio/trunk/config/grc_gcell.m4
r8244 r8624 22 22 dnl GRC_WITH(gcell) 23 23 24 dnl Don't do gcell if omnithread or mblock skipped 25 dnl (The mblock dependency should be refactored, we're just using some timing utilities) 24 dnl Don't do gcell if omnithread skipped 26 25 GRC_CHECK_DEPENDENCY(gcell, omnithread) 27 GRC_CHECK_DEPENDENCY(gcell, mblock)28 26 29 27 dnl If execution gets to here, $passed will be: gnuradio/trunk/configure.ac
r8613 r8624 241 241 build_dirs="config" 242 242 GRC_OMNITHREAD dnl must come before gnuradio-core and mblock 243 GRC_GCELL 244 GRC_GNURADIO_CORE 243 245 GRC_PMT 244 246 GRC_MBLOCK dnl this must come after GRC_PMT 245 GRC_GCELL246 GRC_GNURADIO_CORE247 247 GRC_USRP 248 248 GRC_GR_USRP dnl this must come after GRC_USRP gnuradio/trunk/gcell/src/apps/Makefile.am
r8086 r8624 23 23 SUBDIRS = spu . 24 24 25 AM_CPPFLAGS = $(DEFINES) $(OMNITHREAD_INCLUDES) $(MBLOCK_INCLUDES)\25 AM_CPPFLAGS = $(DEFINES) $(OMNITHREAD_INCLUDES) \ 26 26 $(GCELL_INCLUDES) $(CPPUNIT_INCLUDES) $(WITH_INCLUDES) 27 27 … … 42 42 43 43 benchmark_dma_SOURCES = benchmark_dma.cc 44 benchmark_dma_LDADD = spu/benchmark_procs $(GCELL_LA) $(MBLOCK_LA)44 benchmark_dma_LDADD = spu/benchmark_procs $(GCELL_LA) 45 45 46 46 benchmark_nop_SOURCES = benchmark_nop.cc 47 benchmark_nop_LDADD = spu/benchmark_procs $(GCELL_LA) $(MBLOCK_LA)47 benchmark_nop_LDADD = spu/benchmark_procs $(GCELL_LA) gnuradio/trunk/gcell/src/apps/benchmark_dma.cc
r8209 r8624 24 24 #endif 25 25 #include "gc_job_manager.h" 26 #include "mb_time.h"26 #include <omni_time.h> 27 27 #include <getopt.h> 28 28 #include <stdlib.h> … … 149 149 for (int iter = 0; iter < 1; iter++){ 150 150 151 mb_time t_start = mb_time::time();151 omni_time t_start = omni_time::time(); 152 152 153 153 nsubmitted = 0; … … 204 204 205 205 // stop timing 206 mb_time t_stop = mb_time::time();206 omni_time t_stop = omni_time::time(); 207 207 208 208 double delta = (t_stop - t_start).double_time(); gnuradio/trunk/gcell/src/apps/benchmark_nop.cc
r8209 r8624 24 24 #endif 25 25 #include "gc_job_manager.h" 26 #include "mb_time.h"26 #include <omni_time.h> 27 27 #include <getopt.h> 28 28 #include <stdlib.h> … … 74 74 } 75 75 76 mb_time t_start = mb_time::time();76 omni_time t_start = omni_time::time(); 77 77 78 78 ci = 0; … … 123 123 124 124 // stop timing 125 mb_time t_stop = mb_time::time();125 omni_time t_stop = omni_time::time(); 126 126 double delta = (t_stop - t_start).double_time(); 127 127 printf("nspes: %2d udelay: %4d elapsed_time: %7.3f njobs: %g speedup: %6.3f\n", gnuradio/trunk/mblock/src/lib/Makefile.am
r7769 r8624 62 62 mb_runtime_nop.cc \ 63 63 mb_runtime_thread_per_block.cc \ 64 mb_time.cc \65 64 mb_timer_queue.cc \ 66 65 mb_util.cc \ gnuradio/trunk/omnithread/Makefile.am
r7769 r8624 38 38 if OMNITHREAD_POSIX 39 39 libgromnithread_la_SOURCES = \ 40 omni_time.cc \ 40 41 posix.cc 41 42 endif … … 43 44 if OMNITHREAD_NT 44 45 libgromnithread_la_SOURCES = \ 46 omni_time.cc \ 45 47 nt.cc 46 48 endif … … 68 70 grinclude_HEADERS = \ 69 71 omnithread.h \ 72 omni_time.h \ 70 73 ot_mach.h \ 71 74 ot_nt.h \
