diff --git a/README.md b/README.md index 0a1577788304e1c334275e15f0208cfae2f9ec72..865bfb5b0bb14b0b23ae875b5871a1d13d5c1bcf 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Introduction The graph algorithm library running on Kunpeng processors is an acceleration library that provides a rich set of high-level tools for graph algorithms. It is developed based on original APIs of Apache [Spark 2.4.6](https://github.com/apache/spark/tree/v2.4.6). The acceleration library greatly improves the computing power in big data scenarios. Additionally, it provides multiple APIs in addition to the original APIs if the Apache Spark graph library. -The library provides 23 graph algorithms: triangle count (TC), weak clique enumeration (WCE), maximal clique enumeration (MCE), modualrity, closeness, cycle detection (CD), label propagation algorithm (LPA), Louvain, PageRank, IncPageRank, Weighted PageRank, shortest-paths, strongly connected components (SCC), connected components (CC), K-core decomposition (KCore), degree centrality (Degree), breadth-first-search (BFS), ClusteringCoefficient, TrustRank, PersonalizedPageRank, Betweenness, Node2Vec and SubgraphMatching. You can find the latest documentation on the project web page. This README file contains only basic setup instructions. +The library provides 24 graph algorithms: triangle count (TC), weak clique enumeration (WCE), maximal clique enumeration (MCE), modualrity, closeness, cycle detection (CD), label propagation algorithm (LPA), Louvain, PageRank, IncPageRank, Weighted PageRank, shortest-paths, strongly connected components (SCC), connected components (CC), K-core decomposition (KCore), degree centrality (Degree), breadth-first-search (BFS), ClusteringCoefficient, TrustRank, PersonalizedPageRank, Betweenness, Node2Vec, SubgraphMatching and TrillionPageRank. You can find the latest documentation on the project web page. This README file contains only basic setup instructions. @@ -20,11 +20,11 @@ Building mvn package - Obtain "boostkit-graph-acc_2.11-2.1.0-spark2.4.6.jar" from the "Spark-graph-algo-lib/graph-accelerator/target/" directory + Obtain "boostkit-graph-acc_2.11-2.2.0-spark2.4.6.jar" from the "Spark-graph-algo-lib/graph-accelerator/target/" directory - Obtain "boostkit-graph-core_2.11-2.1.0-spark2.4.6.jar" from the "Spark-graph-algo-lib/graph-core/target/" directory + Obtain "boostkit-graph-core_2.11-2.2.0-spark2.4.6.jar" from the "Spark-graph-algo-lib/graph-core/target/" directory - Obtain "boostkit-graph-kernel-clinet_2.11-2.1.0-spark2.4.6.jar" from the "Spark-graph-algo-lib/graph-kernel/target/" directory + Obtain "boostkit-graph-kernel-clinet_2.11-2.2.0-spark2.4.6.jar" from the "Spark-graph-algo-lib/graph-kernel/target/" directory diff --git a/graph-accelerator/pom.xml b/graph-accelerator/pom.xml index 126cc02a91abdb466e23472ecfbf02cdf75fa2e5..3dd5c6094af68180e502b4776969cc6d8d1aec85 100644 --- a/graph-accelerator/pom.xml +++ b/graph-accelerator/pom.xml @@ -2,13 +2,13 @@ org.apache.spark boostkit-graph - 2.1.0 + 2.2.0 4.0.0 org.apache.spark.graphx.lib boostkit-graph-acc_2.11 - 2.1.0 + 2.2.0 ${project.artifactId} Spark graph algo accelerator @@ -21,7 +21,7 @@ org.apache.spark.graphx.lib boostkit-graph-kernel-client_2.11 - 2.1.0 + 2.2.0 ${spark.version} compile diff --git a/graph-core/pom.xml b/graph-core/pom.xml index 79496bc4adf2e3593e0eaaf163c8dc49ee10b9d1..97562a81f78fc9128fdc7b8d34bb4c3c0278131e 100644 --- a/graph-core/pom.xml +++ b/graph-core/pom.xml @@ -2,12 +2,12 @@ org.apache.spark boostkit-graph - 2.1.0 + 2.2.0 4.0.0 boostkit-graph-core_2.11 - 2.1.0 + 2.2.0 ${project.artifactId} Spark graph core diff --git a/graph-kernel/pom.xml b/graph-kernel/pom.xml index 7a6812b9327c17ed6c761df7c4d11cc3e9af06cf..54b93d504cc356d27b39f272db0c4d28e95099ce 100644 --- a/graph-kernel/pom.xml +++ b/graph-kernel/pom.xml @@ -2,12 +2,12 @@ org.apache.spark boostkit-graph - 2.1.0 + 2.2.0 4.0.0 org.apache.spark.graphx.lib boostkit-graph-kernel-client_2.11 - 2.1.0 + 2.2.0 ${project.artifactId} Spark graph algo client 2020 diff --git a/pom.xml b/pom.xml index 8b2a25143a6ccc0d0949dffc8e410a5793a29218..1ead03f84294b656ae9231c37ee9b047831915b5 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.apache.spark boostkit-graph - 2.1.0 + 2.2.0 ${project.artifactId} Spark graph algo 2020