Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Commit 797d6d4

Browse files
Rename cuda specific files
polyhedral/cuda/cuda_mapping_types.h -> polyhedral/cuda/mapping_types.h polyhedral/cuda/cuda_tighten_launch_bounds.h -> polyhedral/cuda/tighten_launch_bounds.h
1 parent 567715f commit 797d6d4

14 files changed

+17
-17
lines changed

include/tc/core/execution_engine-inl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#include <string>
1919
#include <vector>
2020

21-
#include "tc/core/polyhedral/cuda/cuda_mapping_types.h"
21+
#include "tc/core/polyhedral/cuda/mapping_types.h"
2222
#include "tc/core/utils/memory.h"
2323

2424
#include "tc/lang/parser.h"

include/tc/core/polyhedral/cuda/mapped_scop.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include <vector>
2323

2424
#include "tc/core/cuda/cuda_mapping_options.h"
25-
#include "tc/core/polyhedral/cuda/cuda_mapping_types.h"
25+
#include "tc/core/polyhedral/cuda/mapping_types.h"
2626
#include "tc/core/polyhedral/cuda/memory_promotion_heuristic.h"
2727
#include "tc/core/polyhedral/scop.h"
2828
#include "tc/core/utils/dlpack.h"

include/tc/core/polyhedral/schedule_transforms.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include <unordered_set>
2222
#include <vector>
2323

24-
#include "tc/core/polyhedral/cuda/cuda_mapping_types.h"
24+
#include "tc/core/polyhedral/cuda/mapping_types.h"
2525
#include "tc/core/polyhedral/functional.h"
2626
#include "tc/core/polyhedral/options.h"
2727
#include "tc/core/polyhedral/schedule_tree.h"

include/tc/core/polyhedral/schedule_tree_elem.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
#include "tc/external/isl.h"
2424

25-
#include "tc/core/polyhedral/cuda/cuda_mapping_types.h"
25+
#include "tc/core/polyhedral/cuda/mapping_types.h"
2626

2727
namespace tc {
2828
namespace polyhedral {

src/autotuner/genetic_tuning_harness.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#include "tc/core/cuda/cuda_tc_executor.h"
3333
#include "tc/core/execution_engine.h"
3434
#include "tc/core/flags.h"
35-
#include "tc/core/polyhedral/cuda/cuda_mapping_types.h"
35+
#include "tc/core/polyhedral/cuda/mapping_types.h"
3636
#include "tc/core/scope_guard.h"
3737
#include "tc/core/utils/math.h"
3838

src/core/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ add_library(
3131
cuda/cuda_mapping_options.cc
3232
cuda/cuda_mapping_options_cpp_printer.cc
3333
polyhedral/cuda/codegen.cc
34-
polyhedral/cuda/cuda_mapping_types.cc
35-
polyhedral/cuda/cuda_tighten_launch_bounds.cc
3634
polyhedral/cuda/mapped_scop.cc
35+
polyhedral/cuda/mapping_types.cc
3736
polyhedral/cuda/memory_promotion_heuristic.cc
37+
polyhedral/cuda/tighten_launch_bounds.cc
3838
)
3939
target_include_directories(tc_core PUBLIC ${PROJECT_SOURCE_DIR}/include ${LLVM_INCLUDE_DIRS})
4040
target_link_libraries(

src/core/polyhedral/cuda/codegen.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
#include "tc/core/libraries.h"
2727
#include "tc/core/polyhedral/codegen.h"
2828
#include "tc/core/polyhedral/cuda/codegen.h"
29-
#include "tc/core/polyhedral/cuda/cuda_mapping_types.h"
3029
#include "tc/core/polyhedral/memory_promotion.h"
30+
#include "tc/core/polyhedral/cuda/mapping_types.h"
3131
#include "tc/core/polyhedral/schedule_isl_conversion.h"
3232
#include "tc/core/polyhedral/schedule_transforms.h"
3333

src/core/polyhedral/cuda/mapped_scop.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
#include "tc/core/gpu.h"
2828
#include "tc/core/libraries.h"
2929
#include "tc/core/polyhedral/cuda/codegen.h"
30-
#include "tc/core/polyhedral/cuda/cuda_mapping_types.h"
31-
#include "tc/core/polyhedral/cuda/cuda_tighten_launch_bounds.h"
30+
#include "tc/core/polyhedral/cuda/mapping_types.h"
31+
#include "tc/core/polyhedral/cuda/memory_promotion_heuristic.h"
32+
#include "tc/core/polyhedral/cuda/tighten_launch_bounds.h"
3233
#include "tc/core/polyhedral/exceptions.h"
3334
#include "tc/core/polyhedral/functional.h"
34-
#include "tc/core/polyhedral/cuda/memory_promotion_heuristic.h"
3535
#include "tc/core/polyhedral/schedule_transforms.h"
3636
#include "tc/core/polyhedral/schedule_tree_matcher.h"
3737
#include "tc/core/polyhedral/scop.h"

0 commit comments

Comments
 (0)