Skip to content

Commit

Permalink
Refactor arcae to use a finer-grained execution model (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjperkins authored Aug 14, 2024
1 parent 2f0a1ca commit 54910d4
Show file tree
Hide file tree
Showing 62 changed files with 6,145 additions and 6,441 deletions.
1 change: 1 addition & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ History

X.Y.Z (YYYY-MM-DD)
------------------
* Refactor arcae to use a finer-grained execution model (:pr:`101`)
* Pin manylinux_2_28 image to manylinux_2_28_x86_64:2024.07.02-0 (:pr:`102`)
* Restrict Numpy to less than 2.0.0 (:pr:`100`)
* Avoid stripping debug information (:pr:`96`)
Expand Down
20 changes: 10 additions & 10 deletions cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ find_package(absl CONFIG REQUIRED)
pkg_check_modules(casacore REQUIRED IMPORTED_TARGET casacore)

add_library(arcae SHARED
arcae/array_util.cc
arcae/casa_visitors.cc
arcae/column_read_map.cc
arcae/column_read_visitor.cc
arcae/column_write_map.cc
arcae/column_write_visitor.cc
arcae/complex_type.cc
arcae/configuration.cc
arcae/descriptor.cc
arcae/base_column_map.cc
arcae/data_partition.cc
arcae/isolated_table_proxy.cc
arcae/new_table_proxy.cc
arcae/read_impl.cc
arcae/write_impl.cc
arcae/result_shape.cc
arcae/service_locator.cc
arcae/safe_table_proxy.cc
arcae/table_factory.cc)
arcae/selection.cc
arcae/table_factory.cc
arcae/table_utils.cc
arcae/type_traits.cc)

target_compile_options(arcae PRIVATE
$<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>:
Expand Down
33 changes: 0 additions & 33 deletions cpp/arcae/array_util.cc

This file was deleted.

15 changes: 0 additions & 15 deletions cpp/arcae/array_util.h

This file was deleted.

35 changes: 0 additions & 35 deletions cpp/arcae/base_column_map.cc

This file was deleted.

Loading

0 comments on commit 54910d4

Please sign in to comment.