Galois
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
lonestar/tutorial_examples/GraphTraversalPullOperator.cpp
/*
* This file belongs to the Galois project, a C++ library for exploiting
* parallelism. The code is being released under the terms of the 3-Clause BSD
* License (a copy is located in LICENSE.txt at the top-level directory).
*
* Copyright (C) 2018, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWARE AND DOCUMENTATION, INCLUDING ANY WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR ANY PARTICULAR PURPOSE, NON-INFRINGEMENT AND WARRANTIES OF
* PERFORMANCE, AND ANY WARRANTY THAT MIGHT OTHERWISE ARISE FROM COURSE OF
* DEALING OR USAGE OF TRADE. NO WARRANTY IS EITHER EXPRESS OR IMPLIED WITH
* RESPECT TO THE USE OF THE SOFTWARE OR DOCUMENTATION. Under no circumstances
* shall University be liable for incidental, special, indirect, direct or
* consequential damages or loss of profits, interruption of business, or
* related expenses which may arise from use of Software or Documentation,
* including but not limited to those resulting from defects in Software and/or
* Documentation, or loss or inaccuracy of data of any kind.
*/
// This example shows
// 0. reading in a graph from a file
// 1. serial iteration over nodes
// 2. do_all iteration over nodes
// 3. access to node and edge data
// 4. usage of galois::StatTimer
// 5. how to change # of threads
#include "galois/Galois.h"
#include "galois/Timer.h"
#include <iostream>
using GNode = Graph::GraphNode;
int main(int argc, char* argv[]) {
if (argc < 3) {
std::cerr << "Usage: " << argv[0] << " filename num_threads" << std::endl;
return 1;
}
Graph g;
galois::graphs::readGraph(g, argv[1]); // argv[1] is the file name for graph
galois::setActiveThreads(std::atoi(argv[2])); // argv[2] is # of threads
//******************************************************************************************
// serial traversal over a graph
// sum over nodes and edges in C++11 syntax
galois::StatTimer T("sum_serial");
T.start();
for (auto n : g) {
auto& sum = g.getData(n);
sum = 0;
for (auto e : g.edges(n)) {
sum += g.getEdgeData(e);
}
}
T.stop();
//*****************************************************************************************
// parallel traversal over a graph using galois::do_all w/o work stealing
// 1. operator is specified using lambda expression
// 2. do_all is named "sum_in_do_all_with_lambda" to show stat after this
// program finishes
galois::iterate(g.begin(), g.end()), // range
[&](GNode n) { // operator
auto& sum = g.getData(n);
sum = 0;
for (auto e : g.edges(n)) {
sum += g.getEdgeData(e);
}
},
galois::loopname("sum_in_do_all_with_lambda") // options
);
return 0;
}