|
template<int ChunkSize = 64, typename T = int, bool Concurrent = true> |
using | galois::worklists::ChunkFIFO = internal::ChunkMaster< T, ConExtLinkedQueue, false, false, ChunkSize, Concurrent > |
| Chunk FIFO. More...
|
|
template<int ChunkSize = 64, typename T = int, bool Concurrent = true> |
using | galois::worklists::ChunkLIFO = internal::ChunkMaster< T, ConExtLinkedStack, false, true, ChunkSize, Concurrent > |
| Chunk LIFO. More...
|
|
template<int ChunkSize = 64, typename T = int, bool Concurrent = true> |
using | galois::worklists::PerSocketChunkFIFO = internal::ChunkMaster< T, ConExtLinkedQueue, true, false, ChunkSize, Concurrent > |
| Distributed chunked FIFO. More...
|
|
template<int ChunkSize = 64, typename T = int, bool Concurrent = true> |
using | galois::worklists::PerSocketChunkLIFO = internal::ChunkMaster< T, ConExtLinkedStack, true, true, ChunkSize, Concurrent > |
| Distributed chunked LIFO. More...
|
|
template<int ChunkSize = 64, typename T = int, bool Concurrent = true> |
using | galois::worklists::PerSocketChunkBag = internal::ChunkMaster< T, ConExtLinkedQueue, true, true, ChunkSize, Concurrent > |
| Distributed chunked bag. More...
|
|