Skip to content

Commit

Permalink
add java pagerank/wcc yaml file
Browse files Browse the repository at this point in the history
  • Loading branch information
lidongze0629 committed Jul 13, 2018
1 parent fd3d9f9 commit 7d46d98
Show file tree
Hide file tree
Showing 5 changed files with 81,417 additions and 1 deletion.
37 changes: 37 additions & 0 deletions java-pagerank.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
app: # Application specification
# checkout parameter
param:
- string
- string
- string
- string
name: pagerank
so_location: $GRAPE_LIB/libapp_java_driver.so
classpath: $GRAPE_LIB/grape-java-0.01.jar
mainclass: io/example/pagerank/pagerank

# compatible graph spec:
graph_etype:
- double
- float
graph_vtype:
- double
- float
graph_type:
- immutable_edgecut
# - mutable
graph_load_strategy:
- only_out

message_strategy: sync_on_out_vertex
message_type: pair
result_prefix: .

is_java_app: true
enable_coordinator_aggregation: false
enable_assemble: false
enable_result_output: true
enable_auto: false

query_type: string
6 changes: 5 additions & 1 deletion java-sssp-auto.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
---
app: # Application specification
# checkout parameter
param:
- string
name: java_sssp_auto
name: sssp-auto
so_location: $GRAPE_LIB/libapp_java_driver.so
classpath: $GRAPE_LIB/grape-java-0.01.jar
mainclass: io/example/sssp/sssp_auto
Expand All @@ -18,6 +19,9 @@ app: # Application specification
graph_type:
- immutable_edgecut
# - mutable
graph_load_strategy:
- both_out_in
- only_out

message_strategy: sync_on_out_vertex
message_type: pair
Expand Down
36 changes: 36 additions & 0 deletions java-sssp.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
app: # Application specification
# checkout parameter
param:
- string
name: sssp
so_location: $GRAPE_LIB/libapp_java_driver.so
classpath: $GRAPE_LIB/grape-java-0.01.jar
mainclass: io/example/sssp/sssp

# compatible graph spec:
graph_etype:
- double
- float
graph_vtype:
- double
- float
- int
graph_type:
- immutable_edgecut
# - mutable
graph_load_strategy:
- both_out_in
- only_out

message_strategy: sync_on_out_vertex
message_type: pair
result_prefix: .

is_java_app: true
enable_coordinator_aggregation: false
enable_assemble: false
enable_result_output: true
enable_auto: false

query_type: string
33 changes: 33 additions & 0 deletions java-wcc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
app: # Application specification
param:
- string
name: wcc
so_location: $GRAPE_LIB/libapp_java_driver.so
classpath: $GRAPE_LIB/grape-java-0.01.jar
mainclass: io/example/wcc/wcc

# compatible graph spec:
graph_etype:
- double
- float
graph_vtype:
- double
- float
graph_type:
- immutable_edgecut
# - mutable
graph_load_strategy:
- both_out_in

message_strategy: sync_on_out_vertex
message_type: pair
result_prefix: .

is_java_app: true
enable_coordinator_aggregation: false
enable_assemble: false
enable_result_output: true
enable_auto: false

query_type: string
Loading

0 comments on commit 7d46d98

Please sign in to comment.