You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: analytical_engine/java/README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ enables Java programmers to write and run graph algorithms with these benefits.
12
12
GRAPE-JDK substantially narrows the gap between apps written in Java and in C++. As [experiments](#performance) shows, the overall performance gap
13
13
between native C++ and GRAPE-JDK are lower than 2x, and in some scenarios like PageRank, GRAPE-JDK runs nearly as fast as native C++ implementation.
14
14
15
-
-**Support Giraph app**. We also prvide user with a Giraph SDK, grape-giraph. The algorithms user implemented on [Giraph](https://github.com/apache/giraph)
15
+
-**Support Giraph app**. We also provide user with a Giraph SDK, grape-giraph. The algorithms user implemented on [Giraph](https://github.com/apache/giraph)
16
16
interface can be run on GRAPE-JDK without any modification.
17
17
18
18
-**Support Spark Graphx**. We break down the storage gap between Spark RDD and GraphScope Fragment, enabling `fragment-as-rdd` wrapping
@@ -29,7 +29,7 @@ enables Java programmers to write and run graph algorithms with these benefits.
29
29
30
30
-**grape-demo** Provides example apps and [FFIMirrors](#user-defined-data-structure).
31
31
-**grape-jdk** Provides the PIE SDK with graph computing interfaces.
32
-
-**grape-runtime** Contains the essential files for JNI code-gen and the glue code invoked by the analytcial engine (building with `ENABLE_JAVA_SDK`).
32
+
-**grape-runtime** Contains the essential files for JNI code-gen and the glue code invoked by the analytical engine (building with `ENABLE_JAVA_SDK`).
33
33
-**grape-giraph** Integrating grape with Apache Giraph.
34
34
-**grape-graphx** Integrating grape with Spark GraphX.
35
35
-**grape-rdd-reader** Providing RDD reader for spark RDD.
@@ -49,7 +49,7 @@ mvn clean install
49
49
This will only install `grape-jdk` for you, if you are only interested in writing
50
50
graph algorithms in java, that's enough for you :D.
51
51
52
-
To build the whole project, make sure there is one usable c++ compiler in your envirment
52
+
To build the whole project, make sure there is one usable c++ compiler in your environment
53
53
and both [`GraphScope-Analytical engine`](https://github.com/alibaba/GraphScope/tree/main/analytical_engine)
54
54
and [`Vineyard`](https://github.com/v6d-io/v6d) is installed.
55
55
@@ -76,7 +76,7 @@ You can include grape-jdk as a dependency in your maven project
76
76
Online JavaDoc is available at [GraphScope Docs](https://graphscope.io/docs/reference/gae_java/index.html).
77
77
78
78
You can also generate the documentation with in three different ways.
79
-
- use Intellij IDEA plugin: [Intellij IDEA-javadoc](https://www.jetbrains.com/help/idea/working-with-code-documentation.html)
79
+
- use IntelliJ IDEA plugin: [IntelliJ IDEA-javadoc](https://www.jetbrains.com/help/idea/working-with-code-documentation.html)
80
80
- Use Eclipse plugin: [Eclipse-javadoc](https://www.tutorialspoint.com/How-to-write-generate-and-use-Javadoc-in-Eclipse).
Copy file name to clipboardexpand all lines: analytical_engine/java/performance.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Performance
2
2
3
-
We evaluate the performandce of `grape-jdk` on [LDBC Graph Analytics Benchmark.](https://graphalytics.org/).
3
+
We evaluate the performance of `grape-jdk` on [LDBC Graph Analytics Benchmark.](https://graphalytics.org/).
4
4
In particular, we evaluate the performance with typical graph apps over LDBC XL-size datasets.
5
5
6
6
Comparing the performance result of `grape-jdk` with the performance data from native **analytical engine**, we found that the performance gap between **Java app** and **C++ app** has been made narrowed substantially with the help of `grape-jdk`.
@@ -138,6 +138,6 @@ pr_delta set to 0.85, running for 50 rounds.
We also evaluate the performance of `grape-graphx`, the integration of GraphScope on Spark GraphX. See [grape-graphX performace](grape-graphx/performance.md).
143
+
We also evaluate the performance of `grape-graphx`, the integration of GraphScope on Spark GraphX. See [grape-graphX performance](grape-graphx/performance.md).
@@ -27,7 +27,7 @@ Since the analytical engine inherits from GRAPE, it requires libgrape-lite as a
27
27
Please note that the core functionalities of libgrape-lite, such as graph structures, graph partitioners, workers,
28
28
communication between workers, and applications, are heavily reused in the analytical engine of GraphScope.
29
29
30
-
If you want to fully understand the analytcial engine, it is highly recommaned that you start from libgrape-lite.
30
+
If you want to fully understand the analytical engine, it is highly recommended that you start from libgrape-lite.
31
31
32
32
The code located in the `analytical_engine` directory functions like extensions to libgrape-lite, thereby making it full-fledged with the following enhancements:
Copy file name to clipboardexpand all lines: docs/analytical_engine/getting_started.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -59,4 +59,4 @@ Next, you may want to learn more about the following topics:
59
59
60
60
- [Design of the analytical engine of GraphScope and its technical details](analytical_engine/design_of_gae)
61
61
- [Disaggregated deployment of GraphScope on a k8s cluster for large-scale graph analysis](analytical_engine/deployment)
62
-
- [A set of examples with advanced usage, including customized algorithms, NetworkX/Giraph/GraphX compatibility, etc.](analytical_engine/guide_and_exmaples)
62
+
- [A set of examples with advanced usage, including customized algorithms, NetworkX/Giraph/GraphX compatibility, etc.](analytical_engine/guide_and_examples)
In the above code, given a source vertex `source`, in the `PEval` function, we first execute the Dijkstra's
93
-
algorithm on the sub-graph (fragment) where the `source` resides in to obtain a partial result. After that, the [`SyncStateOnOuterVertex` function](https://graphscope.io/docs/latest/analytical_engine/key_concepts.html#synconoutervertex) is invoked, where the partial result is sent to other fragments to trigger `IncEval` function.
93
+
algorithm on the sub-graph (fragment) where the `source` resides to obtain a partial result. After that, the [`SyncStateOnOuterVertex` function](https://graphscope.io/docs/latest/analytical_engine/key_concepts.html#synconoutervertex) is invoked, where the partial result is sent to other fragments to trigger `IncEval` function.
94
94
95
95
In the `IncEval` function, each fragment first receives messages through the [message manager](https://graphscope.io/docs/latest/analytical_engine/key_concepts.html#messagemanager-and-messagestrategy), then executes incremental evaluation based on received messages to update the partial result. If the partial result is updated, each fragment needs to execute the `SyncStateOnOuterVertex` function to synchronize the latest partial result of [outer vertices](https://graphscope.io/docs/latest/analytical_engine/key_concepts.html#outervertex) with other fragments to trigger next round of `IncEval`. Please checkout the following tutorials for more details about how to develop graph applications with the PIE model.
Copy file name to clipboardexpand all lines: docs/analytical_engine/tutorial_dev_algo_cpp_pie.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ class MyAppContext : public grape::VertexDataContext<FRAG_T, uint64_t> {
36
36
};
37
37
```
38
38
39
-
As shown in the code, the MyAppContext class defines two member variables called `step` and `param1` to store the current superstep and algorithm-specific parameter, respectively. And we also define a member variable named `result` with `uint64_t` type to store the the degree for each vertex in the fragment. The `Init` method is used to initialize the context of the computation. In current example, we initialize the `step` and `param1` variables to zero and the algorithm-specific parameter. We also set the result to zero for each vertex.
39
+
As shown in the code, the MyAppContext class defines two member variables called `step` and `param1` to store the current superstep and algorithm-specific parameter, respectively. And we also define a member variable named `result` with `uint64_t` type to store the degree for each vertex in the fragment. The `Init` method is used to initialize the context of the computation. In current example, we initialize the `step` and `param1` variables to zero and the algorithm-specific parameter. We also set the result to zero for each vertex.
40
40
41
41
## Step 2: Define the Algorithm class
42
42
@@ -142,7 +142,7 @@ result = my_app(simple_graph, 10) # pass 10 as param1 defined in 'MyAppContext.
142
142
print(result.to_numpy('r'))
143
143
```
144
144
145
-
## GraphScope C++ SDK with Github Template
145
+
## GraphScope C++ SDK with GitHub Template
146
146
147
147
To help you develop your algorithms more efficiently, we provide a [C++ template library](https://github.com/GraphScope/cpp-template) to help you get started with your algorithm development. It includes examples and best practices for implementing PIE algorithms in C++.
After computation, you can obtain the results stored in context with the help of [`Context`](https://graphscope.io/docs/reference/context.html#context).
183
183
184
-
## GraphScope JavaSDK with Github Template
184
+
## GraphScope JavaSDK with GitHub Template
185
185
186
186
If you don't bother creating new project to try `GRAPE-jdk`, we provide a template project [GraphScope-Java-template](https://github.com/zhanglei1949/GraphScope-Java-template). By click **Use this template**, you can create a new repository with same files and structure of the template repository. You can then try developing your own algorithms in this project.
Copy file name to clipboardexpand all lines: docs/analytical_engine/tutorial_networkx_algorithms.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Tutorial: Graph Algorithms with NetowrkX APIs
1
+
# Tutorial: Graph Algorithms with NetworkX APIs
2
2
3
3
In the [previous tutorial](https://graphscope.io/docs/latest/analytical_engine/tutorial_networkx_operations.html), we have introduced how to manipulate graph data with NetworkX APIs. In this tutorial, we will show how to use GraphScope to perform graph analysis like Networkx.
4
4
@@ -119,7 +119,7 @@ Download dataset if it is not in environment:
Copy file name to clipboardexpand all lines: docs/analytical_engine/tutorial_networkx_operations.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Tutorial: Graph Operations with NetowrkX APIs
1
+
# Tutorial: Graph Operations with NetworkX APIs
2
2
[NetworkX](https://networkx.org/) is a Python package for the manipulation and functions for graph data on a single machine. However, it lacks the capability of handling large-scale graphs on a distributed environment. Fortunately, GraphScope is compatible with NetworkX APIs, and thus a program written with NetworkX can directly run on GraphScope with only some small changes. In this tutorial, we will first introduce how to manipulate graph data with NetworkX APIs.
3
3
4
4
## Creating an Empty Graph
@@ -264,7 +264,7 @@ list(K.edges)
264
264
Note that different from `subgraph`/`edge_subgraph` APIs in NetworkX which return a view, `graphscope.nx` returns a deepcopy of `subgraph`/`edge_subgraph`.
265
265
266
266
## Making Copies
267
-
One can use `to_directed` to return a directed representaion of the graph.
267
+
One can use `to_directed` to return a directed representation of the graph.
268
268
269
269
```python
270
270
DG= G.to_directed() # here would return a "deepcopy" directed representation of G.
0 commit comments