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 a1c445b
Show file tree
Hide file tree
Showing 13 changed files with 19 additions and 571 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
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 a1c445b

Please sign in to comment.