├── .github └── workflows │ └── pages.yml ├── .gitignore ├── CMakeFiles └── cmake.check_cache ├── CMakeLists.txt ├── README.md ├── docs ├── Gemfile ├── _config.yml ├── cover.png └── index.md ├── include ├── .DS_Store ├── WKB │ ├── WKB.h │ └── spline.h ├── axiton │ ├── tracker.h │ └── trackerClass.h ├── comms │ └── comms.h ├── complexGpu.cuh ├── cosmos │ ├── cosmos.h │ └── jaxi-cosmo.txt ├── cub │ ├── .DS_Store │ ├── agent │ │ ├── agent_histogram.cuh │ │ ├── agent_radix_sort_downsweep.cuh │ │ ├── agent_radix_sort_upsweep.cuh │ │ ├── agent_reduce.cuh │ │ ├── agent_reduce_by_key.cuh │ │ ├── agent_rle.cuh │ │ ├── agent_scan.cuh │ │ ├── agent_segment_fixup.cuh │ │ ├── agent_select_if.cuh │ │ ├── agent_spmv_orig.cuh │ │ └── single_pass_scan_operators.cuh │ ├── block │ │ ├── block_adjacent_difference.cuh │ │ ├── block_discontinuity.cuh │ │ ├── block_exchange.cuh │ │ ├── block_histogram.cuh │ │ ├── block_load.cuh │ │ ├── block_radix_rank.cuh │ │ ├── block_radix_sort.cuh │ │ ├── block_raking_layout.cuh │ │ ├── block_reduce.cuh │ │ ├── block_scan.cuh │ │ ├── block_shuffle.cuh │ │ ├── block_store.cuh │ │ └── specializations │ │ │ ├── block_histogram_atomic.cuh │ │ │ ├── block_histogram_sort.cuh │ │ │ ├── block_reduce_raking.cuh │ │ │ ├── block_reduce_raking_commutative_only.cuh │ │ │ ├── block_reduce_warp_reductions.cuh │ │ │ ├── block_scan_raking.cuh │ │ │ ├── block_scan_warp_scans.cuh │ │ │ ├── block_scan_warp_scans2.cuh │ │ │ └── block_scan_warp_scans3.cuh │ ├── cub.cuh │ ├── device │ │ ├── device_histogram.cuh │ │ ├── device_partition.cuh │ │ ├── device_radix_sort.cuh │ │ ├── device_reduce.cuh │ │ ├── device_run_length_encode.cuh │ │ ├── device_scan.cuh │ │ ├── device_segmented_radix_sort.cuh │ │ ├── device_segmented_reduce.cuh │ │ ├── device_select.cuh │ │ ├── device_spmv.cuh │ │ └── dispatch │ │ │ ├── dispatch_histogram.cuh │ │ │ ├── dispatch_radix_sort.cuh │ │ │ ├── dispatch_reduce.cuh │ │ │ ├── dispatch_reduce_by_key.cuh │ │ │ ├── dispatch_rle.cuh │ │ │ ├── dispatch_scan.cuh │ │ │ ├── dispatch_select_if.cuh │ │ │ └── dispatch_spmv_orig.cuh │ ├── grid │ │ ├── grid_barrier.cuh │ │ ├── grid_even_share.cuh │ │ ├── grid_mapping.cuh │ │ └── grid_queue.cuh │ ├── host │ │ └── mutex.cuh │ ├── iterator │ │ ├── arg_index_input_iterator.cuh │ │ ├── cache_modified_input_iterator.cuh │ │ ├── cache_modified_output_iterator.cuh │ │ ├── constant_input_iterator.cuh │ │ ├── counting_input_iterator.cuh │ │ ├── discard_output_iterator.cuh │ │ ├── tex_obj_input_iterator.cuh │ │ ├── tex_ref_input_iterator.cuh │ │ └── transform_input_iterator.cuh │ ├── thread │ │ ├── thread_load.cuh │ │ ├── thread_operators.cuh │ │ ├── thread_reduce.cuh │ │ ├── thread_scan.cuh │ │ ├── thread_search.cuh │ │ └── thread_store.cuh │ ├── util_allocator.cuh │ ├── util_arch.cuh │ ├── util_debug.cuh │ ├── util_device.cuh │ ├── util_macro.cuh │ ├── util_namespace.cuh │ ├── util_ptx.cuh │ ├── util_type.cuh │ └── warp │ │ ├── specializations │ │ ├── warp_reduce_shfl.cuh │ │ ├── warp_reduce_smem.cuh │ │ ├── warp_scan_shfl.cuh │ │ └── warp_scan_smem.cuh │ │ ├── warp_reduce.cuh │ │ └── warp_scan.cuh ├── cudaErrors.h ├── energy │ ├── dContrast.h │ ├── energy.h │ ├── energyGpu.h │ └── energyXeon.h ├── enum-field.h ├── fft │ ├── fftCode.h │ └── fftCuda.h ├── gadget │ └── gadget_output.h ├── gen │ ├── anystringXeon.h │ ├── genConf.h │ ├── momConf.h │ ├── momGpu.h │ ├── prepropa.h │ ├── randGpu.h │ ├── randXeon.h │ ├── smoothGpu.h │ └── smoothXeon.h ├── gravity │ ├── gravityPaxionXeon.h │ ├── potential.h │ └── potentialClass.h ├── io │ ├── loops_io.h │ ├── output_nyx.h │ └── readWrite.h ├── kernelParms.cuh ├── map │ └── map.h ├── meas │ ├── meas.h │ └── measa.h ├── powerCpu.h ├── projector │ └── projector.h ├── propagator │ ├── allProp.h │ ├── fsPropThetaXeon.h │ ├── fsPropXeon.h │ ├── fs_acceleration.h │ ├── inLapla.h │ ├── laplacian.h │ ├── prop-def-mac.h │ ├── propBase.h │ ├── propClass.h │ ├── propGpu.h │ ├── propNaxXeon.h │ ├── propPaxXeon.h │ ├── propSimple.h │ ├── propThetaGpu.h │ ├── propThetaModXeon.h │ ├── propThetaXeon.h │ ├── propXeon.h │ ├── propagator.h │ ├── sPropThetaXeon.h │ └── sPropXeon.h ├── reducer │ └── reducer.h ├── scalar │ ├── folder.h │ ├── fourier.h │ ├── mendTheta.h │ ├── mendThetaGpu.h │ ├── mendThetaXeon.h │ ├── normCore.h │ ├── normCoreGpu.h │ ├── normCoreXeon.h │ ├── normField.h │ ├── normGpu.h │ ├── normXeon.h │ ├── scalar.h │ ├── scalarField.h │ ├── scaleField.h │ ├── scaleGpu.h │ ├── scaleXeon.h │ ├── theta2Cmplx.h │ ├── theta2CmplxGpu.h │ ├── theta2CmplxXeon.h │ ├── theta2NaxionXeon.h │ ├── theta2PaxionXeon.h │ ├── thetaGpu.h │ ├── thetaNaxion.h │ ├── thetaPaxion.h │ ├── thetaScalar.h │ ├── thetaXeon.h │ └── varNQCD.h ├── spectrum │ ├── LLUTs.h │ ├── masker.h │ └── spectrum.h ├── strings │ ├── labeling_tools.h │ ├── length.h │ ├── stringCpu.h │ ├── stringGpu.h │ ├── stringXeon.h │ └── strings.h └── utils │ ├── binner.h │ ├── flopCounter.h │ ├── index.cuh │ ├── index.h │ ├── kgvops.h │ ├── kgvopsXeon.h │ ├── logger.h │ ├── logger.old.h │ ├── memAlloc.h │ ├── misc.h │ ├── parse.h │ ├── profiler.h │ ├── reduceGpu.cuh │ ├── simd.h │ ├── simpleops.h │ ├── system.h │ ├── triSimd.h │ ├── tunable.h │ └── utils.h ├── lib ├── CMakeLists.txt ├── WKB │ └── WKB.cpp ├── axiton │ └── tracker.cpp ├── comms │ └── comms.cpp ├── cosmos │ └── cosmos.cpp ├── energy │ ├── dContrast.cpp │ ├── energy.cpp │ ├── energyGpu.cu │ ├── energyNaxionXeon.cpp │ ├── energyPaxionXeon.cpp │ ├── energyThetaGpu.cu │ ├── energyThetaXeon.cpp │ └── energyXeon.cpp ├── fft │ ├── fftCode.cpp │ └── fftCuda.cpp ├── gadget │ └── gadget_output.cpp ├── gen │ ├── anystringXeon.cpp │ ├── genConf.cpp │ ├── momConf.cpp │ ├── momGpu.cu │ ├── prepropa.cpp │ ├── prepropagator.cpp │ ├── randGpu.cu │ ├── randXeon.cpp │ ├── smoothGpu.cpp │ ├── smoothKernel.cu │ └── smoothXeon.cpp ├── gravity │ └── potential.cpp ├── io │ ├── loops_io.cpp │ ├── output_nyx.cpp │ ├── readWrite.pHdf5.cpp │ └── writeStringCo.cpp ├── map │ ├── map.cpp │ └── maps.cpp ├── meas │ └── measa.cpp ├── powerCpu.cpp ├── powerCpusimple.cpp ├── powerCpusimple_legacy.cpp ├── powerCpusimple_old.cpp ├── projector │ └── projector.cpp ├── propagator │ ├── fs_acceleration.cpp │ ├── laplacian.cpp │ ├── nlaplacian.cpp │ ├── propGpu.cu │ ├── propThetaGpu.cu │ ├── propThetaModGpu.cu │ └── propagator.cpp ├── reducer │ └── reducer.cpp ├── scalar │ ├── folder.cpp │ ├── fourier.cpp │ ├── mendTheta.cpp │ ├── mendThetaGpu.cu │ ├── mendThetaXeon.cpp │ ├── normCore.cpp │ ├── normCoreGpu.cu │ ├── normCoreXeon.cpp │ ├── normField.cpp │ ├── normGpu.cu │ ├── normXeon.cpp │ ├── scalarField.cpp │ ├── scaleField.cpp │ ├── scaleGpu.cu │ ├── scaleXeon.cpp │ ├── scaleXeonSimd.cpp │ ├── theta2Cmplx.cpp │ ├── theta2CmplxGpu.cu │ ├── theta2CmplxXeon.cpp │ ├── theta2Naxion.cpp │ ├── theta2NaxionXeon.cpp │ ├── theta2Paxion.cpp │ ├── theta2PaxionXeon.cpp │ ├── thetaGpu.cu │ ├── thetaScalar.cpp │ ├── thetaXeon.cpp │ └── varNQCD.cpp ├── spectrum │ └── spectrum.cpp ├── strings │ ├── length.cpp │ ├── length_new.cpp │ ├── stringCpu.cpp │ ├── stringGpu.cu │ ├── stringXeon.cpp │ └── strings.cpp └── utils │ ├── kgvops.cpp │ ├── kgvopsXeon.cpp │ ├── logger.cpp │ ├── memAlloc.cpp │ ├── misc.cpp │ ├── parse.cpp │ ├── profiler.cpp │ └── system.cpp ├── scripts ├── .DS_Store ├── analise.sh ├── analisis │ ├── TEST_pyjaxions.ipynb │ └── analisis.ipynb ├── axaxdir.sh ├── contrastevol.py ├── en_fig.sh ├── examples │ ├── anyIC │ │ └── AnyIC.ipynb │ ├── anystring │ │ ├── .ipynb_checkpoints │ │ │ └── posspace-checkpoint.ipynb │ │ ├── README │ │ ├── posspace.ipynb │ │ └── vax-ex.sh │ ├── benchmark │ │ ├── measfile.dat │ │ ├── simulation-outlook.ipynb │ │ └── vax-ex.sh │ ├── loops │ │ └── string-loops-example.ipynb │ └── simgen │ │ └── simgen.ipynb ├── h5cpBNS.sh ├── jaxi ├── jaxions.tex ├── jobs │ ├── .DS_Store │ ├── Nlaplaprob.sh │ ├── Nlaplaprob │ │ ├── .DS_Store │ │ ├── Untitled.ipynb │ │ ├── kkk.dat │ │ ├── rmasktable.dat │ │ └── vax-ex.sh │ ├── maskcalib │ │ ├── README │ │ ├── calimask.ipynb │ │ ├── calimask2.ipynb │ │ ├── calimask4th.ipynb │ │ ├── calimask5th.ipynb │ │ ├── fifth-test.sh │ │ ├── first-test.sh │ │ ├── fourth-test.sh │ │ ├── rmasktable-4th.dat │ │ ├── rmasktable.dat │ │ ├── second-test.sh │ │ └── third-test.sh │ └── maskedenergy │ │ ├── README │ │ ├── maskedenergy.sh │ │ └── maskenergy.ipynb ├── makeVideo3D.py ├── mcmc.py ├── measfile.py ├── movie-maker.ipynb ├── params.py ├── paxion │ └── Pax_example.ipynb ├── plot2D.py ├── plot3Dconf.py ├── plot3Ddens.py ├── plot3Dslice.py ├── plot4D.py ├── plotCoStr.py ├── plotLabStr.py ├── plotMask.py ├── plotStr.py ├── prepareStr.py ├── pspecevol.py ├── pyaxions │ ├── .DS_Store │ ├── .ipynb_checkpoints │ │ └── spe_legend-checkpoint.ipynb │ ├── .jupyter │ │ └── desktop-workspaces │ │ │ └── default-37a8.jupyterlab-workspace │ ├── __init__.py │ ├── amr_interface.py │ ├── data │ │ └── 512mod.p │ ├── fft.py │ ├── jaxions.py │ ├── randomstrings.py │ ├── simgen.py │ ├── spaxcreate.py │ ├── spe_legend.ipynb │ ├── specfromF.py │ ├── speck.py │ ├── spectools.py │ ├── spectrum.py │ └── templates.py ├── raxion3d.example.sh ├── sim-example.sh ├── simulation-outlook.ipynb ├── specevol.py ├── string-pos-ex.ipynb ├── summaryplot.py ├── tax.sh ├── test.py ├── thetaBINevol.py ├── vax-ex.sh └── vaxion3d.example.sh └── test ├── CMakeLists.txt ├── Paxions.cpp ├── VQcdTest.cpp ├── WKBaxion.cpp ├── WKBonce.cpp ├── WKVaxion.cpp ├── aTheta.cpp ├── axions.cpp ├── contrastmap.cpp ├── filesizetest.cpp ├── gadgetme.cpp ├── gravi.cpp ├── gravi2.cpp ├── gravi3.cpp ├── hyper.cpp ├── ic_test.cpp ├── ic_tests.cpp ├── oldstuff ├── axions_simple.cpp ├── hallo.cpp └── testground.cpp ├── probi.cpp ├── reduce.cpp ├── sinTest.cpp ├── stringstudy.cpp ├── testFFT.cpp ├── testFT.cpp ├── testGPU.cpp ├── testHdf5.cpp ├── testMendTheta.cpp └── vaxions.cpp /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/README.md -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/docs/cover.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | Under construction ... 2 | -------------------------------------------------------------------------------- /include/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/.DS_Store -------------------------------------------------------------------------------- /include/WKB/WKB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/WKB/WKB.h -------------------------------------------------------------------------------- /include/WKB/spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/WKB/spline.h -------------------------------------------------------------------------------- /include/axiton/tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/axiton/tracker.h -------------------------------------------------------------------------------- /include/axiton/trackerClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/axiton/trackerClass.h -------------------------------------------------------------------------------- /include/comms/comms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/comms/comms.h -------------------------------------------------------------------------------- /include/complexGpu.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/complexGpu.cuh -------------------------------------------------------------------------------- /include/cosmos/cosmos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cosmos/cosmos.h -------------------------------------------------------------------------------- /include/cosmos/jaxi-cosmo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cosmos/jaxi-cosmo.txt -------------------------------------------------------------------------------- /include/cub/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/.DS_Store -------------------------------------------------------------------------------- /include/cub/agent/agent_histogram.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/agent/agent_histogram.cuh -------------------------------------------------------------------------------- /include/cub/agent/agent_radix_sort_downsweep.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/agent/agent_radix_sort_downsweep.cuh -------------------------------------------------------------------------------- /include/cub/agent/agent_radix_sort_upsweep.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/agent/agent_radix_sort_upsweep.cuh -------------------------------------------------------------------------------- /include/cub/agent/agent_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/agent/agent_reduce.cuh -------------------------------------------------------------------------------- /include/cub/agent/agent_reduce_by_key.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/agent/agent_reduce_by_key.cuh -------------------------------------------------------------------------------- /include/cub/agent/agent_rle.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/agent/agent_rle.cuh -------------------------------------------------------------------------------- /include/cub/agent/agent_scan.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/agent/agent_scan.cuh -------------------------------------------------------------------------------- /include/cub/agent/agent_segment_fixup.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/agent/agent_segment_fixup.cuh -------------------------------------------------------------------------------- /include/cub/agent/agent_select_if.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/agent/agent_select_if.cuh -------------------------------------------------------------------------------- /include/cub/agent/agent_spmv_orig.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/agent/agent_spmv_orig.cuh -------------------------------------------------------------------------------- /include/cub/agent/single_pass_scan_operators.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/agent/single_pass_scan_operators.cuh -------------------------------------------------------------------------------- /include/cub/block/block_adjacent_difference.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/block_adjacent_difference.cuh -------------------------------------------------------------------------------- /include/cub/block/block_discontinuity.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/block_discontinuity.cuh -------------------------------------------------------------------------------- /include/cub/block/block_exchange.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/block_exchange.cuh -------------------------------------------------------------------------------- /include/cub/block/block_histogram.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/block_histogram.cuh -------------------------------------------------------------------------------- /include/cub/block/block_load.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/block_load.cuh -------------------------------------------------------------------------------- /include/cub/block/block_radix_rank.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/block_radix_rank.cuh -------------------------------------------------------------------------------- /include/cub/block/block_radix_sort.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/block_radix_sort.cuh -------------------------------------------------------------------------------- /include/cub/block/block_raking_layout.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/block_raking_layout.cuh -------------------------------------------------------------------------------- /include/cub/block/block_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/block_reduce.cuh -------------------------------------------------------------------------------- /include/cub/block/block_scan.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/block_scan.cuh -------------------------------------------------------------------------------- /include/cub/block/block_shuffle.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/block_shuffle.cuh -------------------------------------------------------------------------------- /include/cub/block/block_store.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/block_store.cuh -------------------------------------------------------------------------------- /include/cub/block/specializations/block_histogram_atomic.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/specializations/block_histogram_atomic.cuh -------------------------------------------------------------------------------- /include/cub/block/specializations/block_histogram_sort.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/specializations/block_histogram_sort.cuh -------------------------------------------------------------------------------- /include/cub/block/specializations/block_reduce_raking.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/specializations/block_reduce_raking.cuh -------------------------------------------------------------------------------- /include/cub/block/specializations/block_reduce_raking_commutative_only.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/specializations/block_reduce_raking_commutative_only.cuh -------------------------------------------------------------------------------- /include/cub/block/specializations/block_reduce_warp_reductions.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/specializations/block_reduce_warp_reductions.cuh -------------------------------------------------------------------------------- /include/cub/block/specializations/block_scan_raking.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/specializations/block_scan_raking.cuh -------------------------------------------------------------------------------- /include/cub/block/specializations/block_scan_warp_scans.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/specializations/block_scan_warp_scans.cuh -------------------------------------------------------------------------------- /include/cub/block/specializations/block_scan_warp_scans2.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/specializations/block_scan_warp_scans2.cuh -------------------------------------------------------------------------------- /include/cub/block/specializations/block_scan_warp_scans3.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/block/specializations/block_scan_warp_scans3.cuh -------------------------------------------------------------------------------- /include/cub/cub.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/cub.cuh -------------------------------------------------------------------------------- /include/cub/device/device_histogram.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/device/device_histogram.cuh -------------------------------------------------------------------------------- /include/cub/device/device_partition.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/device/device_partition.cuh -------------------------------------------------------------------------------- /include/cub/device/device_radix_sort.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/device/device_radix_sort.cuh -------------------------------------------------------------------------------- /include/cub/device/device_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/device/device_reduce.cuh -------------------------------------------------------------------------------- /include/cub/device/device_run_length_encode.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/device/device_run_length_encode.cuh -------------------------------------------------------------------------------- /include/cub/device/device_scan.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/device/device_scan.cuh -------------------------------------------------------------------------------- /include/cub/device/device_segmented_radix_sort.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/device/device_segmented_radix_sort.cuh -------------------------------------------------------------------------------- /include/cub/device/device_segmented_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/device/device_segmented_reduce.cuh -------------------------------------------------------------------------------- /include/cub/device/device_select.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/device/device_select.cuh -------------------------------------------------------------------------------- /include/cub/device/device_spmv.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/device/device_spmv.cuh -------------------------------------------------------------------------------- /include/cub/device/dispatch/dispatch_histogram.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/device/dispatch/dispatch_histogram.cuh -------------------------------------------------------------------------------- /include/cub/device/dispatch/dispatch_radix_sort.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/device/dispatch/dispatch_radix_sort.cuh -------------------------------------------------------------------------------- /include/cub/device/dispatch/dispatch_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/device/dispatch/dispatch_reduce.cuh -------------------------------------------------------------------------------- /include/cub/device/dispatch/dispatch_reduce_by_key.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/device/dispatch/dispatch_reduce_by_key.cuh -------------------------------------------------------------------------------- /include/cub/device/dispatch/dispatch_rle.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/device/dispatch/dispatch_rle.cuh -------------------------------------------------------------------------------- /include/cub/device/dispatch/dispatch_scan.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/device/dispatch/dispatch_scan.cuh -------------------------------------------------------------------------------- /include/cub/device/dispatch/dispatch_select_if.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/device/dispatch/dispatch_select_if.cuh -------------------------------------------------------------------------------- /include/cub/device/dispatch/dispatch_spmv_orig.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/device/dispatch/dispatch_spmv_orig.cuh -------------------------------------------------------------------------------- /include/cub/grid/grid_barrier.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/grid/grid_barrier.cuh -------------------------------------------------------------------------------- /include/cub/grid/grid_even_share.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/grid/grid_even_share.cuh -------------------------------------------------------------------------------- /include/cub/grid/grid_mapping.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/grid/grid_mapping.cuh -------------------------------------------------------------------------------- /include/cub/grid/grid_queue.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/grid/grid_queue.cuh -------------------------------------------------------------------------------- /include/cub/host/mutex.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/host/mutex.cuh -------------------------------------------------------------------------------- /include/cub/iterator/arg_index_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/iterator/arg_index_input_iterator.cuh -------------------------------------------------------------------------------- /include/cub/iterator/cache_modified_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/iterator/cache_modified_input_iterator.cuh -------------------------------------------------------------------------------- /include/cub/iterator/cache_modified_output_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/iterator/cache_modified_output_iterator.cuh -------------------------------------------------------------------------------- /include/cub/iterator/constant_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/iterator/constant_input_iterator.cuh -------------------------------------------------------------------------------- /include/cub/iterator/counting_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/iterator/counting_input_iterator.cuh -------------------------------------------------------------------------------- /include/cub/iterator/discard_output_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/iterator/discard_output_iterator.cuh -------------------------------------------------------------------------------- /include/cub/iterator/tex_obj_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/iterator/tex_obj_input_iterator.cuh -------------------------------------------------------------------------------- /include/cub/iterator/tex_ref_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/iterator/tex_ref_input_iterator.cuh -------------------------------------------------------------------------------- /include/cub/iterator/transform_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/iterator/transform_input_iterator.cuh -------------------------------------------------------------------------------- /include/cub/thread/thread_load.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/thread/thread_load.cuh -------------------------------------------------------------------------------- /include/cub/thread/thread_operators.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/thread/thread_operators.cuh -------------------------------------------------------------------------------- /include/cub/thread/thread_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/thread/thread_reduce.cuh -------------------------------------------------------------------------------- /include/cub/thread/thread_scan.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/thread/thread_scan.cuh -------------------------------------------------------------------------------- /include/cub/thread/thread_search.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/thread/thread_search.cuh -------------------------------------------------------------------------------- /include/cub/thread/thread_store.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/thread/thread_store.cuh -------------------------------------------------------------------------------- /include/cub/util_allocator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/util_allocator.cuh -------------------------------------------------------------------------------- /include/cub/util_arch.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/util_arch.cuh -------------------------------------------------------------------------------- /include/cub/util_debug.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/util_debug.cuh -------------------------------------------------------------------------------- /include/cub/util_device.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/util_device.cuh -------------------------------------------------------------------------------- /include/cub/util_macro.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/util_macro.cuh -------------------------------------------------------------------------------- /include/cub/util_namespace.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/util_namespace.cuh -------------------------------------------------------------------------------- /include/cub/util_ptx.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/util_ptx.cuh -------------------------------------------------------------------------------- /include/cub/util_type.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/util_type.cuh -------------------------------------------------------------------------------- /include/cub/warp/specializations/warp_reduce_shfl.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/warp/specializations/warp_reduce_shfl.cuh -------------------------------------------------------------------------------- /include/cub/warp/specializations/warp_reduce_smem.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/warp/specializations/warp_reduce_smem.cuh -------------------------------------------------------------------------------- /include/cub/warp/specializations/warp_scan_shfl.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/warp/specializations/warp_scan_shfl.cuh -------------------------------------------------------------------------------- /include/cub/warp/specializations/warp_scan_smem.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/warp/specializations/warp_scan_smem.cuh -------------------------------------------------------------------------------- /include/cub/warp/warp_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/warp/warp_reduce.cuh -------------------------------------------------------------------------------- /include/cub/warp/warp_scan.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cub/warp/warp_scan.cuh -------------------------------------------------------------------------------- /include/cudaErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/cudaErrors.h -------------------------------------------------------------------------------- /include/energy/dContrast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/energy/dContrast.h -------------------------------------------------------------------------------- /include/energy/energy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/energy/energy.h -------------------------------------------------------------------------------- /include/energy/energyGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/energy/energyGpu.h -------------------------------------------------------------------------------- /include/energy/energyXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/energy/energyXeon.h -------------------------------------------------------------------------------- /include/enum-field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/enum-field.h -------------------------------------------------------------------------------- /include/fft/fftCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/fft/fftCode.h -------------------------------------------------------------------------------- /include/fft/fftCuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/fft/fftCuda.h -------------------------------------------------------------------------------- /include/gadget/gadget_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/gadget/gadget_output.h -------------------------------------------------------------------------------- /include/gen/anystringXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/gen/anystringXeon.h -------------------------------------------------------------------------------- /include/gen/genConf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/gen/genConf.h -------------------------------------------------------------------------------- /include/gen/momConf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/gen/momConf.h -------------------------------------------------------------------------------- /include/gen/momGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/gen/momGpu.h -------------------------------------------------------------------------------- /include/gen/prepropa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/gen/prepropa.h -------------------------------------------------------------------------------- /include/gen/randGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/gen/randGpu.h -------------------------------------------------------------------------------- /include/gen/randXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/gen/randXeon.h -------------------------------------------------------------------------------- /include/gen/smoothGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/gen/smoothGpu.h -------------------------------------------------------------------------------- /include/gen/smoothXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/gen/smoothXeon.h -------------------------------------------------------------------------------- /include/gravity/gravityPaxionXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/gravity/gravityPaxionXeon.h -------------------------------------------------------------------------------- /include/gravity/potential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/gravity/potential.h -------------------------------------------------------------------------------- /include/gravity/potentialClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/gravity/potentialClass.h -------------------------------------------------------------------------------- /include/io/loops_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/io/loops_io.h -------------------------------------------------------------------------------- /include/io/output_nyx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/io/output_nyx.h -------------------------------------------------------------------------------- /include/io/readWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/io/readWrite.h -------------------------------------------------------------------------------- /include/kernelParms.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/kernelParms.cuh -------------------------------------------------------------------------------- /include/map/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/map/map.h -------------------------------------------------------------------------------- /include/meas/meas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/meas/meas.h -------------------------------------------------------------------------------- /include/meas/measa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/meas/measa.h -------------------------------------------------------------------------------- /include/powerCpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/powerCpu.h -------------------------------------------------------------------------------- /include/projector/projector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/projector/projector.h -------------------------------------------------------------------------------- /include/propagator/allProp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/propagator/allProp.h -------------------------------------------------------------------------------- /include/propagator/fsPropThetaXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/propagator/fsPropThetaXeon.h -------------------------------------------------------------------------------- /include/propagator/fsPropXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/propagator/fsPropXeon.h -------------------------------------------------------------------------------- /include/propagator/fs_acceleration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/propagator/fs_acceleration.h -------------------------------------------------------------------------------- /include/propagator/inLapla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/propagator/inLapla.h -------------------------------------------------------------------------------- /include/propagator/laplacian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/propagator/laplacian.h -------------------------------------------------------------------------------- /include/propagator/prop-def-mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/propagator/prop-def-mac.h -------------------------------------------------------------------------------- /include/propagator/propBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/propagator/propBase.h -------------------------------------------------------------------------------- /include/propagator/propClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/propagator/propClass.h -------------------------------------------------------------------------------- /include/propagator/propGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/propagator/propGpu.h -------------------------------------------------------------------------------- /include/propagator/propNaxXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/propagator/propNaxXeon.h -------------------------------------------------------------------------------- /include/propagator/propPaxXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/propagator/propPaxXeon.h -------------------------------------------------------------------------------- /include/propagator/propSimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/propagator/propSimple.h -------------------------------------------------------------------------------- /include/propagator/propThetaGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/propagator/propThetaGpu.h -------------------------------------------------------------------------------- /include/propagator/propThetaModXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/propagator/propThetaModXeon.h -------------------------------------------------------------------------------- /include/propagator/propThetaXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/propagator/propThetaXeon.h -------------------------------------------------------------------------------- /include/propagator/propXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/propagator/propXeon.h -------------------------------------------------------------------------------- /include/propagator/propagator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/propagator/propagator.h -------------------------------------------------------------------------------- /include/propagator/sPropThetaXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/propagator/sPropThetaXeon.h -------------------------------------------------------------------------------- /include/propagator/sPropXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/propagator/sPropXeon.h -------------------------------------------------------------------------------- /include/reducer/reducer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/reducer/reducer.h -------------------------------------------------------------------------------- /include/scalar/folder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/folder.h -------------------------------------------------------------------------------- /include/scalar/fourier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/fourier.h -------------------------------------------------------------------------------- /include/scalar/mendTheta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/mendTheta.h -------------------------------------------------------------------------------- /include/scalar/mendThetaGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/mendThetaGpu.h -------------------------------------------------------------------------------- /include/scalar/mendThetaXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/mendThetaXeon.h -------------------------------------------------------------------------------- /include/scalar/normCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/normCore.h -------------------------------------------------------------------------------- /include/scalar/normCoreGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/normCoreGpu.h -------------------------------------------------------------------------------- /include/scalar/normCoreXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/normCoreXeon.h -------------------------------------------------------------------------------- /include/scalar/normField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/normField.h -------------------------------------------------------------------------------- /include/scalar/normGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/normGpu.h -------------------------------------------------------------------------------- /include/scalar/normXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/normXeon.h -------------------------------------------------------------------------------- /include/scalar/scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/scalar.h -------------------------------------------------------------------------------- /include/scalar/scalarField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/scalarField.h -------------------------------------------------------------------------------- /include/scalar/scaleField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/scaleField.h -------------------------------------------------------------------------------- /include/scalar/scaleGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/scaleGpu.h -------------------------------------------------------------------------------- /include/scalar/scaleXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/scaleXeon.h -------------------------------------------------------------------------------- /include/scalar/theta2Cmplx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/theta2Cmplx.h -------------------------------------------------------------------------------- /include/scalar/theta2CmplxGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/theta2CmplxGpu.h -------------------------------------------------------------------------------- /include/scalar/theta2CmplxXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/theta2CmplxXeon.h -------------------------------------------------------------------------------- /include/scalar/theta2NaxionXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/theta2NaxionXeon.h -------------------------------------------------------------------------------- /include/scalar/theta2PaxionXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/theta2PaxionXeon.h -------------------------------------------------------------------------------- /include/scalar/thetaGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/thetaGpu.h -------------------------------------------------------------------------------- /include/scalar/thetaNaxion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/thetaNaxion.h -------------------------------------------------------------------------------- /include/scalar/thetaPaxion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/thetaPaxion.h -------------------------------------------------------------------------------- /include/scalar/thetaScalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/thetaScalar.h -------------------------------------------------------------------------------- /include/scalar/thetaXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/thetaXeon.h -------------------------------------------------------------------------------- /include/scalar/varNQCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/scalar/varNQCD.h -------------------------------------------------------------------------------- /include/spectrum/LLUTs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/spectrum/LLUTs.h -------------------------------------------------------------------------------- /include/spectrum/masker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/spectrum/masker.h -------------------------------------------------------------------------------- /include/spectrum/spectrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/spectrum/spectrum.h -------------------------------------------------------------------------------- /include/strings/labeling_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/strings/labeling_tools.h -------------------------------------------------------------------------------- /include/strings/length.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/strings/length.h -------------------------------------------------------------------------------- /include/strings/stringCpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/strings/stringCpu.h -------------------------------------------------------------------------------- /include/strings/stringGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/strings/stringGpu.h -------------------------------------------------------------------------------- /include/strings/stringXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/strings/stringXeon.h -------------------------------------------------------------------------------- /include/strings/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/strings/strings.h -------------------------------------------------------------------------------- /include/utils/binner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/utils/binner.h -------------------------------------------------------------------------------- /include/utils/flopCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/utils/flopCounter.h -------------------------------------------------------------------------------- /include/utils/index.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/utils/index.cuh -------------------------------------------------------------------------------- /include/utils/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/utils/index.h -------------------------------------------------------------------------------- /include/utils/kgvops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/utils/kgvops.h -------------------------------------------------------------------------------- /include/utils/kgvopsXeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/utils/kgvopsXeon.h -------------------------------------------------------------------------------- /include/utils/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/utils/logger.h -------------------------------------------------------------------------------- /include/utils/logger.old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/utils/logger.old.h -------------------------------------------------------------------------------- /include/utils/memAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/utils/memAlloc.h -------------------------------------------------------------------------------- /include/utils/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/utils/misc.h -------------------------------------------------------------------------------- /include/utils/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/utils/parse.h -------------------------------------------------------------------------------- /include/utils/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/utils/profiler.h -------------------------------------------------------------------------------- /include/utils/reduceGpu.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/utils/reduceGpu.cuh -------------------------------------------------------------------------------- /include/utils/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/utils/simd.h -------------------------------------------------------------------------------- /include/utils/simpleops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/utils/simpleops.h -------------------------------------------------------------------------------- /include/utils/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/utils/system.h -------------------------------------------------------------------------------- /include/utils/triSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/utils/triSimd.h -------------------------------------------------------------------------------- /include/utils/tunable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/utils/tunable.h -------------------------------------------------------------------------------- /include/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/include/utils/utils.h -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/WKB/WKB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/WKB/WKB.cpp -------------------------------------------------------------------------------- /lib/axiton/tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/axiton/tracker.cpp -------------------------------------------------------------------------------- /lib/comms/comms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/comms/comms.cpp -------------------------------------------------------------------------------- /lib/cosmos/cosmos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/cosmos/cosmos.cpp -------------------------------------------------------------------------------- /lib/energy/dContrast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/energy/dContrast.cpp -------------------------------------------------------------------------------- /lib/energy/energy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/energy/energy.cpp -------------------------------------------------------------------------------- /lib/energy/energyGpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/energy/energyGpu.cu -------------------------------------------------------------------------------- /lib/energy/energyNaxionXeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/energy/energyNaxionXeon.cpp -------------------------------------------------------------------------------- /lib/energy/energyPaxionXeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/energy/energyPaxionXeon.cpp -------------------------------------------------------------------------------- /lib/energy/energyThetaGpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/energy/energyThetaGpu.cu -------------------------------------------------------------------------------- /lib/energy/energyThetaXeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/energy/energyThetaXeon.cpp -------------------------------------------------------------------------------- /lib/energy/energyXeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/energy/energyXeon.cpp -------------------------------------------------------------------------------- /lib/fft/fftCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/fft/fftCode.cpp -------------------------------------------------------------------------------- /lib/fft/fftCuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/fft/fftCuda.cpp -------------------------------------------------------------------------------- /lib/gadget/gadget_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/gadget/gadget_output.cpp -------------------------------------------------------------------------------- /lib/gen/anystringXeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/gen/anystringXeon.cpp -------------------------------------------------------------------------------- /lib/gen/genConf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/gen/genConf.cpp -------------------------------------------------------------------------------- /lib/gen/momConf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/gen/momConf.cpp -------------------------------------------------------------------------------- /lib/gen/momGpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/gen/momGpu.cu -------------------------------------------------------------------------------- /lib/gen/prepropa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/gen/prepropa.cpp -------------------------------------------------------------------------------- /lib/gen/prepropagator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/gen/prepropagator.cpp -------------------------------------------------------------------------------- /lib/gen/randGpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/gen/randGpu.cu -------------------------------------------------------------------------------- /lib/gen/randXeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/gen/randXeon.cpp -------------------------------------------------------------------------------- /lib/gen/smoothGpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/gen/smoothGpu.cpp -------------------------------------------------------------------------------- /lib/gen/smoothKernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/gen/smoothKernel.cu -------------------------------------------------------------------------------- /lib/gen/smoothXeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/gen/smoothXeon.cpp -------------------------------------------------------------------------------- /lib/gravity/potential.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/gravity/potential.cpp -------------------------------------------------------------------------------- /lib/io/loops_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/io/loops_io.cpp -------------------------------------------------------------------------------- /lib/io/output_nyx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/io/output_nyx.cpp -------------------------------------------------------------------------------- /lib/io/readWrite.pHdf5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/io/readWrite.pHdf5.cpp -------------------------------------------------------------------------------- /lib/io/writeStringCo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/io/writeStringCo.cpp -------------------------------------------------------------------------------- /lib/map/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/map/map.cpp -------------------------------------------------------------------------------- /lib/map/maps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/map/maps.cpp -------------------------------------------------------------------------------- /lib/meas/measa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/meas/measa.cpp -------------------------------------------------------------------------------- /lib/powerCpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/powerCpu.cpp -------------------------------------------------------------------------------- /lib/powerCpusimple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/powerCpusimple.cpp -------------------------------------------------------------------------------- /lib/powerCpusimple_legacy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/powerCpusimple_legacy.cpp -------------------------------------------------------------------------------- /lib/powerCpusimple_old.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/powerCpusimple_old.cpp -------------------------------------------------------------------------------- /lib/projector/projector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/projector/projector.cpp -------------------------------------------------------------------------------- /lib/propagator/fs_acceleration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/propagator/fs_acceleration.cpp -------------------------------------------------------------------------------- /lib/propagator/laplacian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/propagator/laplacian.cpp -------------------------------------------------------------------------------- /lib/propagator/nlaplacian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/propagator/nlaplacian.cpp -------------------------------------------------------------------------------- /lib/propagator/propGpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/propagator/propGpu.cu -------------------------------------------------------------------------------- /lib/propagator/propThetaGpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/propagator/propThetaGpu.cu -------------------------------------------------------------------------------- /lib/propagator/propThetaModGpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/propagator/propThetaModGpu.cu -------------------------------------------------------------------------------- /lib/propagator/propagator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/propagator/propagator.cpp -------------------------------------------------------------------------------- /lib/reducer/reducer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/reducer/reducer.cpp -------------------------------------------------------------------------------- /lib/scalar/folder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/folder.cpp -------------------------------------------------------------------------------- /lib/scalar/fourier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/fourier.cpp -------------------------------------------------------------------------------- /lib/scalar/mendTheta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/mendTheta.cpp -------------------------------------------------------------------------------- /lib/scalar/mendThetaGpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/mendThetaGpu.cu -------------------------------------------------------------------------------- /lib/scalar/mendThetaXeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/mendThetaXeon.cpp -------------------------------------------------------------------------------- /lib/scalar/normCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/normCore.cpp -------------------------------------------------------------------------------- /lib/scalar/normCoreGpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/normCoreGpu.cu -------------------------------------------------------------------------------- /lib/scalar/normCoreXeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/normCoreXeon.cpp -------------------------------------------------------------------------------- /lib/scalar/normField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/normField.cpp -------------------------------------------------------------------------------- /lib/scalar/normGpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/normGpu.cu -------------------------------------------------------------------------------- /lib/scalar/normXeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/normXeon.cpp -------------------------------------------------------------------------------- /lib/scalar/scalarField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/scalarField.cpp -------------------------------------------------------------------------------- /lib/scalar/scaleField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/scaleField.cpp -------------------------------------------------------------------------------- /lib/scalar/scaleGpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/scaleGpu.cu -------------------------------------------------------------------------------- /lib/scalar/scaleXeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/scaleXeon.cpp -------------------------------------------------------------------------------- /lib/scalar/scaleXeonSimd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/scaleXeonSimd.cpp -------------------------------------------------------------------------------- /lib/scalar/theta2Cmplx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/theta2Cmplx.cpp -------------------------------------------------------------------------------- /lib/scalar/theta2CmplxGpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/theta2CmplxGpu.cu -------------------------------------------------------------------------------- /lib/scalar/theta2CmplxXeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/theta2CmplxXeon.cpp -------------------------------------------------------------------------------- /lib/scalar/theta2Naxion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/theta2Naxion.cpp -------------------------------------------------------------------------------- /lib/scalar/theta2NaxionXeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/theta2NaxionXeon.cpp -------------------------------------------------------------------------------- /lib/scalar/theta2Paxion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/theta2Paxion.cpp -------------------------------------------------------------------------------- /lib/scalar/theta2PaxionXeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/theta2PaxionXeon.cpp -------------------------------------------------------------------------------- /lib/scalar/thetaGpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/thetaGpu.cu -------------------------------------------------------------------------------- /lib/scalar/thetaScalar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/thetaScalar.cpp -------------------------------------------------------------------------------- /lib/scalar/thetaXeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/thetaXeon.cpp -------------------------------------------------------------------------------- /lib/scalar/varNQCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/scalar/varNQCD.cpp -------------------------------------------------------------------------------- /lib/spectrum/spectrum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/spectrum/spectrum.cpp -------------------------------------------------------------------------------- /lib/strings/length.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/strings/length.cpp -------------------------------------------------------------------------------- /lib/strings/length_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/strings/length_new.cpp -------------------------------------------------------------------------------- /lib/strings/stringCpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/strings/stringCpu.cpp -------------------------------------------------------------------------------- /lib/strings/stringGpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/strings/stringGpu.cu -------------------------------------------------------------------------------- /lib/strings/stringXeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/strings/stringXeon.cpp -------------------------------------------------------------------------------- /lib/strings/strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/strings/strings.cpp -------------------------------------------------------------------------------- /lib/utils/kgvops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/utils/kgvops.cpp -------------------------------------------------------------------------------- /lib/utils/kgvopsXeon.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/utils/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/utils/logger.cpp -------------------------------------------------------------------------------- /lib/utils/memAlloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/utils/memAlloc.cpp -------------------------------------------------------------------------------- /lib/utils/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/utils/misc.cpp -------------------------------------------------------------------------------- /lib/utils/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/utils/parse.cpp -------------------------------------------------------------------------------- /lib/utils/profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/utils/profiler.cpp -------------------------------------------------------------------------------- /lib/utils/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/lib/utils/system.cpp -------------------------------------------------------------------------------- /scripts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/.DS_Store -------------------------------------------------------------------------------- /scripts/analise.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/analise.sh -------------------------------------------------------------------------------- /scripts/analisis/TEST_pyjaxions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/analisis/TEST_pyjaxions.ipynb -------------------------------------------------------------------------------- /scripts/analisis/analisis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/analisis/analisis.ipynb -------------------------------------------------------------------------------- /scripts/axaxdir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/axaxdir.sh -------------------------------------------------------------------------------- /scripts/contrastevol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/contrastevol.py -------------------------------------------------------------------------------- /scripts/en_fig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/en_fig.sh -------------------------------------------------------------------------------- /scripts/examples/anyIC/AnyIC.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/examples/anyIC/AnyIC.ipynb -------------------------------------------------------------------------------- /scripts/examples/anystring/.ipynb_checkpoints/posspace-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/examples/anystring/.ipynb_checkpoints/posspace-checkpoint.ipynb -------------------------------------------------------------------------------- /scripts/examples/anystring/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/examples/anystring/README -------------------------------------------------------------------------------- /scripts/examples/anystring/posspace.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/examples/anystring/posspace.ipynb -------------------------------------------------------------------------------- /scripts/examples/anystring/vax-ex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/examples/anystring/vax-ex.sh -------------------------------------------------------------------------------- /scripts/examples/benchmark/measfile.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/examples/benchmark/measfile.dat -------------------------------------------------------------------------------- /scripts/examples/benchmark/simulation-outlook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/examples/benchmark/simulation-outlook.ipynb -------------------------------------------------------------------------------- /scripts/examples/benchmark/vax-ex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/examples/benchmark/vax-ex.sh -------------------------------------------------------------------------------- /scripts/examples/loops/string-loops-example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/examples/loops/string-loops-example.ipynb -------------------------------------------------------------------------------- /scripts/examples/simgen/simgen.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/examples/simgen/simgen.ipynb -------------------------------------------------------------------------------- /scripts/h5cpBNS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/h5cpBNS.sh -------------------------------------------------------------------------------- /scripts/jaxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jaxi -------------------------------------------------------------------------------- /scripts/jaxions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jaxions.tex -------------------------------------------------------------------------------- /scripts/jobs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/.DS_Store -------------------------------------------------------------------------------- /scripts/jobs/Nlaplaprob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/Nlaplaprob.sh -------------------------------------------------------------------------------- /scripts/jobs/Nlaplaprob/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/Nlaplaprob/.DS_Store -------------------------------------------------------------------------------- /scripts/jobs/Nlaplaprob/Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/Nlaplaprob/Untitled.ipynb -------------------------------------------------------------------------------- /scripts/jobs/Nlaplaprob/kkk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/Nlaplaprob/kkk.dat -------------------------------------------------------------------------------- /scripts/jobs/Nlaplaprob/rmasktable.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/Nlaplaprob/rmasktable.dat -------------------------------------------------------------------------------- /scripts/jobs/Nlaplaprob/vax-ex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/Nlaplaprob/vax-ex.sh -------------------------------------------------------------------------------- /scripts/jobs/maskcalib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/maskcalib/README -------------------------------------------------------------------------------- /scripts/jobs/maskcalib/calimask.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/maskcalib/calimask.ipynb -------------------------------------------------------------------------------- /scripts/jobs/maskcalib/calimask2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/maskcalib/calimask2.ipynb -------------------------------------------------------------------------------- /scripts/jobs/maskcalib/calimask4th.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/maskcalib/calimask4th.ipynb -------------------------------------------------------------------------------- /scripts/jobs/maskcalib/calimask5th.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/maskcalib/calimask5th.ipynb -------------------------------------------------------------------------------- /scripts/jobs/maskcalib/fifth-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/maskcalib/fifth-test.sh -------------------------------------------------------------------------------- /scripts/jobs/maskcalib/first-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/maskcalib/first-test.sh -------------------------------------------------------------------------------- /scripts/jobs/maskcalib/fourth-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/maskcalib/fourth-test.sh -------------------------------------------------------------------------------- /scripts/jobs/maskcalib/rmasktable-4th.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/maskcalib/rmasktable-4th.dat -------------------------------------------------------------------------------- /scripts/jobs/maskcalib/rmasktable.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/maskcalib/rmasktable.dat -------------------------------------------------------------------------------- /scripts/jobs/maskcalib/second-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/maskcalib/second-test.sh -------------------------------------------------------------------------------- /scripts/jobs/maskcalib/third-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/maskcalib/third-test.sh -------------------------------------------------------------------------------- /scripts/jobs/maskedenergy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/maskedenergy/README -------------------------------------------------------------------------------- /scripts/jobs/maskedenergy/maskedenergy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/maskedenergy/maskedenergy.sh -------------------------------------------------------------------------------- /scripts/jobs/maskedenergy/maskenergy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/jobs/maskedenergy/maskenergy.ipynb -------------------------------------------------------------------------------- /scripts/makeVideo3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/makeVideo3D.py -------------------------------------------------------------------------------- /scripts/mcmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/mcmc.py -------------------------------------------------------------------------------- /scripts/measfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/measfile.py -------------------------------------------------------------------------------- /scripts/movie-maker.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/movie-maker.ipynb -------------------------------------------------------------------------------- /scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/params.py -------------------------------------------------------------------------------- /scripts/paxion/Pax_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/paxion/Pax_example.ipynb -------------------------------------------------------------------------------- /scripts/plot2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/plot2D.py -------------------------------------------------------------------------------- /scripts/plot3Dconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/plot3Dconf.py -------------------------------------------------------------------------------- /scripts/plot3Ddens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/plot3Ddens.py -------------------------------------------------------------------------------- /scripts/plot3Dslice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/plot3Dslice.py -------------------------------------------------------------------------------- /scripts/plot4D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/plot4D.py -------------------------------------------------------------------------------- /scripts/plotCoStr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/plotCoStr.py -------------------------------------------------------------------------------- /scripts/plotLabStr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/plotLabStr.py -------------------------------------------------------------------------------- /scripts/plotMask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/plotMask.py -------------------------------------------------------------------------------- /scripts/plotStr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/plotStr.py -------------------------------------------------------------------------------- /scripts/prepareStr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/prepareStr.py -------------------------------------------------------------------------------- /scripts/pspecevol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/pspecevol.py -------------------------------------------------------------------------------- /scripts/pyaxions/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/pyaxions/.DS_Store -------------------------------------------------------------------------------- /scripts/pyaxions/.ipynb_checkpoints/spe_legend-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/pyaxions/.ipynb_checkpoints/spe_legend-checkpoint.ipynb -------------------------------------------------------------------------------- /scripts/pyaxions/.jupyter/desktop-workspaces/default-37a8.jupyterlab-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/pyaxions/.jupyter/desktop-workspaces/default-37a8.jupyterlab-workspace -------------------------------------------------------------------------------- /scripts/pyaxions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/pyaxions/__init__.py -------------------------------------------------------------------------------- /scripts/pyaxions/amr_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/pyaxions/amr_interface.py -------------------------------------------------------------------------------- /scripts/pyaxions/data/512mod.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/pyaxions/data/512mod.p -------------------------------------------------------------------------------- /scripts/pyaxions/fft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/pyaxions/fft.py -------------------------------------------------------------------------------- /scripts/pyaxions/jaxions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/pyaxions/jaxions.py -------------------------------------------------------------------------------- /scripts/pyaxions/randomstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/pyaxions/randomstrings.py -------------------------------------------------------------------------------- /scripts/pyaxions/simgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/pyaxions/simgen.py -------------------------------------------------------------------------------- /scripts/pyaxions/spaxcreate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/pyaxions/spaxcreate.py -------------------------------------------------------------------------------- /scripts/pyaxions/spe_legend.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/pyaxions/spe_legend.ipynb -------------------------------------------------------------------------------- /scripts/pyaxions/specfromF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/pyaxions/specfromF.py -------------------------------------------------------------------------------- /scripts/pyaxions/speck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/pyaxions/speck.py -------------------------------------------------------------------------------- /scripts/pyaxions/spectools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/pyaxions/spectools.py -------------------------------------------------------------------------------- /scripts/pyaxions/spectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/pyaxions/spectrum.py -------------------------------------------------------------------------------- /scripts/pyaxions/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/pyaxions/templates.py -------------------------------------------------------------------------------- /scripts/raxion3d.example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/raxion3d.example.sh -------------------------------------------------------------------------------- /scripts/sim-example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/sim-example.sh -------------------------------------------------------------------------------- /scripts/simulation-outlook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/simulation-outlook.ipynb -------------------------------------------------------------------------------- /scripts/specevol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/specevol.py -------------------------------------------------------------------------------- /scripts/string-pos-ex.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/string-pos-ex.ipynb -------------------------------------------------------------------------------- /scripts/summaryplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/summaryplot.py -------------------------------------------------------------------------------- /scripts/tax.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/tax.sh -------------------------------------------------------------------------------- /scripts/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/test.py -------------------------------------------------------------------------------- /scripts/thetaBINevol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/thetaBINevol.py -------------------------------------------------------------------------------- /scripts/vax-ex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/vax-ex.sh -------------------------------------------------------------------------------- /scripts/vaxion3d.example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/scripts/vaxion3d.example.sh -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/Paxions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/Paxions.cpp -------------------------------------------------------------------------------- /test/VQcdTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/VQcdTest.cpp -------------------------------------------------------------------------------- /test/WKBaxion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/WKBaxion.cpp -------------------------------------------------------------------------------- /test/WKBonce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/WKBonce.cpp -------------------------------------------------------------------------------- /test/WKVaxion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/WKVaxion.cpp -------------------------------------------------------------------------------- /test/aTheta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/aTheta.cpp -------------------------------------------------------------------------------- /test/axions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/axions.cpp -------------------------------------------------------------------------------- /test/contrastmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/contrastmap.cpp -------------------------------------------------------------------------------- /test/filesizetest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/filesizetest.cpp -------------------------------------------------------------------------------- /test/gadgetme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/gadgetme.cpp -------------------------------------------------------------------------------- /test/gravi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/gravi.cpp -------------------------------------------------------------------------------- /test/gravi2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/gravi2.cpp -------------------------------------------------------------------------------- /test/gravi3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/gravi3.cpp -------------------------------------------------------------------------------- /test/hyper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/hyper.cpp -------------------------------------------------------------------------------- /test/ic_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/ic_test.cpp -------------------------------------------------------------------------------- /test/ic_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/ic_tests.cpp -------------------------------------------------------------------------------- /test/oldstuff/axions_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/oldstuff/axions_simple.cpp -------------------------------------------------------------------------------- /test/oldstuff/hallo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/oldstuff/hallo.cpp -------------------------------------------------------------------------------- /test/oldstuff/testground.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/oldstuff/testground.cpp -------------------------------------------------------------------------------- /test/probi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/probi.cpp -------------------------------------------------------------------------------- /test/reduce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/reduce.cpp -------------------------------------------------------------------------------- /test/sinTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/sinTest.cpp -------------------------------------------------------------------------------- /test/stringstudy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/stringstudy.cpp -------------------------------------------------------------------------------- /test/testFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/testFFT.cpp -------------------------------------------------------------------------------- /test/testFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/testFT.cpp -------------------------------------------------------------------------------- /test/testGPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/testGPU.cpp -------------------------------------------------------------------------------- /test/testHdf5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/testHdf5.cpp -------------------------------------------------------------------------------- /test/testMendTheta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/testMendTheta.cpp -------------------------------------------------------------------------------- /test/vaxions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veintemillas/jaxions/HEAD/test/vaxions.cpp --------------------------------------------------------------------------------