SlideShare uma empresa Scribd logo
1 de 49
Baixar para ler offline
STING: Spatio-Temporal Interaction
Networks and Graphs for Intel
Platforms
David Bader, Jason Riedy, David Ediger, Rob McColl,
Timothy G. Mattson∗, ...
Georgia Institute of Technology 17 January 2014
(insert current prefix here)scale data analysis
Health care Finding outbreaks, population epidemiology
Social networks Advertising, searching, grouping
Intelligence Decisions at scale, regulating algorithms
Systems biology Understanding interactions, drug design
Power grid Disruptions, conservation
Simulation Discrete events, cracking meshes
Data analysis runs throughout.
Many problems can be phrased through graphs.
Any many are changing and dynamic.
Bader, Riedy— STING 17 Jan. 2014 2 / 47
GT’s part of Intel’s Non-Numeric Computing Program
Goal
Supporting analysis of massive graphs under rapid change
across the spectrum of Intel-based platforms.
STING on Intel-based platforms
Maintain a graph and metrics under large data changes
Performance, documentation, distribution
Available at http://www.cc.gatech.edu/stinger/
Bader, Riedy— STING 17 Jan. 2014 3 / 47
Outline
Motivation: Graph Algorithms for Analysis
STING
Review of Accomplishments
Selected Details on Recent Work
Dynamic Community Updating
Incremental PageRank
Related Projects (Future Plans)
Artifacts of the Intel Non-Numeric Computing Program
Bader, Riedy— STING 17 Jan. 2014 4 / 47
Why Graphs?
Smaller than raw data.
Taught (roughly) to all CS
students...
Semantic attributions can capture
essential relationships.
Traversals can be faster than
filtering DB joins.
Provide clear phrasing for queries
about relationships.
Often next step after dense and sparse linear algebra.
Note: Extracting data into a graph is a separate topic, see
Intel’s GraphBuilder.
Bader, Riedy— STING 17 Jan. 2014 5 / 47
Graphs: A Fundamental Abstraction
Structure for “unstructured” data
Traditional uses:
Route planning on fixed routes
Logistic planning between sources, routes, destinations
Increasing uses:
Computer security: Identify anomalies (e.g. spam, viruses,
hacks) as they occur, insider threats, control access,
localize malware
Data / intelligence integration: Find smaller, relevant
subsets of massive, “unstructured” data piles
Recommender systems (industry): Given activities,
automatically find other interesting data.
Bader, Riedy— STING 17 Jan. 2014 6 / 47
On to STING...
Motivation: Graph Algorithms for Analysis
STING
Review of Accomplishments
Selected Details on Recent Work
Related Projects (Future Plans)
Artifacts of the Intel Non-Numeric Computing Program
Bader, Riedy— STING 17 Jan. 2014 7 / 47
STING’s focus
Source data
predictionaction
summary
Control
VizSimulation / query
STING manages queries against changing graph data.
Visualization and control often are application specific.
Ideal: Maintain many persistent graph analysis kernels.
One current graph snapshot, kernels keep smaller histories.
Also (a harder goal), coordinate the kernels’ cooperation.
Bader, Riedy— STING 17 Jan. 2014 8 / 47
STING: High-level architecture
Slide credit: Rob McColl and David Ediger
OpenMP + sufficiently POSIX-ish
Multiple processes for resilience
Bader, Riedy— STING 17 Jan. 2014 9 / 47
STING Extensible Representation: Core data structure
source
vertex
edge
type
adj. vtx weight mod. time first time
edge type index
vertex
index
Initial considerations [Bader, et al.]
Be useful for the entire “large graph” community
Portable semantics and high-level optimizations across multiple platforms & frameworks (XMT C, MTGL,
etc.)
Permit good performance: No single structure is optimal for all.
Assume globally addressable memory access and atomic operations
Support multiple, parallel readers and a single writer process
Large graph ⇒ rare conflicts, may ignore synchronization
Bader, Riedy— STING 17 Jan. 2014 10 / 47
STING in use
Who is using it?
Internally, well, us. Some details later.
Outside institutions in multiple research projects
Center for Adaptive Supercomputing Software –
Multithreaded Architectures (CASS-MT) directed by PNNL
PRODIGAL team for DARPA ADAMS (Anomaly Detection at
Multiple Scales) including GTRI, SAIC, Oregon State U., U.
Mass., and CMU
Several industrial companies in the area of data analytics
and security
Well-attended tutorials given at PPoPP, in MD, and locally
Bader, Riedy— STING 17 Jan. 2014 11 / 47
STING: Where do you get it?
www.cc.gatech.edu/stinger/
Gateway to
code,
development,
documentation,
presentations...
(working on usage and
development screencasts)
Remember: Still academic code, but
maturing.
Bader, Riedy— STING 17 Jan. 2014 12 / 47
Motivation: Graph Algorithms for Analysis
STING
Review of Accomplishments
Selected Details on Recent Work
Related Projects (Future Plans)
Artifacts of the Intel Non-Numeric Computing Program
Bader, Riedy— STING 17 Jan. 2014 13 / 47
Selected Program Accomplishments I
In the beginning: Initial streaming algorithms
Maintaining clustering coefficients[1] (counting triangles)
Up to 130 000 graph updates per second on X5570
(Nehalem-EP, 2.93GHz)
2000× speed-up over static recomputation
Connected components[2]
Up to 88 700 graph updates per second on X5570, 233×
speed-up
Community detection[3, 4, 5]
First parallel algorithm for agglomerative community
detection, 3.3B edges clustered in 505s on a 4-socket,
10-core Westmere-EX.
Win 10th DIMACS Implementation Challenge’s Mix Challenge
Enabled moving computation from special server + batch to
laptops and servers.
Bader, Riedy— STING 17 Jan. 2014 14 / 47
Selected Program Accomplishments II
Still maintained, used by external groups like Cray, people
finally threatening performance.
Expanded streaming algorithms
Improved connected components[6]
Does not fall back on re-computation for deletions
Up to 137× speed-up over static re-computation
Community maintenance[7] and monitoring∗
Up to 100 million updates per second, speed-ups from 4× to
3 700×
Demonstrated at Research@Intel and GraphLab Workshop
2013
PageRank∗
Reduce edge traversals from 30% – 90%.
Betweenness centrality∗ [8, 9]
Up to 148× speed-up
Optimization and software structure of STING[10]
Bader, Riedy— STING 17 Jan. 2014 15 / 47
Selected Program Accomplishments III
Up to 14× performance improvement on Intel-based
platforms[11], best paper award at HPEC12
Research@Intel 2013 demo collaborative with Intel
GraphBuilder: extract and transform data from a Hadoop
store, transfer to STING for analysis
Something different:
10th DIMACS Implementation Challenge on Graph
Partitioning and Graph Clustering [12]
Very useful workshop, 13-14 February 2012 at Georgia Tech
Intel sponsorship: Thank you!
Graph archive being used in other projects (although not
always cited appropriately)
PASQUAL [13]
First de novo genome assembler that is both scalable and
reliable (doesn’t crash).
http://www.cc.gatech.edu/pasqual/ (not STING-based)
Bader, Riedy— STING 17 Jan. 2014 16 / 47
Motivation: Graph Algorithms for Analysis
STING
Review of Accomplishments
Selected Details on Recent Work
Dynamic Community Updating
Incremental PageRank
Related Projects (Future Plans)
Artifacts of the Intel Non-Numeric Computing Program
Bader, Riedy— STING 17 Jan. 2014 17 / 47
Community Detection
What do we mean?
Partition a graph’s
vertices into disjoint
communities.
Locally optimize some
metric, e.g. modularity,
conductance, ...
Try to capture that
vertices are more
similar within one
community than
between communities.
Jason’s network via LinkedIn Labs
Bader, Riedy— STING 17 Jan. 2014 18 / 47
Parallel agglomerative method
A
B
C
D
E
F
G
Use a matching to avoid a serializing
queue.
Compute a heavy weight, large
matching.
Simple greedy algorithm.
Maximal matching, within 2× max
weight.
Merge all matched communities in
parallel.
Highly scalable, 5.8 × 106 – 7 × 106
edges/sec, 8× – 16× speed-up on
80-thread E7-8870
Agnostic to weighting, matching...
Works with many weighting and
termination criteria.
Bader, Riedy— STING 17 Jan. 2014 19 / 47
Parallel agglomerative method
A
B
C
D
E
F
G
C
D
G
Use a matching to avoid a serializing
queue.
Compute a heavy weight, large
matching.
Simple greedy algorithm.
Maximal matching, within 2× max
weight.
Merge all matched communities in
parallel.
Highly scalable, 5.8 × 106 – 7 × 106
edges/sec, 8× – 16× speed-up on
80-thread E7-8870
Agnostic to weighting, matching...
Works with many weighting and
termination criteria.
Bader, Riedy— STING 17 Jan. 2014 19 / 47
Parallel agglomerative method
A
B
C
D
E
F
G
C
D
G
E
B
C
Use a matching to avoid a serializing
queue.
Compute a heavy weight, large
matching.
Simple greedy algorithm.
Maximal matching, within 2× max
weight.
Merge all matched communities in
parallel.
Highly scalable, 5.8 × 106 – 7 × 106
edges/sec, 8× – 16× speed-up on
80-thread E7-8870
Agnostic to weighting, matching...
Works with many weighting and
termination criteria.
Bader, Riedy— STING 17 Jan. 2014 19 / 47
Community Monitoring Algorithm
Given a batch of edge insertions and removals:
1. Collect the set of possibly moved vertices ∆V.
Add the endpoints∗ of every edge insertion and removal to
∆V.
(STING support routine, scatter/gather and atomic CAS.)
2. Extract each v ∈ ∆V from its community into a singleton.
This is the complex piece, see Riedy & Bader, MTAAP13 [7].
3. Re-start agglomeration from the expanded community
graph.
∗: More recent experiments (by Anita Zakrzewska) add larger
neighborhoods. Little effect on modularity, large effect on performance.
Bader, Riedy— STING 17 Jan. 2014 20 / 47
Platform: Intel® E7-4820-based server
Tolerates some latency by hyperthreading:
“Westmere-EX:” 2 threads / core, 8 cores / socket, four
sockets.
Fast cores (2.0 GHz), fast memory (1 066 MHz).
Not so many outstanding memory requests (60/socket), but
large caches (18 MiB L3 per socket).
Good system support
Transparent hugepages reduces TLB costs.
Fast, user-level locking. (HLE would be better...)
OpenMP, although I didn’t tune it...
Four processors (64
threads), 1 TiB memory
gcc 4.7.2, Linux kernel 3.9
pre-release
Acknowledgment: Donated by Oracle. Image: Intel® press kit
Bader, Riedy— STING 17 Jan. 2014 21 / 47
Platform: Cray/YarcData XMT2
Tolerates latency by massive multithreading:
Hardware: 128 threads per processor
Context switch on every cycle (500 MHz)
Many outstanding memory requests (180/proc)
“No” caches...
Flexibly supports dynamic load balancing
Globally hashed address space, no data cache
Support for fine-grained, word-level synchronization
Full/empty bit on with every memory word
64 processor XMT2 at
CSCS, the Swiss National
Supercomputer Centre.
500 MHz processors, 8192
threads, 2 TiB of shared
memory Image: cray.com
Bader, Riedy— STING 17 Jan. 2014 22 / 47
Test Data
Combination of real and artificial
Start with (small) real-world graphs from 10th DIMACS
Challenge collection:
Name |V| |E| |C| |EC|
caidaRouterLevel 192 244 1 218 132 18 343 30 776
coPapersDBLP 540 486 30 866 466 1 401 205 856
eu-2005 862 664 16 138 468 55 624 194 971
Generate artificial edge actions:
Compute an initial clustering.
Generate random edge insertions between and removals
within communities.
15/16: Insertions. Select communities ∝ volume, vertices ∝
1/degree.
1/16: Removals. Uniform sampling (w/o replacement) of
existing edges, then inserted edges.
Bader, Riedy— STING 17 Jan. 2014 23 / 47
Peak updates per second
There is speed-up per # of threads, etc. on large batches,
large graphs. Not the interesting story.
Graph Platform #T Batch Upd/Sec Speed-up∗ Latency(s)
caidaRouterLevel IA32-64 56 1e5 1.2e+7 4.0 8.3e-3
XMT2 56 1e6 2.5e+6 4.3 4.0e-1
coPapersDBLP IA32-64 20 1e6 2.9e+6 11 3.5e-1
XMT2 48 3e5 2.2e+6 21 1.4e-1
eu-2005 IA32-64 40 1e5 4.8e+6 330 2.1e-2
XMT2 64 1e6 2.1e+6 43 4.9e-1
Large batches,
many threads
⇒
> 106 updates per second, but
high latency
∗: Speed up over static recomputation. Quality doesn’t
decrease significantly v. static recomputation.
Bader, Riedy— STING 17 Jan. 2014 24 / 47
Least latency between updates
Graph Platform #T Batch Upd./Sec Speed-up∗ Latency (s)
caidaRouterLevel IA32-64 2 1 4.6e+2 430 2.2e-3
XMT2 4 30 5.2e+3 230 5.8e-3
coPapersDBLP IA32-64 4 30 7.0e+3 1900 4.3e-3
XMT2 40 1 1.4e+2 380 7.1e-3
eu-2005 IA32-64 12 1 4.2e+2 3500 2.4e-3
XMT2 20 10 1.5e+3 3200 6.5e-3
Small batches,
fewer threads
⇒
fast response, but < 104
updates per second
∗: Speed up over static recomputation. Quality doesn’t
decrease significantly v. static recomputation.
Bader, Riedy— STING 17 Jan. 2014 25 / 47
Incremental PageRank
PageRank: Well-understood method for ranking vertices
based on random walks (related to minimizing
conductance).
Equivalent problem, solve (I − αATD−1)x = (1 − α)v given
initial weights v.
Goal: Use for seed set expansion, sparse v.
State-of-the-art for updating x when the graph represented
by A changes? Re-start iteration with the previous x.
Can do significantly better for low-latency needs.
Compute the change ∆x instead of the entire new x.
Bader, Riedy— STING 17 Jan. 2014 26 / 47
Incremental PageRank: Iteration
Iterative solver
Step k → k + 1:
∆x(k+1)
= α(A + ∆A)T
(D + ∆D)−1
∆x(k)
+
α (A + ∆A)T
(D + ∆D)−1
− AT
D−1
x
Additive part: Non-zero only at changes.
Operator: Pushes changes outward.
Bader, Riedy— STING 17 Jan. 2014 27 / 47
Incremental PageRank: Limiting Expansion
Iterative solver
Step k → k + 1:
∆ˆx(k+1)
= α(A + ∆A)T
(D + ∆D)−1
∆ˆx
(k)
|ex + α∆ˆx|held
α (A + ∆A)T
(D + ∆D)−1
− AT
D−1 ˆx
Additive part: Non-zero only at changes.
Operator: Pushes sufficiently large changes outward.
Bader, Riedy— STING 17 Jan. 2014 28 / 47
Incremental PageRank: Test Cases
Initial, high-level implementation via sparse matrices in Julia.
Test graphs from the 10th DIMACS Implementation Challenge.
Add uniformly random edges... worst case.
Up to 100k in different batch sizes.
One sequence of edge actions per graph shared across
experiments.
Conv. & hold base threshold: 10−12
Graph |V| |E| Avg. Deg. Size (MiB)
caidaRouterLevel 192 244 609 066 3.17 5.38
coPapersCiteseer 434 102 1 603 6720 36.94 124.01
coPapersDBLP 540 486 15 245 729 28.21 118.38
great-britain.osm 7 733 822 8 156 517 1.05 91.73
PGPgiantcompo 10 680 24 316 2.28 0.23
power 4 941 6 594 1.33 0.07
Bader, Riedy— STING 17 Jan. 2014 29 / 47
Incremental PageRank: Edge Traversal Savings
Percent of edge traversals relative to re-started iteration:
1000 100 10
q q q q q q q q q qq q q q q q q q q qq q q q q q q q q qq q q q q q q q q q
qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
q
qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
q
qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
0%
20%
40%
60%
80%
0%
20%
40%
60%
80%
0%
20%
40%
60%
80%
0%
20%
40%
60%
80%
0%
20%
40%
60%
80%
0%
20%
40%
60%
80%
caidaRouterLevelcoPapersCiteseercoPapersDBLPgreat_britain.osmPGPgiantcompopower
0 2500 5000 7500 10000 0 2500 5000 7500 10000 0 2500 5000 7500 10000
"Time"
Fractionofedgesv.restartedPR
Graph name q caidaRouterLevel coPapersCiteseer coPapersDBLP great_britain.osm PGPgiantcompo power
Held vertex threshold / 10**−12 q q q q10000.0 1000.0 100.0 10.0
Bader, Riedy— STING 17 Jan. 2014 30 / 47
Incremental PageRank: Quality
Kendall τ (count of inversions) for ranking result:
1000 100 10
q q q q q q q q q qq q q q q q q q q qq q q q q q q q q qq q q q q q q q q q qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
0.9995
0.9996
0.9997
0.9998
0.9999
1.0000
0.9995
0.9996
0.9997
0.9998
0.9999
1.0000
0.9995
0.9996
0.9997
0.9998
0.9999
1.0000
0.9995
0.9996
0.9997
0.9998
0.9999
1.0000
0.9995
0.9996
0.9997
0.9998
0.9999
1.0000
0.9995
0.9996
0.9997
0.9998
0.9999
1.0000
caidaRouterLevelcoPapersCiteseercoPapersDBLPgreat_britain.osmPGPgiantcompopower
0 2500 5000 7500 10000 0 2500 5000 7500 10000 0 2500 5000 7500 10000
"Time"
Kendalltau
Graph name q caidaRouterLevel coPapersCiteseer coPapersDBLP great_britain.osm PGPgiantcompo power
Held vertex threshold / 10**−12 q q q q10000.0 1000.0 100.0 10.0
Larger is more similar, max. value one. All values here in (0.995, 1].
Bader, Riedy— STING 17 Jan. 2014 31 / 47
Incremental PageRank: Quality for Seed-Set Use
Fagin, et al.’s extension Kendall τ for the top 100 list:
1000 100 10
q q q q q q q q q qq q q q q q q q q qq q q q q q q q q qq q q q q q q q q q qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq0.0000
0.0005
0.0010
0.0015
0.0000
0.0005
0.0010
0.0015
0.0000
0.0005
0.0010
0.0015
0.0000
0.0005
0.0010
0.0015
0.0000
0.0005
0.0010
0.0015
0.0000
0.0005
0.0010
0.0015
caidaRouterLevelcoPapersCiteseercoPapersDBLPgreat_britain.osmPGPgiantcompopower
0 2500 5000 7500 10000 0 2500 5000 7500 10000 0 2500 5000 7500 10000
"Time"
K_0(top100)
Graph name q caidaRouterLevel coPapersCiteseer coPapersDBLP great_britain.osm PGPgiantcompo power
Held vertex threshold / 10**−12 q q q q10000.0 1000.0 100.0 10.0
Smaller is more similar, min. value one. All values here in [0, 0.0018).
Bader, Riedy— STING 17 Jan. 2014 32 / 47
Motivation: Graph Algorithms for Analysis
STING
Review of Accomplishments
Selected Details on Recent Work
Related Projects (Future Plans)
Artifacts of the Intel Non-Numeric Computing Program
Bader, Riedy— STING 17 Jan. 2014 33 / 47
GRATEFUL: Graph Analysis Tackling Power Efficiency,
Uncertainty, and Locality
David A. Bader (PI), Jason Riedy (co-PI)
Under DARPA PERFECT (Power Efficiency Revolution for Embedded Computing Technologies) #HR0011-13-2-0001
Goal: Improve ops/watt by factor of 50×–75×!
Providing mission-critical analysis of semantic data where
needed:
as close to the data and data use as possible
using the least power necessary to
enable rapid decisions with reliable analysis.
GRATEFUL is developing
new algorithms providing new, fundamental capabilities
while coping with real-world uncertainties
under run-time power and environmental constraints.
STING: Static ⇒ dynamic saves power, lowers latency.
Bader, Riedy— STING 17 Jan. 2014 34 / 47
The XScala Project: A Community
Repository for Model-driven Design and
Tuning of Data- Intensive Applications for
Extreme-scale Accelerator-based Systems
David A. Bader (PI, GT), Viktor Prasanna (PI, USC),
Richard Vuduc (co-PI, GT), Jason Riedy (co-PI, GT)
NSF ACI-1339745, an SI2-SSI project
Goal: Accelerate science!
Map irregular data problems onto “accelerators” and make
them usable
Science accelerators: multi-threaded, multi-core; GPGPU;
cloud; etc.
Develop models and analysis kernels together.
Not just graphs: also strings, machine learning, ...
Not just GPUs: also parallelizing sequential roadblocks,
mapping onto FPGAs, finding opportunities for platforms, ...
Bader, Riedy— STING 17 Jan. 2014 35 / 47
Graph Algorithm Primitives
Community standards effort underway: Timothy Mattson,
Jeremy Kepner, John Gilbert, Aydin Buluç, ...)
State of the art for “Graphs in the
language of Linear algebra” is mature
enough to support a standard set of
BLAS.
Benefits of this standard include:
Separation of concerns spares graph
algorithm experts the pain of producing
optimized primitives (the vendors will
produce these ... just as with traditional
BLAS)
Prevents mass scale “reinvention of the
wheel” with each graph research group
creating their own primitives.
Bader, Riedy— STING 17 Jan. 2014 36 / 47
Higher-Level (aka Fuzzier) Plans
More integration into entire analysis tool chains.
Continue partnering with ETL researchers (e.g.
GraphBuilder), visualization researchers, area experts.
Keep STING focused on the graph mapping and algorithms
portion.
Learn how/what to forget. Cannot keep all data.
Make writing high-performance STING kernels easier:
Looking into Julia (julialang.org) for dynamically compiled
kernels, although large memory footprint.
Keeping an eye on other projects (many related through
GRATEFUL, e.g. SEJITS in UCB’s ASPIRE)
PGAS for distributed memory platforms.
Wants a finer-grained interconnect with higher injection
rates than Ethernet or IB...
And a PGAS mmap... (aka system-level work)
Bader, Riedy— STING 17 Jan. 2014 37 / 47
Motivation: Graph Algorithms for Analysis
STING
Review of Accomplishments
Selected Details on Recent Work
Related Projects (Future Plans)
Artifacts of the Intel Non-Numeric Computing Program
Bader, Riedy— STING 17 Jan. 2014 38 / 47
Software & Data
Where & What
STING/STINGER http://www.cc.gatech.edu/stinger/; framework
for dynamic graph analysis.
community-el http://www.cc.gatech.edu/~jriedy/
community-detection/ or
http://gitorious.org/community-el; separate static
community detection code, simple input, no external
dependencies.
PASQUAL http://www.cc.gatech.edu/pasqual/;
shared-memory scalable and dependable de novo
assembler
DIMACS Challenge http://www.cc.gatech.edu/dimacs10/; data,
workshop papers and presentations
All software under a modified BSD license.
Bader, Riedy— STING 17 Jan. 2014 39 / 47
Publications I
Note: Not including presentations, posters, or publications that
simply used mirasol...
[1] D. Ediger, K. Jiang, E. J. Riedy, and D. A. Bader, “Massive
streaming data analytics: A case study with clustering
coefficients,” in Proc. Workshop on Multithreaded
Architectures and Applications (MTAAP), Atlanta, Georgia,
Apr. 2010.
[2] D. Ediger, E. J. Riedy, D. A. Bader, and H. Meyerhenke,
“Tracking structure of streaming social networks,” in Proc.
Workshop on Multithreaded Architectures and Applications
(MTAAP), Anchorage, Alaska, May 2011.
Bader, Riedy— STING 17 Jan. 2014 40 / 47
Publications II
[3] E. J. Riedy, H. Meyerhenke, D. Ediger, and D. A. Bader,
“Parallel community detection for massive graphs,” in
Proceedings of the 9th International Conference on Parallel
Processing and Applied Mathematics, Torun, Poland, Sep.
2011.
[4] ——, “Parallel community detection for massive graphs,” in
10th DIMACS Implementation Challenge Workshop - Graph
Partitioning and Graph Clustering. Atlanta, Georgia:
(workshop paper), Feb. 2012, won first place in the Mix
Challenge and Mix Pareto Challenge.
[5] E. J. Riedy, D. A. Bader, and H. Meyerhenke, “Scalable
multi-threaded community detection in social networks,” in
Workshop on Multithreaded Architectures and Applications
(MTAAP), Shanghai, China, May 2012.
Bader, Riedy— STING 17 Jan. 2014 41 / 47
Publications III
[6] R. McColl, O. Green, and D. Bader, “A new parallel algorithm
for connected components in dynamic graphs,” in The 20th
Annual IEEE International Conference on High Performance
Computing (HiPC), Hyderabad, India, Dec. 2013.
[7] E. J. Riedy and D. A. Bader, “Scalable multi-threaded
community detection in social networks,” in 7th Workshop
on Multithreaded Architectures and Applications (MTAAP),
Boston, MA, May 2013.
[8] O. Green, R. McColl, , and D. Bader, “A fast algorithm for
streaming betweenness centrality,” in 4th ASE/IEEE
International Conference on Social Computing (SocialCom),
Amsterdam, The Netherlands, Sep. 2012.
Bader, Riedy— STING 17 Jan. 2014 42 / 47
Publications IV
[9] O. Green and D. A. Bader, “A fast algorithm for streaming
betweenness centrality,” in 5th ASE/IEEE International
Conference on Social Computing (SocialCom), Washington,
DC, Sep. 2013.
[10] J. Riedy, H. Meyerhenke, D. A. Bader, D. Ediger, and T. G.
Mattson, “Analysis of streaming social networks and graphs
on multicore architectures,” in IEEE International
Conference on Acoustics, Speech and Signal Processing
(ICASSP), Kyoto, Japan, Mar. 2012. [Online]. Available:
http://www.slideshare.net/jasonriedy/
icassp-2012-analysis-of-streaming-social-networks-and-graph
Bader, Riedy— STING 17 Jan. 2014 43 / 47
Publications V
[11] D. Ediger, R. McColl, J. Riedy, and D. A. Bader, “STINGER:
High performance data structure for streaming graphs,” in
The IEEE High Performance Extreme Computing
Conference (HPEC), Waltham, MA, Sep. 2012, best paper
award.
[12] D. A. Bader, H. Meyerhenke, P. Sanders, and D. Wagner,
Eds., Graph Partitioning and Graph Clustering. 10th
DIMACS Implementation Challenge Workshop, ser.
Contemporary Mathematics. Georgia Institute of
Technology, Atlanta, GA: American Mathematical Society
and Center for Discrete Mathematics and Theoretical
Computer Science, 2013, no. 588.
Bader, Riedy— STING 17 Jan. 2014 44 / 47
Publications VI
[13] X. Liu, P. Pande, H. Meyerhenke, and D. A. Bader,
“PASQUAL: Parallel techniques for next generation genome
sequence assembly,” IEEE Transactions on Parallel &
Distributed Systems, vol. 24, no. 5, pp. 977–986, 2013.
[14] J. Fairbanks, D. Ediger, R. McColl, D. Bader, and E. Gilbert,
“A statistical framework for analyzing streaming graphs,” in
IEEE/ACM International Conference on Advances in Social
Networks Analysis and Mining (ASONAM), Aug. 2013.
Bader, Riedy— STING 17 Jan. 2014 45 / 47
People!
GT is an educational institution
Related graduate students:
David Ediger: graduated, Ph.D., at GTRI
Rob McColl: nearing graduation, shared with GTRI
Oded Green: nearing graduation
James Fairbanks
Anita Zakrzewska
Xing Liu: PASQUAL
Pushkar Pande: PASQUAL, graduated, MS
Related post-doc:
Henning Meyerhenke: Juniorprof. Dr. at Karlsruhe Inst. Tech.
Bader, Riedy— STING 17 Jan. 2014 46 / 47
Acknowledgment of support
Bader, Riedy— STING 17 Jan. 2014 47 / 47

Mais conteúdo relacionado

Destaque

Hadoop World 2011: Hadoop and Graph Data Management: Challenges and Opportuni...
Hadoop World 2011: Hadoop and Graph Data Management: Challenges and Opportuni...Hadoop World 2011: Hadoop and Graph Data Management: Challenges and Opportuni...
Hadoop World 2011: Hadoop and Graph Data Management: Challenges and Opportuni...Cloudera, Inc.
 
Graph Exploitation Seminar, 2011
Graph Exploitation Seminar, 2011Graph Exploitation Seminar, 2011
Graph Exploitation Seminar, 2011Jason Riedy
 
Scalable and Efficient Algorithms for Analysis of Massive, Streaming Graphs
Scalable and Efficient Algorithms for Analysis of Massive, Streaming GraphsScalable and Efficient Algorithms for Analysis of Massive, Streaming Graphs
Scalable and Efficient Algorithms for Analysis of Massive, Streaming GraphsJason Riedy
 
Graph Analysis Trends and Opportunities -- CMG Performance and Capacity 2014
Graph Analysis Trends and Opportunities -- CMG Performance and Capacity 2014Graph Analysis Trends and Opportunities -- CMG Performance and Capacity 2014
Graph Analysis Trends and Opportunities -- CMG Performance and Capacity 2014Jason Riedy
 
Network Challenge: Error and Sensitivity Analysis
Network Challenge: Error and Sensitivity AnalysisNetwork Challenge: Error and Sensitivity Analysis
Network Challenge: Error and Sensitivity AnalysisJason Riedy
 
Introduction to STINGER
Introduction to STINGERIntroduction to STINGER
Introduction to STINGERrobertmccoll
 
Graph Analysis Beyond Linear Algebra
Graph Analysis Beyond Linear AlgebraGraph Analysis Beyond Linear Algebra
Graph Analysis Beyond Linear AlgebraJason Riedy
 
Community Detection with Networkx
Community Detection with NetworkxCommunity Detection with Networkx
Community Detection with NetworkxErika Fille Legara
 
Graph Analyses with Python and NetworkX
Graph Analyses with Python and NetworkXGraph Analyses with Python and NetworkX
Graph Analyses with Python and NetworkXBenjamin Bengfort
 
Community Detection in Social Media
Community Detection in Social MediaCommunity Detection in Social Media
Community Detection in Social MediaSymeon Papadopoulos
 
STINGER: Multi-threaded Graph Streaming
STINGER: Multi-threaded Graph StreamingSTINGER: Multi-threaded Graph Streaming
STINGER: Multi-threaded Graph StreamingJason Riedy
 

Destaque (11)

Hadoop World 2011: Hadoop and Graph Data Management: Challenges and Opportuni...
Hadoop World 2011: Hadoop and Graph Data Management: Challenges and Opportuni...Hadoop World 2011: Hadoop and Graph Data Management: Challenges and Opportuni...
Hadoop World 2011: Hadoop and Graph Data Management: Challenges and Opportuni...
 
Graph Exploitation Seminar, 2011
Graph Exploitation Seminar, 2011Graph Exploitation Seminar, 2011
Graph Exploitation Seminar, 2011
 
Scalable and Efficient Algorithms for Analysis of Massive, Streaming Graphs
Scalable and Efficient Algorithms for Analysis of Massive, Streaming GraphsScalable and Efficient Algorithms for Analysis of Massive, Streaming Graphs
Scalable and Efficient Algorithms for Analysis of Massive, Streaming Graphs
 
Graph Analysis Trends and Opportunities -- CMG Performance and Capacity 2014
Graph Analysis Trends and Opportunities -- CMG Performance and Capacity 2014Graph Analysis Trends and Opportunities -- CMG Performance and Capacity 2014
Graph Analysis Trends and Opportunities -- CMG Performance and Capacity 2014
 
Network Challenge: Error and Sensitivity Analysis
Network Challenge: Error and Sensitivity AnalysisNetwork Challenge: Error and Sensitivity Analysis
Network Challenge: Error and Sensitivity Analysis
 
Introduction to STINGER
Introduction to STINGERIntroduction to STINGER
Introduction to STINGER
 
Graph Analysis Beyond Linear Algebra
Graph Analysis Beyond Linear AlgebraGraph Analysis Beyond Linear Algebra
Graph Analysis Beyond Linear Algebra
 
Community Detection with Networkx
Community Detection with NetworkxCommunity Detection with Networkx
Community Detection with Networkx
 
Graph Analyses with Python and NetworkX
Graph Analyses with Python and NetworkXGraph Analyses with Python and NetworkX
Graph Analyses with Python and NetworkX
 
Community Detection in Social Media
Community Detection in Social MediaCommunity Detection in Social Media
Community Detection in Social Media
 
STINGER: Multi-threaded Graph Streaming
STINGER: Multi-threaded Graph StreamingSTINGER: Multi-threaded Graph Streaming
STINGER: Multi-threaded Graph Streaming
 

Semelhante a STING: Spatio-Temporal Interaction Networks and Graphs for Intel Platforms

Knowledge Discovery in Environmental Management
Knowledge Discovery in Environmental Management Knowledge Discovery in Environmental Management
Knowledge Discovery in Environmental Management Dr. Aparna Varde
 
Scalable Graph Convolutional Network Based Link Prediction on a Distributed G...
Scalable Graph Convolutional Network Based Link Prediction on a Distributed G...Scalable Graph Convolutional Network Based Link Prediction on a Distributed G...
Scalable Graph Convolutional Network Based Link Prediction on a Distributed G...miyurud
 
Platform for Big Data Analytics and Visual Analytics: CSIRO use cases. Februa...
Platform for Big Data Analytics and Visual Analytics: CSIRO use cases. Februa...Platform for Big Data Analytics and Visual Analytics: CSIRO use cases. Februa...
Platform for Big Data Analytics and Visual Analytics: CSIRO use cases. Februa...Tomasz Bednarz
 
Implementation of p pic algorithm in map reduce to handle big data
Implementation of p pic algorithm in map reduce to handle big dataImplementation of p pic algorithm in map reduce to handle big data
Implementation of p pic algorithm in map reduce to handle big dataeSAT Publishing House
 
IRJET- A Review on K-Means++ Clustering Algorithm and Cloud Computing wit...
IRJET-  	  A Review on K-Means++ Clustering Algorithm and Cloud Computing wit...IRJET-  	  A Review on K-Means++ Clustering Algorithm and Cloud Computing wit...
IRJET- A Review on K-Means++ Clustering Algorithm and Cloud Computing wit...IRJET Journal
 
Data-centric AI and the convergence of data and model engineering: opportunit...
Data-centric AI and the convergence of data and model engineering:opportunit...Data-centric AI and the convergence of data and model engineering:opportunit...
Data-centric AI and the convergence of data and model engineering: opportunit...Paolo Missier
 
Cloud and Bid data Dr.VK.pdf
Cloud and Bid data Dr.VK.pdfCloud and Bid data Dr.VK.pdf
Cloud and Bid data Dr.VK.pdfkalai75
 
Official resume titash_mandal_
Official resume titash_mandal_Official resume titash_mandal_
Official resume titash_mandal_Titash Mandal
 
Current Trends and Challenges in Big Data Benchmarking
Current Trends and Challenges in Big Data BenchmarkingCurrent Trends and Challenges in Big Data Benchmarking
Current Trends and Challenges in Big Data BenchmarkingeXascale Infolab
 
using big-data methods analyse the Cross platform aviation
 using big-data methods analyse the Cross platform aviation using big-data methods analyse the Cross platform aviation
using big-data methods analyse the Cross platform aviationranjit banshpal
 
Raul sena - Apresentação Analiticsemtudo - Scientific Applications using GPU
Raul sena - Apresentação Analiticsemtudo - Scientific Applications using GPURaul sena - Apresentação Analiticsemtudo - Scientific Applications using GPU
Raul sena - Apresentação Analiticsemtudo - Scientific Applications using GPUEduardo Gaspar
 
Big Data and Big Data Management (BDM) with current Technologies –Review
Big Data and Big Data Management (BDM) with current Technologies –ReviewBig Data and Big Data Management (BDM) with current Technologies –Review
Big Data and Big Data Management (BDM) with current Technologies –ReviewIJERA Editor
 
Programming Modes and Performance of Raspberry-Pi Clusters
Programming Modes and Performance of Raspberry-Pi ClustersProgramming Modes and Performance of Raspberry-Pi Clusters
Programming Modes and Performance of Raspberry-Pi ClustersAM Publications
 
Big Data Benchmarking Tutorial
Big Data Benchmarking TutorialBig Data Benchmarking Tutorial
Big Data Benchmarking TutorialTilmann Rabl
 
Lecture_IIITD.pptx
Lecture_IIITD.pptxLecture_IIITD.pptx
Lecture_IIITD.pptxachakracu
 

Semelhante a STING: Spatio-Temporal Interaction Networks and Graphs for Intel Platforms (20)

Knowledge Discovery in Environmental Management
Knowledge Discovery in Environmental Management Knowledge Discovery in Environmental Management
Knowledge Discovery in Environmental Management
 
Scalable Graph Convolutional Network Based Link Prediction on a Distributed G...
Scalable Graph Convolutional Network Based Link Prediction on a Distributed G...Scalable Graph Convolutional Network Based Link Prediction on a Distributed G...
Scalable Graph Convolutional Network Based Link Prediction on a Distributed G...
 
Platform for Big Data Analytics and Visual Analytics: CSIRO use cases. Februa...
Platform for Big Data Analytics and Visual Analytics: CSIRO use cases. Februa...Platform for Big Data Analytics and Visual Analytics: CSIRO use cases. Februa...
Platform for Big Data Analytics and Visual Analytics: CSIRO use cases. Februa...
 
Implementation of p pic algorithm in map reduce to handle big data
Implementation of p pic algorithm in map reduce to handle big dataImplementation of p pic algorithm in map reduce to handle big data
Implementation of p pic algorithm in map reduce to handle big data
 
Hadoop Cluster Analysis and Assessment
Hadoop Cluster Analysis and AssessmentHadoop Cluster Analysis and Assessment
Hadoop Cluster Analysis and Assessment
 
IRJET- A Review on K-Means++ Clustering Algorithm and Cloud Computing wit...
IRJET-  	  A Review on K-Means++ Clustering Algorithm and Cloud Computing wit...IRJET-  	  A Review on K-Means++ Clustering Algorithm and Cloud Computing wit...
IRJET- A Review on K-Means++ Clustering Algorithm and Cloud Computing wit...
 
Data-centric AI and the convergence of data and model engineering: opportunit...
Data-centric AI and the convergence of data and model engineering:opportunit...Data-centric AI and the convergence of data and model engineering:opportunit...
Data-centric AI and the convergence of data and model engineering: opportunit...
 
Cloud and Bid data Dr.VK.pdf
Cloud and Bid data Dr.VK.pdfCloud and Bid data Dr.VK.pdf
Cloud and Bid data Dr.VK.pdf
 
Official resume titash_mandal_
Official resume titash_mandal_Official resume titash_mandal_
Official resume titash_mandal_
 
Session 33 - Production Grids
Session 33 - Production GridsSession 33 - Production Grids
Session 33 - Production Grids
 
Big Data Analytics
Big Data AnalyticsBig Data Analytics
Big Data Analytics
 
Current Trends and Challenges in Big Data Benchmarking
Current Trends and Challenges in Big Data BenchmarkingCurrent Trends and Challenges in Big Data Benchmarking
Current Trends and Challenges in Big Data Benchmarking
 
Big data analysis concepts and references
Big data analysis concepts and referencesBig data analysis concepts and references
Big data analysis concepts and references
 
using big-data methods analyse the Cross platform aviation
 using big-data methods analyse the Cross platform aviation using big-data methods analyse the Cross platform aviation
using big-data methods analyse the Cross platform aviation
 
Raul sena - Apresentação Analiticsemtudo - Scientific Applications using GPU
Raul sena - Apresentação Analiticsemtudo - Scientific Applications using GPURaul sena - Apresentação Analiticsemtudo - Scientific Applications using GPU
Raul sena - Apresentação Analiticsemtudo - Scientific Applications using GPU
 
Big Data and Big Data Management (BDM) with current Technologies –Review
Big Data and Big Data Management (BDM) with current Technologies –ReviewBig Data and Big Data Management (BDM) with current Technologies –Review
Big Data and Big Data Management (BDM) with current Technologies –Review
 
Programming Modes and Performance of Raspberry-Pi Clusters
Programming Modes and Performance of Raspberry-Pi ClustersProgramming Modes and Performance of Raspberry-Pi Clusters
Programming Modes and Performance of Raspberry-Pi Clusters
 
Sai Dheeraj_Resume
Sai Dheeraj_ResumeSai Dheeraj_Resume
Sai Dheeraj_Resume
 
Big Data Benchmarking Tutorial
Big Data Benchmarking TutorialBig Data Benchmarking Tutorial
Big Data Benchmarking Tutorial
 
Lecture_IIITD.pptx
Lecture_IIITD.pptxLecture_IIITD.pptx
Lecture_IIITD.pptx
 

Mais de Jason Riedy

Lucata at the HPEC GraphBLAS BoF
Lucata at the HPEC GraphBLAS BoFLucata at the HPEC GraphBLAS BoF
Lucata at the HPEC GraphBLAS BoFJason Riedy
 
LAGraph 2021-10-13
LAGraph 2021-10-13LAGraph 2021-10-13
LAGraph 2021-10-13Jason Riedy
 
Lucata at the HPEC GraphBLAS BoF
Lucata at the HPEC GraphBLAS BoFLucata at the HPEC GraphBLAS BoF
Lucata at the HPEC GraphBLAS BoFJason Riedy
 
Graph analysis and novel architectures
Graph analysis and novel architecturesGraph analysis and novel architectures
Graph analysis and novel architecturesJason Riedy
 
GraphBLAS and Emus
GraphBLAS and EmusGraphBLAS and Emus
GraphBLAS and EmusJason Riedy
 
Reproducible Linear Algebra from Application to Architecture
Reproducible Linear Algebra from Application to ArchitectureReproducible Linear Algebra from Application to Architecture
Reproducible Linear Algebra from Application to ArchitectureJason Riedy
 
PEARC19: Wrangling Rogues: A Case Study on Managing Experimental Post-Moore A...
PEARC19: Wrangling Rogues: A Case Study on Managing Experimental Post-Moore A...PEARC19: Wrangling Rogues: A Case Study on Managing Experimental Post-Moore A...
PEARC19: Wrangling Rogues: A Case Study on Managing Experimental Post-Moore A...Jason Riedy
 
ICIAM 2019: Reproducible Linear Algebra from Application to Architecture
ICIAM 2019: Reproducible Linear Algebra from Application to ArchitectureICIAM 2019: Reproducible Linear Algebra from Application to Architecture
ICIAM 2019: Reproducible Linear Algebra from Application to ArchitectureJason Riedy
 
ICIAM 2019: A New Algorithm Model for Massive-Scale Streaming Graph Analysis
ICIAM 2019: A New Algorithm Model for Massive-Scale Streaming Graph AnalysisICIAM 2019: A New Algorithm Model for Massive-Scale Streaming Graph Analysis
ICIAM 2019: A New Algorithm Model for Massive-Scale Streaming Graph AnalysisJason Riedy
 
Novel Architectures for Applications in Data Science and Beyond
Novel Architectures for Applications in Data Science and BeyondNovel Architectures for Applications in Data Science and Beyond
Novel Architectures for Applications in Data Science and BeyondJason Riedy
 
Characterization of Emu Chick with Microbenchmarks
Characterization of Emu Chick with MicrobenchmarksCharacterization of Emu Chick with Microbenchmarks
Characterization of Emu Chick with MicrobenchmarksJason Riedy
 
CRNCH 2018 Summit: Rogues Gallery Update
CRNCH 2018 Summit: Rogues Gallery UpdateCRNCH 2018 Summit: Rogues Gallery Update
CRNCH 2018 Summit: Rogues Gallery UpdateJason Riedy
 
Augmented Arithmetic Operations Proposed for IEEE-754 2018
Augmented Arithmetic Operations Proposed for IEEE-754 2018Augmented Arithmetic Operations Proposed for IEEE-754 2018
Augmented Arithmetic Operations Proposed for IEEE-754 2018Jason Riedy
 
Graph Analysis: New Algorithm Models, New Architectures
Graph Analysis: New Algorithm Models, New ArchitecturesGraph Analysis: New Algorithm Models, New Architectures
Graph Analysis: New Algorithm Models, New ArchitecturesJason Riedy
 
CRNCH Rogues Gallery: A Community Core for Novel Computing Platforms
CRNCH Rogues Gallery: A Community Core for Novel Computing PlatformsCRNCH Rogues Gallery: A Community Core for Novel Computing Platforms
CRNCH Rogues Gallery: A Community Core for Novel Computing PlatformsJason Riedy
 
CRNCH Rogues Gallery: A Community Core for Novel Computing Platforms
CRNCH Rogues Gallery: A Community Core for Novel Computing PlatformsCRNCH Rogues Gallery: A Community Core for Novel Computing Platforms
CRNCH Rogues Gallery: A Community Core for Novel Computing PlatformsJason Riedy
 
A New Algorithm Model for Massive-Scale Streaming Graph Analysis
A New Algorithm Model for Massive-Scale Streaming Graph AnalysisA New Algorithm Model for Massive-Scale Streaming Graph Analysis
A New Algorithm Model for Massive-Scale Streaming Graph AnalysisJason Riedy
 
High-Performance Analysis of Streaming Graphs
High-Performance Analysis of Streaming Graphs High-Performance Analysis of Streaming Graphs
High-Performance Analysis of Streaming Graphs Jason Riedy
 
High-Performance Analysis of Streaming Graphs
High-Performance Analysis of Streaming GraphsHigh-Performance Analysis of Streaming Graphs
High-Performance Analysis of Streaming GraphsJason Riedy
 
Updating PageRank for Streaming Graphs
Updating PageRank for Streaming GraphsUpdating PageRank for Streaming Graphs
Updating PageRank for Streaming GraphsJason Riedy
 

Mais de Jason Riedy (20)

Lucata at the HPEC GraphBLAS BoF
Lucata at the HPEC GraphBLAS BoFLucata at the HPEC GraphBLAS BoF
Lucata at the HPEC GraphBLAS BoF
 
LAGraph 2021-10-13
LAGraph 2021-10-13LAGraph 2021-10-13
LAGraph 2021-10-13
 
Lucata at the HPEC GraphBLAS BoF
Lucata at the HPEC GraphBLAS BoFLucata at the HPEC GraphBLAS BoF
Lucata at the HPEC GraphBLAS BoF
 
Graph analysis and novel architectures
Graph analysis and novel architecturesGraph analysis and novel architectures
Graph analysis and novel architectures
 
GraphBLAS and Emus
GraphBLAS and EmusGraphBLAS and Emus
GraphBLAS and Emus
 
Reproducible Linear Algebra from Application to Architecture
Reproducible Linear Algebra from Application to ArchitectureReproducible Linear Algebra from Application to Architecture
Reproducible Linear Algebra from Application to Architecture
 
PEARC19: Wrangling Rogues: A Case Study on Managing Experimental Post-Moore A...
PEARC19: Wrangling Rogues: A Case Study on Managing Experimental Post-Moore A...PEARC19: Wrangling Rogues: A Case Study on Managing Experimental Post-Moore A...
PEARC19: Wrangling Rogues: A Case Study on Managing Experimental Post-Moore A...
 
ICIAM 2019: Reproducible Linear Algebra from Application to Architecture
ICIAM 2019: Reproducible Linear Algebra from Application to ArchitectureICIAM 2019: Reproducible Linear Algebra from Application to Architecture
ICIAM 2019: Reproducible Linear Algebra from Application to Architecture
 
ICIAM 2019: A New Algorithm Model for Massive-Scale Streaming Graph Analysis
ICIAM 2019: A New Algorithm Model for Massive-Scale Streaming Graph AnalysisICIAM 2019: A New Algorithm Model for Massive-Scale Streaming Graph Analysis
ICIAM 2019: A New Algorithm Model for Massive-Scale Streaming Graph Analysis
 
Novel Architectures for Applications in Data Science and Beyond
Novel Architectures for Applications in Data Science and BeyondNovel Architectures for Applications in Data Science and Beyond
Novel Architectures for Applications in Data Science and Beyond
 
Characterization of Emu Chick with Microbenchmarks
Characterization of Emu Chick with MicrobenchmarksCharacterization of Emu Chick with Microbenchmarks
Characterization of Emu Chick with Microbenchmarks
 
CRNCH 2018 Summit: Rogues Gallery Update
CRNCH 2018 Summit: Rogues Gallery UpdateCRNCH 2018 Summit: Rogues Gallery Update
CRNCH 2018 Summit: Rogues Gallery Update
 
Augmented Arithmetic Operations Proposed for IEEE-754 2018
Augmented Arithmetic Operations Proposed for IEEE-754 2018Augmented Arithmetic Operations Proposed for IEEE-754 2018
Augmented Arithmetic Operations Proposed for IEEE-754 2018
 
Graph Analysis: New Algorithm Models, New Architectures
Graph Analysis: New Algorithm Models, New ArchitecturesGraph Analysis: New Algorithm Models, New Architectures
Graph Analysis: New Algorithm Models, New Architectures
 
CRNCH Rogues Gallery: A Community Core for Novel Computing Platforms
CRNCH Rogues Gallery: A Community Core for Novel Computing PlatformsCRNCH Rogues Gallery: A Community Core for Novel Computing Platforms
CRNCH Rogues Gallery: A Community Core for Novel Computing Platforms
 
CRNCH Rogues Gallery: A Community Core for Novel Computing Platforms
CRNCH Rogues Gallery: A Community Core for Novel Computing PlatformsCRNCH Rogues Gallery: A Community Core for Novel Computing Platforms
CRNCH Rogues Gallery: A Community Core for Novel Computing Platforms
 
A New Algorithm Model for Massive-Scale Streaming Graph Analysis
A New Algorithm Model for Massive-Scale Streaming Graph AnalysisA New Algorithm Model for Massive-Scale Streaming Graph Analysis
A New Algorithm Model for Massive-Scale Streaming Graph Analysis
 
High-Performance Analysis of Streaming Graphs
High-Performance Analysis of Streaming Graphs High-Performance Analysis of Streaming Graphs
High-Performance Analysis of Streaming Graphs
 
High-Performance Analysis of Streaming Graphs
High-Performance Analysis of Streaming GraphsHigh-Performance Analysis of Streaming Graphs
High-Performance Analysis of Streaming Graphs
 
Updating PageRank for Streaming Graphs
Updating PageRank for Streaming GraphsUpdating PageRank for Streaming Graphs
Updating PageRank for Streaming Graphs
 

Último

Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceanilsa9823
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...ICS
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️anilsa9823
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionSolGuruz
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 

Último (20)

Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 

STING: Spatio-Temporal Interaction Networks and Graphs for Intel Platforms

  • 1. STING: Spatio-Temporal Interaction Networks and Graphs for Intel Platforms David Bader, Jason Riedy, David Ediger, Rob McColl, Timothy G. Mattson∗, ... Georgia Institute of Technology 17 January 2014
  • 2. (insert current prefix here)scale data analysis Health care Finding outbreaks, population epidemiology Social networks Advertising, searching, grouping Intelligence Decisions at scale, regulating algorithms Systems biology Understanding interactions, drug design Power grid Disruptions, conservation Simulation Discrete events, cracking meshes Data analysis runs throughout. Many problems can be phrased through graphs. Any many are changing and dynamic. Bader, Riedy— STING 17 Jan. 2014 2 / 47
  • 3. GT’s part of Intel’s Non-Numeric Computing Program Goal Supporting analysis of massive graphs under rapid change across the spectrum of Intel-based platforms. STING on Intel-based platforms Maintain a graph and metrics under large data changes Performance, documentation, distribution Available at http://www.cc.gatech.edu/stinger/ Bader, Riedy— STING 17 Jan. 2014 3 / 47
  • 4. Outline Motivation: Graph Algorithms for Analysis STING Review of Accomplishments Selected Details on Recent Work Dynamic Community Updating Incremental PageRank Related Projects (Future Plans) Artifacts of the Intel Non-Numeric Computing Program Bader, Riedy— STING 17 Jan. 2014 4 / 47
  • 5. Why Graphs? Smaller than raw data. Taught (roughly) to all CS students... Semantic attributions can capture essential relationships. Traversals can be faster than filtering DB joins. Provide clear phrasing for queries about relationships. Often next step after dense and sparse linear algebra. Note: Extracting data into a graph is a separate topic, see Intel’s GraphBuilder. Bader, Riedy— STING 17 Jan. 2014 5 / 47
  • 6. Graphs: A Fundamental Abstraction Structure for “unstructured” data Traditional uses: Route planning on fixed routes Logistic planning between sources, routes, destinations Increasing uses: Computer security: Identify anomalies (e.g. spam, viruses, hacks) as they occur, insider threats, control access, localize malware Data / intelligence integration: Find smaller, relevant subsets of massive, “unstructured” data piles Recommender systems (industry): Given activities, automatically find other interesting data. Bader, Riedy— STING 17 Jan. 2014 6 / 47
  • 7. On to STING... Motivation: Graph Algorithms for Analysis STING Review of Accomplishments Selected Details on Recent Work Related Projects (Future Plans) Artifacts of the Intel Non-Numeric Computing Program Bader, Riedy— STING 17 Jan. 2014 7 / 47
  • 8. STING’s focus Source data predictionaction summary Control VizSimulation / query STING manages queries against changing graph data. Visualization and control often are application specific. Ideal: Maintain many persistent graph analysis kernels. One current graph snapshot, kernels keep smaller histories. Also (a harder goal), coordinate the kernels’ cooperation. Bader, Riedy— STING 17 Jan. 2014 8 / 47
  • 9. STING: High-level architecture Slide credit: Rob McColl and David Ediger OpenMP + sufficiently POSIX-ish Multiple processes for resilience Bader, Riedy— STING 17 Jan. 2014 9 / 47
  • 10. STING Extensible Representation: Core data structure source vertex edge type adj. vtx weight mod. time first time edge type index vertex index Initial considerations [Bader, et al.] Be useful for the entire “large graph” community Portable semantics and high-level optimizations across multiple platforms & frameworks (XMT C, MTGL, etc.) Permit good performance: No single structure is optimal for all. Assume globally addressable memory access and atomic operations Support multiple, parallel readers and a single writer process Large graph ⇒ rare conflicts, may ignore synchronization Bader, Riedy— STING 17 Jan. 2014 10 / 47
  • 11. STING in use Who is using it? Internally, well, us. Some details later. Outside institutions in multiple research projects Center for Adaptive Supercomputing Software – Multithreaded Architectures (CASS-MT) directed by PNNL PRODIGAL team for DARPA ADAMS (Anomaly Detection at Multiple Scales) including GTRI, SAIC, Oregon State U., U. Mass., and CMU Several industrial companies in the area of data analytics and security Well-attended tutorials given at PPoPP, in MD, and locally Bader, Riedy— STING 17 Jan. 2014 11 / 47
  • 12. STING: Where do you get it? www.cc.gatech.edu/stinger/ Gateway to code, development, documentation, presentations... (working on usage and development screencasts) Remember: Still academic code, but maturing. Bader, Riedy— STING 17 Jan. 2014 12 / 47
  • 13. Motivation: Graph Algorithms for Analysis STING Review of Accomplishments Selected Details on Recent Work Related Projects (Future Plans) Artifacts of the Intel Non-Numeric Computing Program Bader, Riedy— STING 17 Jan. 2014 13 / 47
  • 14. Selected Program Accomplishments I In the beginning: Initial streaming algorithms Maintaining clustering coefficients[1] (counting triangles) Up to 130 000 graph updates per second on X5570 (Nehalem-EP, 2.93GHz) 2000× speed-up over static recomputation Connected components[2] Up to 88 700 graph updates per second on X5570, 233× speed-up Community detection[3, 4, 5] First parallel algorithm for agglomerative community detection, 3.3B edges clustered in 505s on a 4-socket, 10-core Westmere-EX. Win 10th DIMACS Implementation Challenge’s Mix Challenge Enabled moving computation from special server + batch to laptops and servers. Bader, Riedy— STING 17 Jan. 2014 14 / 47
  • 15. Selected Program Accomplishments II Still maintained, used by external groups like Cray, people finally threatening performance. Expanded streaming algorithms Improved connected components[6] Does not fall back on re-computation for deletions Up to 137× speed-up over static re-computation Community maintenance[7] and monitoring∗ Up to 100 million updates per second, speed-ups from 4× to 3 700× Demonstrated at Research@Intel and GraphLab Workshop 2013 PageRank∗ Reduce edge traversals from 30% – 90%. Betweenness centrality∗ [8, 9] Up to 148× speed-up Optimization and software structure of STING[10] Bader, Riedy— STING 17 Jan. 2014 15 / 47
  • 16. Selected Program Accomplishments III Up to 14× performance improvement on Intel-based platforms[11], best paper award at HPEC12 Research@Intel 2013 demo collaborative with Intel GraphBuilder: extract and transform data from a Hadoop store, transfer to STING for analysis Something different: 10th DIMACS Implementation Challenge on Graph Partitioning and Graph Clustering [12] Very useful workshop, 13-14 February 2012 at Georgia Tech Intel sponsorship: Thank you! Graph archive being used in other projects (although not always cited appropriately) PASQUAL [13] First de novo genome assembler that is both scalable and reliable (doesn’t crash). http://www.cc.gatech.edu/pasqual/ (not STING-based) Bader, Riedy— STING 17 Jan. 2014 16 / 47
  • 17. Motivation: Graph Algorithms for Analysis STING Review of Accomplishments Selected Details on Recent Work Dynamic Community Updating Incremental PageRank Related Projects (Future Plans) Artifacts of the Intel Non-Numeric Computing Program Bader, Riedy— STING 17 Jan. 2014 17 / 47
  • 18. Community Detection What do we mean? Partition a graph’s vertices into disjoint communities. Locally optimize some metric, e.g. modularity, conductance, ... Try to capture that vertices are more similar within one community than between communities. Jason’s network via LinkedIn Labs Bader, Riedy— STING 17 Jan. 2014 18 / 47
  • 19. Parallel agglomerative method A B C D E F G Use a matching to avoid a serializing queue. Compute a heavy weight, large matching. Simple greedy algorithm. Maximal matching, within 2× max weight. Merge all matched communities in parallel. Highly scalable, 5.8 × 106 – 7 × 106 edges/sec, 8× – 16× speed-up on 80-thread E7-8870 Agnostic to weighting, matching... Works with many weighting and termination criteria. Bader, Riedy— STING 17 Jan. 2014 19 / 47
  • 20. Parallel agglomerative method A B C D E F G C D G Use a matching to avoid a serializing queue. Compute a heavy weight, large matching. Simple greedy algorithm. Maximal matching, within 2× max weight. Merge all matched communities in parallel. Highly scalable, 5.8 × 106 – 7 × 106 edges/sec, 8× – 16× speed-up on 80-thread E7-8870 Agnostic to weighting, matching... Works with many weighting and termination criteria. Bader, Riedy— STING 17 Jan. 2014 19 / 47
  • 21. Parallel agglomerative method A B C D E F G C D G E B C Use a matching to avoid a serializing queue. Compute a heavy weight, large matching. Simple greedy algorithm. Maximal matching, within 2× max weight. Merge all matched communities in parallel. Highly scalable, 5.8 × 106 – 7 × 106 edges/sec, 8× – 16× speed-up on 80-thread E7-8870 Agnostic to weighting, matching... Works with many weighting and termination criteria. Bader, Riedy— STING 17 Jan. 2014 19 / 47
  • 22. Community Monitoring Algorithm Given a batch of edge insertions and removals: 1. Collect the set of possibly moved vertices ∆V. Add the endpoints∗ of every edge insertion and removal to ∆V. (STING support routine, scatter/gather and atomic CAS.) 2. Extract each v ∈ ∆V from its community into a singleton. This is the complex piece, see Riedy & Bader, MTAAP13 [7]. 3. Re-start agglomeration from the expanded community graph. ∗: More recent experiments (by Anita Zakrzewska) add larger neighborhoods. Little effect on modularity, large effect on performance. Bader, Riedy— STING 17 Jan. 2014 20 / 47
  • 23. Platform: Intel® E7-4820-based server Tolerates some latency by hyperthreading: “Westmere-EX:” 2 threads / core, 8 cores / socket, four sockets. Fast cores (2.0 GHz), fast memory (1 066 MHz). Not so many outstanding memory requests (60/socket), but large caches (18 MiB L3 per socket). Good system support Transparent hugepages reduces TLB costs. Fast, user-level locking. (HLE would be better...) OpenMP, although I didn’t tune it... Four processors (64 threads), 1 TiB memory gcc 4.7.2, Linux kernel 3.9 pre-release Acknowledgment: Donated by Oracle. Image: Intel® press kit Bader, Riedy— STING 17 Jan. 2014 21 / 47
  • 24. Platform: Cray/YarcData XMT2 Tolerates latency by massive multithreading: Hardware: 128 threads per processor Context switch on every cycle (500 MHz) Many outstanding memory requests (180/proc) “No” caches... Flexibly supports dynamic load balancing Globally hashed address space, no data cache Support for fine-grained, word-level synchronization Full/empty bit on with every memory word 64 processor XMT2 at CSCS, the Swiss National Supercomputer Centre. 500 MHz processors, 8192 threads, 2 TiB of shared memory Image: cray.com Bader, Riedy— STING 17 Jan. 2014 22 / 47
  • 25. Test Data Combination of real and artificial Start with (small) real-world graphs from 10th DIMACS Challenge collection: Name |V| |E| |C| |EC| caidaRouterLevel 192 244 1 218 132 18 343 30 776 coPapersDBLP 540 486 30 866 466 1 401 205 856 eu-2005 862 664 16 138 468 55 624 194 971 Generate artificial edge actions: Compute an initial clustering. Generate random edge insertions between and removals within communities. 15/16: Insertions. Select communities ∝ volume, vertices ∝ 1/degree. 1/16: Removals. Uniform sampling (w/o replacement) of existing edges, then inserted edges. Bader, Riedy— STING 17 Jan. 2014 23 / 47
  • 26. Peak updates per second There is speed-up per # of threads, etc. on large batches, large graphs. Not the interesting story. Graph Platform #T Batch Upd/Sec Speed-up∗ Latency(s) caidaRouterLevel IA32-64 56 1e5 1.2e+7 4.0 8.3e-3 XMT2 56 1e6 2.5e+6 4.3 4.0e-1 coPapersDBLP IA32-64 20 1e6 2.9e+6 11 3.5e-1 XMT2 48 3e5 2.2e+6 21 1.4e-1 eu-2005 IA32-64 40 1e5 4.8e+6 330 2.1e-2 XMT2 64 1e6 2.1e+6 43 4.9e-1 Large batches, many threads ⇒ > 106 updates per second, but high latency ∗: Speed up over static recomputation. Quality doesn’t decrease significantly v. static recomputation. Bader, Riedy— STING 17 Jan. 2014 24 / 47
  • 27. Least latency between updates Graph Platform #T Batch Upd./Sec Speed-up∗ Latency (s) caidaRouterLevel IA32-64 2 1 4.6e+2 430 2.2e-3 XMT2 4 30 5.2e+3 230 5.8e-3 coPapersDBLP IA32-64 4 30 7.0e+3 1900 4.3e-3 XMT2 40 1 1.4e+2 380 7.1e-3 eu-2005 IA32-64 12 1 4.2e+2 3500 2.4e-3 XMT2 20 10 1.5e+3 3200 6.5e-3 Small batches, fewer threads ⇒ fast response, but < 104 updates per second ∗: Speed up over static recomputation. Quality doesn’t decrease significantly v. static recomputation. Bader, Riedy— STING 17 Jan. 2014 25 / 47
  • 28. Incremental PageRank PageRank: Well-understood method for ranking vertices based on random walks (related to minimizing conductance). Equivalent problem, solve (I − αATD−1)x = (1 − α)v given initial weights v. Goal: Use for seed set expansion, sparse v. State-of-the-art for updating x when the graph represented by A changes? Re-start iteration with the previous x. Can do significantly better for low-latency needs. Compute the change ∆x instead of the entire new x. Bader, Riedy— STING 17 Jan. 2014 26 / 47
  • 29. Incremental PageRank: Iteration Iterative solver Step k → k + 1: ∆x(k+1) = α(A + ∆A)T (D + ∆D)−1 ∆x(k) + α (A + ∆A)T (D + ∆D)−1 − AT D−1 x Additive part: Non-zero only at changes. Operator: Pushes changes outward. Bader, Riedy— STING 17 Jan. 2014 27 / 47
  • 30. Incremental PageRank: Limiting Expansion Iterative solver Step k → k + 1: ∆ˆx(k+1) = α(A + ∆A)T (D + ∆D)−1 ∆ˆx (k) |ex + α∆ˆx|held α (A + ∆A)T (D + ∆D)−1 − AT D−1 ˆx Additive part: Non-zero only at changes. Operator: Pushes sufficiently large changes outward. Bader, Riedy— STING 17 Jan. 2014 28 / 47
  • 31. Incremental PageRank: Test Cases Initial, high-level implementation via sparse matrices in Julia. Test graphs from the 10th DIMACS Implementation Challenge. Add uniformly random edges... worst case. Up to 100k in different batch sizes. One sequence of edge actions per graph shared across experiments. Conv. & hold base threshold: 10−12 Graph |V| |E| Avg. Deg. Size (MiB) caidaRouterLevel 192 244 609 066 3.17 5.38 coPapersCiteseer 434 102 1 603 6720 36.94 124.01 coPapersDBLP 540 486 15 245 729 28.21 118.38 great-britain.osm 7 733 822 8 156 517 1.05 91.73 PGPgiantcompo 10 680 24 316 2.28 0.23 power 4 941 6 594 1.33 0.07 Bader, Riedy— STING 17 Jan. 2014 29 / 47
  • 32. Incremental PageRank: Edge Traversal Savings Percent of edge traversals relative to re-started iteration: 1000 100 10 q q q q q q q q q qq q q q q q q q q qq q q q q q q q q qq q q q q q q q q q qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq q qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq q qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq 0% 20% 40% 60% 80% 0% 20% 40% 60% 80% 0% 20% 40% 60% 80% 0% 20% 40% 60% 80% 0% 20% 40% 60% 80% 0% 20% 40% 60% 80% caidaRouterLevelcoPapersCiteseercoPapersDBLPgreat_britain.osmPGPgiantcompopower 0 2500 5000 7500 10000 0 2500 5000 7500 10000 0 2500 5000 7500 10000 "Time" Fractionofedgesv.restartedPR Graph name q caidaRouterLevel coPapersCiteseer coPapersDBLP great_britain.osm PGPgiantcompo power Held vertex threshold / 10**−12 q q q q10000.0 1000.0 100.0 10.0 Bader, Riedy— STING 17 Jan. 2014 30 / 47
  • 33. Incremental PageRank: Quality Kendall τ (count of inversions) for ranking result: 1000 100 10 q q q q q q q q q qq q q q q q q q q qq q q q q q q q q qq q q q q q q q q q qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq 0.9995 0.9996 0.9997 0.9998 0.9999 1.0000 0.9995 0.9996 0.9997 0.9998 0.9999 1.0000 0.9995 0.9996 0.9997 0.9998 0.9999 1.0000 0.9995 0.9996 0.9997 0.9998 0.9999 1.0000 0.9995 0.9996 0.9997 0.9998 0.9999 1.0000 0.9995 0.9996 0.9997 0.9998 0.9999 1.0000 caidaRouterLevelcoPapersCiteseercoPapersDBLPgreat_britain.osmPGPgiantcompopower 0 2500 5000 7500 10000 0 2500 5000 7500 10000 0 2500 5000 7500 10000 "Time" Kendalltau Graph name q caidaRouterLevel coPapersCiteseer coPapersDBLP great_britain.osm PGPgiantcompo power Held vertex threshold / 10**−12 q q q q10000.0 1000.0 100.0 10.0 Larger is more similar, max. value one. All values here in (0.995, 1]. Bader, Riedy— STING 17 Jan. 2014 31 / 47
  • 34. Incremental PageRank: Quality for Seed-Set Use Fagin, et al.’s extension Kendall τ for the top 100 list: 1000 100 10 q q q q q q q q q qq q q q q q q q q qq q q q q q q q q qq q q q q q q q q q qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq0.0000 0.0005 0.0010 0.0015 0.0000 0.0005 0.0010 0.0015 0.0000 0.0005 0.0010 0.0015 0.0000 0.0005 0.0010 0.0015 0.0000 0.0005 0.0010 0.0015 0.0000 0.0005 0.0010 0.0015 caidaRouterLevelcoPapersCiteseercoPapersDBLPgreat_britain.osmPGPgiantcompopower 0 2500 5000 7500 10000 0 2500 5000 7500 10000 0 2500 5000 7500 10000 "Time" K_0(top100) Graph name q caidaRouterLevel coPapersCiteseer coPapersDBLP great_britain.osm PGPgiantcompo power Held vertex threshold / 10**−12 q q q q10000.0 1000.0 100.0 10.0 Smaller is more similar, min. value one. All values here in [0, 0.0018). Bader, Riedy— STING 17 Jan. 2014 32 / 47
  • 35. Motivation: Graph Algorithms for Analysis STING Review of Accomplishments Selected Details on Recent Work Related Projects (Future Plans) Artifacts of the Intel Non-Numeric Computing Program Bader, Riedy— STING 17 Jan. 2014 33 / 47
  • 36. GRATEFUL: Graph Analysis Tackling Power Efficiency, Uncertainty, and Locality David A. Bader (PI), Jason Riedy (co-PI) Under DARPA PERFECT (Power Efficiency Revolution for Embedded Computing Technologies) #HR0011-13-2-0001 Goal: Improve ops/watt by factor of 50×–75×! Providing mission-critical analysis of semantic data where needed: as close to the data and data use as possible using the least power necessary to enable rapid decisions with reliable analysis. GRATEFUL is developing new algorithms providing new, fundamental capabilities while coping with real-world uncertainties under run-time power and environmental constraints. STING: Static ⇒ dynamic saves power, lowers latency. Bader, Riedy— STING 17 Jan. 2014 34 / 47
  • 37. The XScala Project: A Community Repository for Model-driven Design and Tuning of Data- Intensive Applications for Extreme-scale Accelerator-based Systems David A. Bader (PI, GT), Viktor Prasanna (PI, USC), Richard Vuduc (co-PI, GT), Jason Riedy (co-PI, GT) NSF ACI-1339745, an SI2-SSI project Goal: Accelerate science! Map irregular data problems onto “accelerators” and make them usable Science accelerators: multi-threaded, multi-core; GPGPU; cloud; etc. Develop models and analysis kernels together. Not just graphs: also strings, machine learning, ... Not just GPUs: also parallelizing sequential roadblocks, mapping onto FPGAs, finding opportunities for platforms, ... Bader, Riedy— STING 17 Jan. 2014 35 / 47
  • 38. Graph Algorithm Primitives Community standards effort underway: Timothy Mattson, Jeremy Kepner, John Gilbert, Aydin Buluç, ...) State of the art for “Graphs in the language of Linear algebra” is mature enough to support a standard set of BLAS. Benefits of this standard include: Separation of concerns spares graph algorithm experts the pain of producing optimized primitives (the vendors will produce these ... just as with traditional BLAS) Prevents mass scale “reinvention of the wheel” with each graph research group creating their own primitives. Bader, Riedy— STING 17 Jan. 2014 36 / 47
  • 39. Higher-Level (aka Fuzzier) Plans More integration into entire analysis tool chains. Continue partnering with ETL researchers (e.g. GraphBuilder), visualization researchers, area experts. Keep STING focused on the graph mapping and algorithms portion. Learn how/what to forget. Cannot keep all data. Make writing high-performance STING kernels easier: Looking into Julia (julialang.org) for dynamically compiled kernels, although large memory footprint. Keeping an eye on other projects (many related through GRATEFUL, e.g. SEJITS in UCB’s ASPIRE) PGAS for distributed memory platforms. Wants a finer-grained interconnect with higher injection rates than Ethernet or IB... And a PGAS mmap... (aka system-level work) Bader, Riedy— STING 17 Jan. 2014 37 / 47
  • 40. Motivation: Graph Algorithms for Analysis STING Review of Accomplishments Selected Details on Recent Work Related Projects (Future Plans) Artifacts of the Intel Non-Numeric Computing Program Bader, Riedy— STING 17 Jan. 2014 38 / 47
  • 41. Software & Data Where & What STING/STINGER http://www.cc.gatech.edu/stinger/; framework for dynamic graph analysis. community-el http://www.cc.gatech.edu/~jriedy/ community-detection/ or http://gitorious.org/community-el; separate static community detection code, simple input, no external dependencies. PASQUAL http://www.cc.gatech.edu/pasqual/; shared-memory scalable and dependable de novo assembler DIMACS Challenge http://www.cc.gatech.edu/dimacs10/; data, workshop papers and presentations All software under a modified BSD license. Bader, Riedy— STING 17 Jan. 2014 39 / 47
  • 42. Publications I Note: Not including presentations, posters, or publications that simply used mirasol... [1] D. Ediger, K. Jiang, E. J. Riedy, and D. A. Bader, “Massive streaming data analytics: A case study with clustering coefficients,” in Proc. Workshop on Multithreaded Architectures and Applications (MTAAP), Atlanta, Georgia, Apr. 2010. [2] D. Ediger, E. J. Riedy, D. A. Bader, and H. Meyerhenke, “Tracking structure of streaming social networks,” in Proc. Workshop on Multithreaded Architectures and Applications (MTAAP), Anchorage, Alaska, May 2011. Bader, Riedy— STING 17 Jan. 2014 40 / 47
  • 43. Publications II [3] E. J. Riedy, H. Meyerhenke, D. Ediger, and D. A. Bader, “Parallel community detection for massive graphs,” in Proceedings of the 9th International Conference on Parallel Processing and Applied Mathematics, Torun, Poland, Sep. 2011. [4] ——, “Parallel community detection for massive graphs,” in 10th DIMACS Implementation Challenge Workshop - Graph Partitioning and Graph Clustering. Atlanta, Georgia: (workshop paper), Feb. 2012, won first place in the Mix Challenge and Mix Pareto Challenge. [5] E. J. Riedy, D. A. Bader, and H. Meyerhenke, “Scalable multi-threaded community detection in social networks,” in Workshop on Multithreaded Architectures and Applications (MTAAP), Shanghai, China, May 2012. Bader, Riedy— STING 17 Jan. 2014 41 / 47
  • 44. Publications III [6] R. McColl, O. Green, and D. Bader, “A new parallel algorithm for connected components in dynamic graphs,” in The 20th Annual IEEE International Conference on High Performance Computing (HiPC), Hyderabad, India, Dec. 2013. [7] E. J. Riedy and D. A. Bader, “Scalable multi-threaded community detection in social networks,” in 7th Workshop on Multithreaded Architectures and Applications (MTAAP), Boston, MA, May 2013. [8] O. Green, R. McColl, , and D. Bader, “A fast algorithm for streaming betweenness centrality,” in 4th ASE/IEEE International Conference on Social Computing (SocialCom), Amsterdam, The Netherlands, Sep. 2012. Bader, Riedy— STING 17 Jan. 2014 42 / 47
  • 45. Publications IV [9] O. Green and D. A. Bader, “A fast algorithm for streaming betweenness centrality,” in 5th ASE/IEEE International Conference on Social Computing (SocialCom), Washington, DC, Sep. 2013. [10] J. Riedy, H. Meyerhenke, D. A. Bader, D. Ediger, and T. G. Mattson, “Analysis of streaming social networks and graphs on multicore architectures,” in IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), Kyoto, Japan, Mar. 2012. [Online]. Available: http://www.slideshare.net/jasonriedy/ icassp-2012-analysis-of-streaming-social-networks-and-graph Bader, Riedy— STING 17 Jan. 2014 43 / 47
  • 46. Publications V [11] D. Ediger, R. McColl, J. Riedy, and D. A. Bader, “STINGER: High performance data structure for streaming graphs,” in The IEEE High Performance Extreme Computing Conference (HPEC), Waltham, MA, Sep. 2012, best paper award. [12] D. A. Bader, H. Meyerhenke, P. Sanders, and D. Wagner, Eds., Graph Partitioning and Graph Clustering. 10th DIMACS Implementation Challenge Workshop, ser. Contemporary Mathematics. Georgia Institute of Technology, Atlanta, GA: American Mathematical Society and Center for Discrete Mathematics and Theoretical Computer Science, 2013, no. 588. Bader, Riedy— STING 17 Jan. 2014 44 / 47
  • 47. Publications VI [13] X. Liu, P. Pande, H. Meyerhenke, and D. A. Bader, “PASQUAL: Parallel techniques for next generation genome sequence assembly,” IEEE Transactions on Parallel & Distributed Systems, vol. 24, no. 5, pp. 977–986, 2013. [14] J. Fairbanks, D. Ediger, R. McColl, D. Bader, and E. Gilbert, “A statistical framework for analyzing streaming graphs,” in IEEE/ACM International Conference on Advances in Social Networks Analysis and Mining (ASONAM), Aug. 2013. Bader, Riedy— STING 17 Jan. 2014 45 / 47
  • 48. People! GT is an educational institution Related graduate students: David Ediger: graduated, Ph.D., at GTRI Rob McColl: nearing graduation, shared with GTRI Oded Green: nearing graduation James Fairbanks Anita Zakrzewska Xing Liu: PASQUAL Pushkar Pande: PASQUAL, graduated, MS Related post-doc: Henning Meyerhenke: Juniorprof. Dr. at Karlsruhe Inst. Tech. Bader, Riedy— STING 17 Jan. 2014 46 / 47
  • 49. Acknowledgment of support Bader, Riedy— STING 17 Jan. 2014 47 / 47