repo_id stringlengths 21 96 | file_path stringlengths 31 155 | content stringlengths 1 92.9M | __index_level_0__ int64 0 0 |
|---|---|---|---|
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/c++11-compat/unordered_set.h | #ifndef GALOIS_C__11_COMPAT_UNORDERED_SET_H
#define GALOIS_C__11_COMPAT_UNORDERED_SET_H
#include <boost/tr1/unordered_set.hpp>
namespace std { using namespace std::tr1; }
#endif
| 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/c++11-compat/functional.h | #ifndef GALOIS_C__11_COMPAT_FUNCTIONAL_H
#define GALOIS_C__11_COMPAT_FUNCTIONAL_H
#include <functional>
#include <boost/tr1/functional.hpp>
namespace std { using namespace std::tr1; }
#endif
| 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/c++11-compat/atomic_internal_xlc_ppc.h | #include <builtins.h>
#error "Broken"
/*
* From:
* http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html
* and
* Batty et al. Clarifying and Compiling C/C++ Concurrency: from C++11 to POWER. POPL 2011.
* (http://www.cl.cam.ac.uk/~pes20/cppppc/)
*/
namespace detail {
inline bool atomic_compare_e... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/c++11-compat/random.h | #ifndef GALOIS_C__11_COMPAT_RANDOM_H
#define GALOIS_C__11_COMPAT_RANDOM_H
#include <boost/tr1/random.hpp>
namespace std { using namespace std::tr1; }
#endif
| 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/c++11-compat/deque.h | #ifndef GALOIS_C__11_COMPAT_DEQUE_H
#define GALOIS_C__11_COMPAT_DEQUE_H
#include <deque>
#define GALOIS_CXX11_DEQUE_HAS_NO_EMPLACE
#endif
| 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/c++11-compat/algorithm.h | #ifndef GALOIS_C__11_COMPAT_ALGORITHM_H
#define GALOIS_C__11_COMPAT_ALGORITHM_H
#include <algorithm>
#include <boost/tr1/type_traits.hpp>
namespace std {
template<typename _Tp>
constexpr typename std::tr1::remove_reference<_Tp>::type&&
move(_Tp&& __t) {
return static_cast<typename std::tr1::remove_reference<_Tp>:... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/c++11-compat/unordered_map.h | #ifndef GALOIS_C__11_COMPAT_UNORDERED_MAP_H
#define GALOIS_C__11_COMPAT_UNORDERED_MAP_H
#include <boost/tr1/unordered_map.hpp>
namespace std { using namespace std::tr1; }
#endif
| 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/c++11-compat/utility.h | #ifndef GALOIS_C__11_COMPAT_UTILITY_H
#define GALOIS_C__11_COMPAT_UTILITY_H
#include <boost/tr1/type_traits.hpp>
namespace std {
template<typename _Tp>
constexpr _Tp&& forward(typename std::tr1::remove_reference<_Tp>::type& __t) {
return static_cast<_Tp&&>(__t);
}
template<typename _Tp>
constexpr _Tp&& forward(typ... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/c++11-compat/vector.h | #ifndef GALOIS_C__11_COMPAT_VECTOR_H
#define GALOIS_C__11_COMPAT_VECTOR_H
#include <vector>
#define GALOIS_CXX11_VECTOR_HAS_NO_EMPLACE
#endif
| 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/c++11-compat/atomic.h | #ifndef GALOIS_C__11_COMPAT_ATOMIC_H
#define GALOIS_C__11_COMPAT_ATOMIC_H
#include "type_traits.h"
namespace std {
typedef enum memory_order
{
memory_order_relaxed,
memory_order_consume,
memory_order_acquire,
memory_order_release,
memory_order_acq_rel,
memory_order_seq_cst
} memory_order... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/c++11-compat/type_traits.h | #ifndef GALOIS_C__11_COMPAT_TYPE_TRAITS_H
#define GALOIS_C__11_COMPAT_TYPE_TRAITS_H
#include <boost/tr1/functional.hpp>
#include <boost/tr1/type_traits.hpp>
namespace std {
using namespace std::tr1;
template<bool, typename _Tp = void>
struct enable_if { };
template<typename _Tp>
struct enable_if<true, _Tp> { typede... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/ParallelWork.h | /** Galois scheduler and runtime -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2012, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/Context.h | /** simple galois context and contention manager -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2012, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES C... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/Range.h | /** Ranges -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2012, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWARE AND DOCUMEN... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/UserContextAccess.h | /** Manipulate the user context -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2011, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
*... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/Termination.h | /** Dikstra style termination detection -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in
* irregular programs.
* Copyright (C) 2011, The University of Texas at Austin. All rights
* reserved. UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES
* CONCERNI... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/DeterministicWork.h | /** Deterministic execution -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOF... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/ActiveThreads.h | /** Number of Active Threads -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2011, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SO... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/ForEachTraits.h | /** Traits of the Foreach loop body functor -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2011, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCER... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/OrderedWork.h | /** Ordered execution -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2012, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWARE ... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/Support.h | /** Reporting and utility code -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2012, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* ... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/MethodFlags.h | /** Galois Conflict flags -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2012, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTW... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/Sampling.h | /** HW Runtime Sampling Control -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2011, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
*... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/DoAll.h | /** Galois Simple Parallel Loop -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2012, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
*... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/ThreadPool.h | /** Simple thread related classes -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/Barrier.h | /** Barriers -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2012, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWARE AND DOCUM... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/PerThreadWorkList.h | /** Per Thread workLists-*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2011, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWAR... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/PerThreadStorage.h | /** Per Thread Storage -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2012, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWARE... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/ll/HWTopo.h | /** Hardware topology and thread binding -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in
* irregular programs.
*
* Copyright (C) 2012, The University of Texas at Austin. All rights
* reserved. UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES
* CONCE... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/ll/TID.h | /** Thread ID -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in
* irregular programs.
*
* Copyright (C) 2011, The University of Texas at Austin. All rights
* reserved. UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES
* CONCERNING THIS SOFTWARE AND DOC... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/ll/CompilerSpecific.h | /** Galois configuration -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWA... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/ll/StaticInstance.h | /** Simple Safe Static Global Instance -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in
* irregular programs.
*
* Copyright (C) 2011, The University of Texas at Austin. All rights
* reserved. UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES
* CONCERN... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/ll/ThreadRWlock.h | /** TODO -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2011, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWARE AND DOCUMENTA... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/ll/SimpleLock.h | /** Simple Spin Lock -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in
* irregular programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights
* reserved. UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES
* CONCERNING THIS SOFTWARE ... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/ll/gio.h | /** Galois IO routines -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2012, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWARE... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/ll/CacheLineStorage.h | /** One element per cache line -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in
* irregular programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights
* reserved. UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES
* CONCERNING THIS... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/ll/PtrLock.h | /** Pointer Spin Lock -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in
* irregular programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights
* reserved. UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES
* CONCERNING THIS SOFTWARE... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/ll/PaddedLock.h | /** Cache-line padded Simple Spin Lock -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in
* irregular programs.
*
* Copyright (C) 2011, The University of Texas at Austin. All rights
* reserved. UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES
* CONCERN... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/ll/EnvCheck.h | /** Enviroment Checking Code -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2011, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SO... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Runtime/mm/Mem.h | /** heap building blocks -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWA... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/WorkList/WorkListHelpers.h | /** Worklist building blocks -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SO... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/WorkList/Lifo.h | /** LIFO worklist -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWARE AND ... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/WorkList/GFifo.h | /** GFIFO worklist -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWARE AND... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/WorkList/Obim.h | /** Scalable priority worklist -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* ... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/WorkList/StableIterator.h | /** Stable Iterator worklist -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SO... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/WorkList/WorkList.h | /** Worklists -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWARE AND DOCU... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/WorkList/Fifo.h | /** FIFO worklist -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWARE AND ... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/WorkList/AltChunked.h | /** Alternative chunked interface -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/WorkList/LocalQueue.h | /** LocalQueues worklist -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWA... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/WorkList/BulkSynchronous.h | /** BulkSynchronous worklist -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SO... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/WorkList/OwnerComputes.h | /** Owner Computes worklist -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOF... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/WorkList/WLCompileCheck.h | /** worklists common test macro -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
*... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/WorkList/ExternRef.h | /** External worklist -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWARE ... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/WorkList/Chunked.h | /** (d)Chunked(F|L)ifo worklist -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
*... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/WorkList/OrderedList.h | /** Scalable priority worklist -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* ... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Graph/memScalGraph.h | /*
* memScalGraph.h
*
* Created on: Mar 4, 2013
* Author: nyadav
*/
#ifndef GALOIS_GRAPH_MEMSCALGRAPH_H
#define GALOIS_GRAPH_MEMSCALGRAPH_H
#include "Galois/Bag.h"
#include "Galois/Graph/Details.h"
#include "Galois/Runtime/Context.h"
#include "Galois/Runtime/MethodFlags.h"
#include "Galois/gdeque.h"
#inc... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Graph/Util.h | /** Useful classes and methods for graphs -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERN... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Graph/LC_CSR_Graph.h | /** Local Computation graphs -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SO... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Graph/LC_InlineEdge_Graph.h | /** Local Computation graphs -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SO... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Graph/GraphNodeBag.h | #ifndef GALOIS_GRAPHNODEBAG_H
#define GALOIS_GRAPHNODEBAG_H
#include "Galois/Accumulator.h"
#include "Galois/LargeArray.h"
#include "Galois/Bag.h"
namespace Galois {
/**
* Stores graph nodes to execute for {@link Ligra} executor.
*/
template<unsigned int BlockSize = 0>
class GraphNodeBag {
typedef Galois::Insert... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Graph/Details.h | /** Implementation details for implementing graphs -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIE... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Graph/Graph.h | /** Basic morph graphs -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWARE... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Graph/LCGraph.h | /** Local Computation graphs -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SO... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Graph/LC_InOut_Graph.h | /** Local computation graphs with in and out edges -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Graph/SpatialTree.h | /** A quad-tree -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2012, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWARE AND DO... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Graph/FirstGraph.h | /** Basic morph graphs -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWARE... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Graph/OCGraph.h | /** Out of core graphs -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWARE... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Graph/TypeTraits.h | /** Graph type traits -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOFTWARE ... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Graph/LC_Morph_Graph.h | /** Appendable semi-LC graphs -*- C++ -*-
* @file
* @section License
*
* Graph which is like other LC graphs but allows adding edges.
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERS... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Graph/LC_Linear_Graph.h | /** Local Computation graphs -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SO... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/Galois | rapidsai_public_repos/code-share/maxflow/galois/include/Galois/Graph/FileGraph.h | /** Basic serialized graphs -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2013, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
* SOF... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/Support/SwapByteOrder.h | //===- SwapByteOrder.h - Generic and optimized byte swaps -------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/Support/MathExtras.h | //===-- llvm/Support/MathExtras.h - Useful math functions -------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/Support/CommandLine.h | //===- llvm/Support/CommandLine.h - Command line handler --------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/Support/PointerLikeTypeTraits.h | //===- llvm/Support/PointerLikeTypeTraits.h - Pointer Traits ----*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/Support/Compiler.h | //===-- llvm/Support/Compiler.h - Compiler abstraction support --*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/Support/Recycler.h | //==- llvm/Support/Recycler.h - Recycling Allocator --------------*- C++ -*-==//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/Support/Allocator.h | //===--- Allocator.h - Simple memory allocation abstraction -----*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/Support/Memory.h | //===- llvm/Support/Memory.h - Memory Support --------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/Support/type_traits.h | //===- llvm/Support/type_traits.h - Simplfied type traits -------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/Support/DataTypes.h.cmake | /*===-- include/Support/DataTypes.h - Define fixed size types -----*- C -*-===*\
|* *|
|* The LLVM Compiler Infrastructure *|
|* ... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/Support/AlignOf.h | //===--- AlignOf.h - Portable calculation of type alignment -----*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/ADT/ilist_node.h | //==-- llvm/ADT/ilist_node.h - Intrusive Linked List Helper ------*- C++ -*-==//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/ADT/SmallString.h | //===- llvm/ADT/SmallString.h - 'Normally small' strings --------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/ADT/APSInt.h | //===-- llvm/ADT/APSInt.h - Arbitrary Precision Signed Int -----*- C++ -*--===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/ADT/APFloat.h | //== llvm/Support/APFloat.h - Arbitrary Precision Floating Point -*- C++ -*-==//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/ADT/OwningPtr.h | //===- llvm/ADT/OwningPtr.h - Smart ptr that owns the pointee ---*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/ADT/StringMap.h | //===--- StringMap.h - String Hash table map interface ----------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/ADT/ilist.h | //==-- llvm/ADT/ilist.h - Intrusive Linked List Template ---------*- C++ -*-==//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/ADT/Twine.h | //===-- Twine.h - Fast Temporary String Concatenation -----------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/ADT/SmallPtrSet.h | //===- llvm/ADT/SmallPtrSet.h - 'Normally small' pointer set ----*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/ADT/SmallVector.h | //===- llvm/ADT/SmallVector.h - 'Normally small' vectors --------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/ADT/ArrayRef.h | //===--- ArrayRef.h - Array Reference Wrapper -------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/ADT/StringRef.h | //===--- StringRef.h - Constant String Reference Wrapper --------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/ADT/DenseMapInfo.h | //===- llvm/ADT/DenseMapInfo.h - Type traits for DenseMap -------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/ADT/StringExtras.h | //===-- llvm/ADT/StringExtras.h - Useful string functions -------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include/llvm | rapidsai_public_repos/code-share/maxflow/galois/include/llvm/ADT/APInt.h | //===-- llvm/ADT/APInt.h - For Arbitrary Precision Integer -----*- C++ -*--===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 0 |
rapidsai_public_repos/code-share/maxflow/galois/include | rapidsai_public_repos/code-share/maxflow/galois/include/Lonestar/BoilerPlate.h | /** Common command line processing for benchmarks -*- C++ -*-
* @file
* @section License
*
* Galois, a framework to exploit amorphous data-parallelism in irregular
* programs.
*
* Copyright (C) 2012, The University of Texas at Austin. All rights reserved.
* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES ... | 0 |
rapidsai_public_repos/code-share/maxflow/galois | rapidsai_public_repos/code-share/maxflow/galois/scripts/CMakeLists.txt | configure_file("make_dist.sh.in" "make_dist.sh")
file(COPY . DESTINATION ${CMAKE_CURRENT_BINARY_DIR} PATTERN .svn EXCLUDE)
| 0 |
rapidsai_public_repos/code-share/maxflow/galois | rapidsai_public_repos/code-share/maxflow/galois/scripts/quick_plot.pl | while (<STDIN>) {
if (/STAT.*/) {
my @values = split ',';
if ($values[2] eq $ARGV[0]) {
$v{$values[3]} += $values[4];
$n{$values[3]} += 1;
}
}
}
#foreach $key (sort {$a <=> $b} keys %v) {
# print "$key $v{$key} $n{$key}\n";
#}
open GP, "|gnuplot -persist" or die "Can't execute gnuplot";
if (e... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.