Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Martin Reinecke
ducc
Commits
88cf57a5
Commit
88cf57a5
authored
Feb 23, 2020
by
Martin Reinecke
Browse files
file moving
parent
0397f751
Changes
10
Hide whitespace changes
Inline
Side-by-side
Makefile.am
→
libmr_util/
Makefile.am
View file @
88cf57a5
...
...
@@ -3,48 +3,45 @@ ACLOCAL_AMFLAGS = -I m4
lib_LTLIBRARIES
=
libmrutil.la
libmrutil_la_SOURCES
=
\
libsharp2/sharp.cc
\
libsharp2/sharp_almhelpers.cc
\
libsharp2/sharp_core.cc
\
libsharp2/sharp_geomhelpers.cc
\
libsharp2/sharp_ylmgen.cc
\
libsharp2/sharp_internal.h
\
mr_util/math_utils.h
\
mr_util/cmplx.h
\
mr_util/aligned_array.h
\
mr_util/simd.h
\
mr_util/pointing.cc
\
mr_util/pointing.h
\
mr_util/vec3.h
\
mr_util/constants.h
\
mr_util/error_handling.h
\
mr_util/space_filling.cc
\
mr_util/space_filling.h
\
mr_util/fft1d.h
\
mr_util/fft.h
\
mr_util/gl_integrator.h
\
mr_util/mav.h
\
mr_util/string_utils.cc
\
mr_util/string_utils.h
\
mr_util/system.cc
\
mr_util/system.h
\
mr_util/threading.cc
\
mr_util/threading.h
\
mr_util/timers.h
\
mr_util/unity_roots.h
\
mr_util/useful_macros.h
\
mr_util/rangeset.h
\
mr_util/crangeset.h
\
mr_util/compress_utils.h
\
mr_util/sharp/sharp.cc
\
mr_util/sharp/sharp_almhelpers.cc
\
mr_util/sharp/sharp_core.cc
\
mr_util/sharp/sharp_geomhelpers.cc
\
mr_util/sharp/sharp_ylmgen.cc
\
mr_util/sharp/sharp_internal.h
\
mr_util/math/math_utils.h
\
mr_util/math/cmplx.h
\
mr_util/infra/aligned_array.h
\
mr_util/infra/simd.h
\
mr_util/math/pointing.cc
\
mr_util/math/pointing.h
\
mr_util/math/vec3.h
\
mr_util/math/constants.h
\
mr_util/infra/error_handling.h
\
mr_util/math/space_filling.cc
\
mr_util/math/space_filling.h
\
mr_util/math/fft1d.h
\
mr_util/math/fft.h
\
mr_util/math/gl_integrator.h
\
mr_util/infra/mav.h
\
mr_util/infra/string_utils.cc
\
mr_util/infra/string_utils.h
\
mr_util/infra/system.cc
\
mr_util/infra/system.h
\
mr_util/infra/threading.cc
\
mr_util/infra/threading.h
\
mr_util/infra/timers.h
\
mr_util/math/unity_roots.h
\
mr_util/infra/useful_macros.h
\
mr_util/math/rangeset.h
\
mr_util/geom_utils.h
\
mr_util/geom_utils.cc
\
Healpix_cxx/healpix_tables.h
\
Healpix_cxx/healpix_tables.cc
\
Healpix_cxx/healpix_base.h
\
Healpix_cxx/healpix_base.cc
\
Healpix_cxx/healpix_map.h
\
Healpix_cxx/healpix_map.cc
\
Healpix_cxx/moc.h
mr_util/math/geom_utils.cc
\
mr_util/healpix/healpix_tables.h
\
mr_util/healpix/healpix_tables.cc
\
mr_util/healpix/healpix_base.h
\
mr_util/healpix/healpix_base.cc
\
mr_util/healpix/healpix_map.h
\
mr_util/healpix/healpix_map.cc
# format is "current:revision:age"
# any change: increase revision
...
...
@@ -58,11 +55,11 @@ AM_CXXFLAGS = @AM_CXXFLAGS@
if
HAVE_MULTIARCH
libavx_la_SOURCES
=
lib
sharp
2
/sharp_core_inc.cc
libavx2_la_SOURCES
=
lib
sharp
2
/sharp_core_inc.cc
libfma_la_SOURCES
=
lib
sharp
2
/sharp_core_inc.cc
libfma4_la_SOURCES
=
lib
sharp
2
/sharp_core_inc.cc
libavx512f_la_SOURCES
=
lib
sharp
2
/sharp_core_inc.cc
libavx_la_SOURCES
=
mr_util/
sharp/sharp_core_inc.cc
libavx2_la_SOURCES
=
mr_util/
sharp/sharp_core_inc.cc
libfma_la_SOURCES
=
mr_util/
sharp/sharp_core_inc.cc
libfma4_la_SOURCES
=
mr_util/
sharp/sharp_core_inc.cc
libavx512f_la_SOURCES
=
mr_util/
sharp/sharp_core_inc.cc
noinst_LTLIBRARIES
=
libavx.la libavx2.la libfma.la libfma4.la libavx512f.la
...
...
@@ -77,9 +74,9 @@ libmrutil_la_LIBADD = libavx.la libavx2.la libfma.la libfma4.la libavx512f.la
endif
nobase_include_HEADERS
=
\
lib
sharp
2
/sharp.h
\
lib
sharp
2
/sharp_geomhelpers.h
\
lib
sharp
2
/sharp_almhelpers.h
mr_util/
sharp/sharp.h
\
mr_util/
sharp/sharp_geomhelpers.h
\
mr_util/
sharp/sharp_almhelpers.h
EXTRA_DIST
=
test
/test_libsharp.sh
test
/test_space_filling.sh
...
...
configure.ac
→
libmr_util/
configure.ac
View file @
88cf57a5
File moved
m4/m4_ax_create_pkgconfig_info.m4
→
libmr_util/
m4/m4_ax_create_pkgconfig_info.m4
View file @
88cf57a5
File moved
m4/m4_ax_cxx_compile_stdcxx.m4
→
libmr_util/
m4/m4_ax_cxx_compile_stdcxx.m4
View file @
88cf57a5
File moved
libmr_util/mr_util
0 → 120000
View file @
88cf57a5
../src/mr_util/
\ No newline at end of file
test/hpxtest.cc
→
libmr_util/
test/hpxtest.cc
View file @
88cf57a5
File moved
test/sharp2_testsuite.cc
→
libmr_util/
test/sharp2_testsuite.cc
View file @
88cf57a5
File moved
test/space_filling_test.cc
→
libmr_util/
test/space_filling_test.cc
View file @
88cf57a5
File moved
test/test_libsharp.sh
→
libmr_util/
test/test_libsharp.sh
View file @
88cf57a5
File moved
test/test_space_filling.sh
→
libmr_util/
test/test_space_filling.sh
View file @
88cf57a5
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment