From 1a4ac3eb916ebac0691478d65e1bf68087da3913 Mon Sep 17 00:00:00 2001 From: wyy566 <531938832@qq.com> Date: Fri, 25 Nov 2022 14:56:46 +0800 Subject: [PATCH] add new algorithm TrillionPageRank and updata the version number to 2.2.0 --- README.md | 8 ++++---- graph-accelerator/pom.xml | 6 +++--- graph-core/pom.xml | 4 ++-- graph-kernel/pom.xml | 4 ++-- pom.xml | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 9841e0f..b1b53f1 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.3.2](https://github.com/apache/spark/tree/v2.3.2). 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.3.2.jar" from the "Spark-graph-algo-lib/graph-accelerator/target/" directory + Obtain "boostkit-graph-acc_2.11-2.2.0-Spark2.3.2.jar" from the "Spark-graph-algo-lib/graph-accelerator/target/" directory - Obtain "boostkit-graph-core_2.11-2.1.0-Spark2.3.2.jar" from the "Spark-graph-algo-lib/graph-core/target/" directory + Obtain "boostkit-graph-core_2.11-2.2.0-Spark2.3.2.jar" from the "Spark-graph-algo-lib/graph-core/target/" directory - Obtain "boostkit-graph-kernel-clinet_2.11-2.1.0-Spark2.3.2.jar" from the "Spark-graph-algo-lib/graph-kernel/target/" directory + Obtain "boostkit-graph-kernel-clinet_2.11-2.2.0-Spark2.3.2.jar" from the "Spark-graph-algo-lib/graph-kernel/target/" directory diff --git a/graph-accelerator/pom.xml b/graph-accelerator/pom.xml index 8294c14..265898c 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 845a711..d8036e1 100644 --- a/graph-core/pom.xml +++ b/graph-core/pom.xml @@ -2,13 +2,13 @@ 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 ebaec9b..0304922 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 f58e132..0b326e9 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 -- Gitee