#include <assert.h>
#include "api/graph_objects.hpp"
#include "api/graphchi_context.hpp"
#include "engine/functional/functional_engine.hpp"
#include "metrics/metrics.hpp"
#include "graphchi_types.hpp"
#include "api/functional/functional_defs.hpp"
#include "api/functional/functional_semisync.hpp"
#include "api/functional/functional_bulksync.hpp"
#include "preprocessing/conversions.hpp"
Go to the source code of this file.
Classes | |
struct | graphchi::functional_kernel< FVertexDataType, FEdgeDataType > |
Namespaces | |
namespace | graphchi |
Functions | |
template<class KERNEL > | |
void | graphchi::run_functional_unweighted_semisynchronous (std::string filename, int niters, metrics &_m) |
template<class KERNEL > | |
void | graphchi::run_functional_unweighted_synchronous (std::string filename, int niters, metrics &_m) |
Copyright [2012] [Aapo Kyrola, Guy Blelloch, Carlos Guestrin / Carnegie Mellon University]
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Alternative "functional" API for GraphChi. The API is implemented as a layer on top of the standard API, but uses a specialized engine "functional_engine", which processes the graph data in different order. Namely, it first loads in-edges, then executes updates, and finally writes new values (broadcasts) to out-edges.