Skip to content

Commit

Permalink
remove ctx_data_t
Browse files Browse the repository at this point in the history
  • Loading branch information
guanyi.gl committed Oct 10, 2020
1 parent 2044e49 commit 70280df
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion grape/app/auto_app_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ class AutoAppBase {
public: \
using fragment_t = FRAG_T; \
using context_t = CONTEXT_T; \
using ctx_data_t = typename context_t::data_t; \
using message_manager_t = grape::AutoParallelMessageManager<FRAG_T>; \
using worker_t = grape::AutoWorker<APP_T>; \
static std::shared_ptr<worker_t> CreateWorker( \
Expand Down
1 change: 0 additions & 1 deletion grape/app/batch_shuffle_app_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ class BatchShuffleAppBase {
public: \
using fragment_t = FRAG_T; \
using context_t = CONTEXT_T; \
using ctx_data_t = typename context_t::data_t; \
using message_manager_t = grape::BatchShuffleMessageManager; \
using worker_t = grape::BatchShuffleWorker<APP_T>; \
virtual ~APP_T() {} \
Expand Down
1 change: 0 additions & 1 deletion grape/app/parallel_app_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ class ParallelAppBase {
public: \
using fragment_t = FRAG_T; \
using context_t = CONTEXT_T; \
using ctx_data_t = typename context_t::data_t; \
using message_manager_t = grape::ParallelMessageManager; \
using worker_t = grape::ParallelWorker<APP_T>; \
virtual ~APP_T() {} \
Expand Down

0 comments on commit 70280df

Please sign in to comment.