Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
spark
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs525-sp18-g07
spark
Commits
c28e5a08
Commit
c28e5a08
authored
11 years ago
by
Ankur Dave
Browse files
Options
Downloads
Patches
Plain Diff
Improve scaladoc links
parent
59e4384e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
graphx/src/main/scala/org/apache/spark/graphx/EdgeRDD.scala
+1
-1
1 addition, 1 deletion
graphx/src/main/scala/org/apache/spark/graphx/EdgeRDD.scala
graphx/src/main/scala/org/apache/spark/graphx/GraphOps.scala
+5
-5
5 additions, 5 deletions
graphx/src/main/scala/org/apache/spark/graphx/GraphOps.scala
with
6 additions
and
6 deletions
graphx/src/main/scala/org/apache/spark/graphx/EdgeRDD.scala
+
1
−
1
View file @
c28e5a08
...
...
@@ -9,7 +9,7 @@ import org.apache.spark.storage.StorageLevel
/**
* `EdgeRDD[ED]` extends `RDD[Edge[ED]]` by storing the edges in columnar format on each partition
* for performance.
It is constructed using [[impl.EdgePartitionBuilder]].
* for performance.
*/
class
EdgeRDD
[
@specialized
ED:
ClassTag
](
val
partitionsRDD
:
RDD
[(
PartitionID
,
EdgePartition
[
ED
])])
...
...
This diff is collapsed.
Click to expand it.
graphx/src/main/scala/org/apache/spark/graphx/GraphOps.scala
+
5
−
5
View file @
c28e5a08
...
...
@@ -254,7 +254,7 @@ class GraphOps[VD: ClassTag, ED: ClassTag](graph: Graph[VD, ED]) extends Seriali
* Run a dynamic version of PageRank returning a graph with vertex attributes containing the
* PageRank and edge attributes containing the normalized edge weight.
*
* @see [[org.apache.spark.graphx.lib.PageRank
]], method `
runUntilConvergence
`.
* @see [[org.apache.spark.graphx.lib.PageRank
$#
runUntilConvergence
]]
*/
def
pageRank
(
tol
:
Double
,
resetProb
:
Double
=
0.15
)
:
Graph
[
Double
,
Double
]
=
{
PageRank
.
runUntilConvergence
(
graph
,
tol
,
resetProb
)
...
...
@@ -264,7 +264,7 @@ class GraphOps[VD: ClassTag, ED: ClassTag](graph: Graph[VD, ED]) extends Seriali
* Run PageRank for a fixed number of iterations returning a graph with vertex attributes
* containing the PageRank and edge attributes the normalized edge weight.
*
* @see [[org.apache.spark.graphx.lib.PageRank
]], method `
run
`.
* @see [[org.apache.spark.graphx.lib.PageRank
$#
run
]]
*/
def
staticPageRank
(
numIter
:
Int
,
resetProb
:
Double
=
0.15
)
:
Graph
[
Double
,
Double
]
=
{
PageRank
.
run
(
graph
,
numIter
,
resetProb
)
...
...
@@ -274,7 +274,7 @@ class GraphOps[VD: ClassTag, ED: ClassTag](graph: Graph[VD, ED]) extends Seriali
* Compute the connected component membership of each vertex and return a graph with the vertex
* value containing the lowest vertex id in the connected component containing that vertex.
*
* @see [[org.apache.spark.graphx.lib.ConnectedComponents]]
* @see [[org.apache.spark.graphx.lib.ConnectedComponents
$#run
]]
*/
def
connectedComponents
()
:
Graph
[
VertexID
,
ED
]
=
{
ConnectedComponents
.
run
(
graph
)
...
...
@@ -283,7 +283,7 @@ class GraphOps[VD: ClassTag, ED: ClassTag](graph: Graph[VD, ED]) extends Seriali
/**
* Compute the number of triangles passing through each vertex.
*
* @see [[org.apache.spark.graphx.lib.TriangleCount]]
* @see [[org.apache.spark.graphx.lib.TriangleCount
$#run
]]
*/
def
triangleCount
()
:
Graph
[
Int
,
ED
]
=
{
TriangleCount
.
run
(
graph
)
...
...
@@ -293,7 +293,7 @@ class GraphOps[VD: ClassTag, ED: ClassTag](graph: Graph[VD, ED]) extends Seriali
* Compute the strongly connected component (SCC) of each vertex and return a graph with the
* vertex value containing the lowest vertex id in the SCC containing that vertex.
*
* @see [[org.apache.spark.graphx.lib.StronglyConnectedComponents]]
* @see [[org.apache.spark.graphx.lib.StronglyConnectedComponents
$#run
]]
*/
def
stronglyConnectedComponents
(
numIter
:
Int
)
:
Graph
[
VertexID
,
ED
]
=
{
StronglyConnectedComponents
.
run
(
graph
,
numIter
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment