Skip to content

Commit d483a4d

Browse files
committed
Address the performance issue of GAE apps
Signed-off-by: Tao He <[email protected]>
1 parent 5b852ff commit d483a4d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

analytical_engine/test/run_vy_app.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#include "lcc/lcc.h"
3636
#include "pagerank/pagerank.h"
3737
#include "pagerank/pagerank_auto.h"
38-
#include "pagerank/pagerank_local.h"
38+
#include "pagerank/pagerank_local_parallel.h"
3939
#include "sssp/sssp.h"
4040
#include "wcc/wcc.h"
4141

@@ -321,7 +321,7 @@ void RunProjectedPR(std::shared_ptr<ProjectedFragmentType> fragment,
321321
const std::string& out_prefix) {
322322
// using AppType = grape::PageRankAuto<ProjectedFragmentType>;
323323
using AppType = grape::PageRank<ProjectedFragmentType>;
324-
// using AppType = grape::PageRankLocal<ProjectedFragmentType>;
324+
// using AppType = grape::PageRankLocalParallel<ProjectedFragmentType>;
325325
auto app = std::make_shared<AppType>();
326326
auto worker = AppType::CreateWorker(app, fragment);
327327
auto spec = grape::DefaultParallelEngineSpec();

coordinator/gscoordinator/builtin/app/.gs_conf.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
app:
22
- algo: pagerank
33
type: cpp_pie
4-
class_name: grape::PageRankLocal
5-
src: pagerank/pagerank_local.h
4+
class_name: grape::PageRankLocalParallel
5+
src: pagerank/pagerank_local_parallel.h
66
compatible_graph:
77
- grape::ImmutableEdgecutFragment
88
- gs::ArrowProjectedFragment

0 commit comments

Comments
 (0)