Skip to content

Commit

Permalink
#276: param: remove old component
Browse files Browse the repository at this point in the history
  • Loading branch information
lifflander committed Mar 6, 2023
1 parent 246d8f2 commit 663e046
Show file tree
Hide file tree
Showing 14 changed files with 19 additions and 574 deletions.
8 changes: 0 additions & 8 deletions docs/md/param.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/md/vt.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ management.
| \subpage location | `vt::theLocMan()` | \copybrief location | @m_class{m-label m-success} **Core** |
| \subpage mem-usage | `vt::theMemUsage()` | \copybrief mem-usage | @m_class{m-label m-warning} **Optional** |
| \subpage objgroup | `vt::theObjGroup()` | \copybrief objgroup | @m_class{m-label m-success} **Core** |
| \subpage param | `vt::theParam()` | \copybrief param | @m_class{m-label m-danger} **Experimental** |
| \subpage pipe | `vt::theCB()` | \copybrief pipe | @m_class{m-label m-success} **Core** |
| \subpage node-lb-data | `vt::theNodeLBData()` | \copybrief node-lb-data | @m_class{m-label m-warning} **Optional** |
| \subpage phase | `vt::thePhase()` | \copybrief phase | @m_class{m-label m-success} **Core** |
Expand Down
1 change: 0 additions & 1 deletion examples/hello_world/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ set(
hello_world_virtual_context
hello_world_virtual_context_remote
ring
param
objgroup
)

Expand Down
100 changes: 0 additions & 100 deletions examples/hello_world/param.cc

This file was deleted.

2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ set(TOP_LEVEL_SUBDIRS
runnable
activefn
# Add single-directory components
context event handler parameterization sequence termination
context event handler sequence termination
scheduler standalone runtime trace timing demangle rdmahandle
)
set(
Expand Down
3 changes: 0 additions & 3 deletions src/vt/configs/arguments/args.cc
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,6 @@ void addDebugPrintArgs(CLI::App& app, AppConfig& appConfig) {
auto lap = "Enable debug_rdma = \"" debug_pp(rdma) "\"";
auto map = "Enable debug_rdma_channel = \"" debug_pp(rdma_channel) "\"";
auto nap = "Enable debug_rdma_state = \"" debug_pp(rdma_state) "\"";
auto oap = "Enable debug_param = \"" debug_pp(param) "\"";
auto pap = "Enable debug_handler = \"" debug_pp(handler) "\"";
auto qap = "Enable debug_hierlb = \"" debug_pp(hierlb) "\"";
auto qbp = "Enable debug_temperedlb = \"" debug_pp(temperedlb) "\"";
Expand Down Expand Up @@ -393,7 +392,6 @@ void addDebugPrintArgs(CLI::App& app, AppConfig& appConfig) {
auto la = app.add_flag("--vt_debug_rdma", appConfig.vt_debug_rdma, lap);
auto ma = app.add_flag("--vt_debug_rdma_channel", appConfig.vt_debug_rdma_channel, map);
auto na = app.add_flag("--vt_debug_rdma_state", appConfig.vt_debug_rdma_state, nap);
auto oa = app.add_flag("--vt_debug_param", appConfig.vt_debug_param, oap);
auto pa = app.add_flag("--vt_debug_handler", appConfig.vt_debug_handler, pap);
auto qa = app.add_flag("--vt_debug_hierlb", appConfig.vt_debug_hierlb, qap);
auto qb = app.add_flag("--vt_debug_temperedlb", appConfig.vt_debug_temperedlb, qbp);
Expand Down Expand Up @@ -430,7 +428,6 @@ void addDebugPrintArgs(CLI::App& app, AppConfig& appConfig) {
la->group(debugGroup);
ma->group(debugGroup);
na->group(debugGroup);
oa->group(debugGroup);
pa->group(debugGroup);
qa->group(debugGroup);
qb->group(debugGroup);
Expand Down
38 changes: 18 additions & 20 deletions src/vt/configs/debug/debug_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,25 +63,24 @@ enum CatEnum : uint64_t {
rdma = 1ull<<11,
rdma_channel = 1ull<<12,
rdma_state = 1ull<<13,
param = 1ull<<14,
handler = 1ull<<15,
hierlb = 1ull<<16,
scatter = 1ull<<17,
serial_msg = 1ull<<18,
trace = 1ull<<19,
location = 1ull<<20,
lb = 1ull<<21,
vrt = 1ull<<22,
vrt_coll = 1ull<<23,
worker = 1ull<<24,
group = 1ull<<25,
broadcast = 1ull<<26,
objgroup = 1ull<<27,
temperedlb = 1ull<<28,
phase = 1ull<<29,
context = 1ull<<30,
epoch = 1ull<<31,
temperedwmin = 1ull<<32
handler = 1ull<<14,
hierlb = 1ull<<15,
scatter = 1ull<<16,
serial_msg = 1ull<<17,
trace = 1ull<<18,
location = 1ull<<19,
lb = 1ull<<20,
vrt = 1ull<<21,
vrt_coll = 1ull<<22,
worker = 1ull<<23,
group = 1ull<<24,
broadcast = 1ull<<25,
objgroup = 1ull<<26,
temperedlb = 1ull<<27,
phase = 1ull<<28,
context = 1ull<<29,
epoch = 1ull<<30,
temperedwmin = 1ull<<31
};

enum CtxEnum : uint64_t {
Expand Down Expand Up @@ -132,7 +131,6 @@ vt_option_category_pretty_print(temperedwmin, "TemperedWMin")
vt_option_category_pretty_print(lb, "lb")
vt_option_category_pretty_print(location, "location")
vt_option_category_pretty_print(objgroup, "objgroup")
vt_option_category_pretty_print(param, "parameterization")
vt_option_category_pretty_print(phase, "phase")
vt_option_category_pretty_print(pipe, "pipe")
vt_option_category_pretty_print(pool, "pool")
Expand Down
95 changes: 0 additions & 95 deletions src/vt/parameterization/param_meta.h

This file was deleted.

48 changes: 0 additions & 48 deletions src/vt/parameterization/parameterization.cc

This file was deleted.

Loading

0 comments on commit 663e046

Please sign in to comment.