├── .gitignore ├── Doxyfile ├── INSTALL ├── Makefile ├── Makefile.inc ├── README.md ├── example ├── Makefile ├── gasdev.c ├── ran1.c └── testdedisp.c ├── html ├── bug.html ├── dedisp_8h-source.html ├── dedisp_8h.html ├── doxygen.css ├── doxygen.png ├── files.html ├── globals.html ├── globals_enum.html ├── globals_func.html ├── globals_type.html ├── index.html ├── pages.html ├── tab_b.gif ├── tab_l.gif ├── tab_r.gif └── tabs.css ├── libdedisp.version └── src ├── DedispPlan.hpp ├── dedisp.cu ├── dedisp.h ├── gpu_memory.hpp ├── kernels.cuh └── transpose.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | lib/ 3 | include/ 4 | example/testdedisp 5 | -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/Doxyfile -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/Makefile.inc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/README.md -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/gasdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/example/gasdev.c -------------------------------------------------------------------------------- /example/ran1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/example/ran1.c -------------------------------------------------------------------------------- /example/testdedisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/example/testdedisp.c -------------------------------------------------------------------------------- /html/bug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/html/bug.html -------------------------------------------------------------------------------- /html/dedisp_8h-source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/html/dedisp_8h-source.html -------------------------------------------------------------------------------- /html/dedisp_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/html/dedisp_8h.html -------------------------------------------------------------------------------- /html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/html/doxygen.css -------------------------------------------------------------------------------- /html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/html/doxygen.png -------------------------------------------------------------------------------- /html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/html/files.html -------------------------------------------------------------------------------- /html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/html/globals.html -------------------------------------------------------------------------------- /html/globals_enum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/html/globals_enum.html -------------------------------------------------------------------------------- /html/globals_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/html/globals_func.html -------------------------------------------------------------------------------- /html/globals_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/html/globals_type.html -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/html/index.html -------------------------------------------------------------------------------- /html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/html/pages.html -------------------------------------------------------------------------------- /html/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/html/tab_b.gif -------------------------------------------------------------------------------- /html/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/html/tab_l.gif -------------------------------------------------------------------------------- /html/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/html/tab_r.gif -------------------------------------------------------------------------------- /html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/html/tabs.css -------------------------------------------------------------------------------- /libdedisp.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/libdedisp.version -------------------------------------------------------------------------------- /src/DedispPlan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/src/DedispPlan.hpp -------------------------------------------------------------------------------- /src/dedisp.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/src/dedisp.cu -------------------------------------------------------------------------------- /src/dedisp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/src/dedisp.h -------------------------------------------------------------------------------- /src/gpu_memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/src/gpu_memory.hpp -------------------------------------------------------------------------------- /src/kernels.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/src/kernels.cuh -------------------------------------------------------------------------------- /src/transpose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajameson/dedisp/HEAD/src/transpose.hpp --------------------------------------------------------------------------------