10#ifndef TPETRA_DETAILS_FIXEDHASHTABLE_DECL_HPP
11#define TPETRA_DETAILS_FIXEDHASHTABLE_DECL_HPP
13#include "Tpetra_Details_Hash.hpp"
18#include "Teuchos_Describable.hpp"
19#include "Teuchos_FancyOStream.hpp"
20#include "Teuchos_VerbosityLevel.hpp"
22#include "Kokkos_Core.hpp"
23#include "Kokkos_ArithTraits.hpp"
53template<
class KeyType,
58 typedef typename DeviceType::execution_space execution_space;
59 typedef typename DeviceType::memory_space memory_space;
60 typedef Kokkos::Device<execution_space, memory_space> device_type;
63 typedef typename hash_type::offset_type offset_type;
72 typedef typename Kokkos::View<
const offset_type*, Kokkos::LayoutLeft,
73 device_type> ptr_type;
80 typedef typename Kokkos::View<const Kokkos::pair<KeyType, ValueType>*,
81 Kokkos::LayoutLeft, device_type> val_type;
90 return contiguousValues_;
97 typedef Kokkos::View<const KeyType*, Kokkos::LayoutLeft, device_type>
keys_type;
204 const Teuchos::ArrayView<const ValueType>&
vals);
206 template<
class K,
class V,
class D>
214 template<
class InDeviceType>
216 typename std::enable_if<! std::is_same<DeviceType, InDeviceType>::value,
int>::type* =
NULL)
218 using Kokkos::ViewAllocateWithoutInitializing;
233 src.ptr_.extent (0));
236 src.val_.extent (0));
240 Kokkos::deep_copy (execution_space(),
val, src.val_);
244 this->minKey_ = src.minKey_;
245 this->maxKey_ = src.maxKey_;
246 this->minVal_ = src.minVal_;
247 this->maxVal_ = src.maxVal_;
248 this->firstContigKey_ = src.firstContigKey_;
249 this->lastContigKey_ = src.lastContigKey_;
250 this->contiguousValues_ = src.contiguousValues_;
251 this->checkedForDuplicateKeys_ = src.checkedForDuplicateKeys_;
252 this->hasDuplicateKeys_ = src.hasDuplicateKeys_;
257 const offset_type
size = this->getSize ();
261 return Tpetra::Details::OrdinalTraits<ValueType>::invalid ();
266 if (this->hasContiguousValues () &&
267 key >= firstContigKey_ &&
key <= lastContigKey_) {
271 const typename hash_type::result_type
hashVal =
272 hash_type::hashFunc (
key,
size);
274 const offset_type start = ptr_[
hashVal];
276 for (offset_type
k = start;
k <
end; ++
k) {
278 return val_[
k].second;
284 return Tpetra::Details::OrdinalTraits<ValueType>::invalid ();
296 if (this->hasContiguousValues ()) {
297 return val_.extent (0) +
static_cast<offset_type
> (lastContigKey_ - firstContigKey_);
300 return val_.extent (0);
376 const Teuchos::EVerbosityLevel
verbLevel=
377 Teuchos::Describable::verbLevel_default)
const;
391 KeyType minKey_ = ::Kokkos::ArithTraits<KeyType>::max();
398 KeyType maxKey_ = ::Kokkos::ArithTraits<KeyType>::max();
404 ValueType minVal_ = ::Kokkos::ArithTraits<ValueType>::max();
410 ValueType maxVal_ = ::Kokkos::ArithTraits<ValueType>::is_integer ?
411 ::Kokkos::ArithTraits<ValueType>::min() :
420 KeyType firstContigKey_ = ::Kokkos::ArithTraits<KeyType>::max();
428 KeyType lastContigKey_ = ::Kokkos::ArithTraits<KeyType>::max();
436 bool contiguousValues_ =
true;
444 bool checkedForDuplicateKeys_ =
true;
449 bool hasDuplicateKeys_ =
false;
455 bool checkForDuplicateKeys ()
const;
459 return ptr_.extent (0) == 0 ?
460 static_cast<offset_type
> (0) :
464 typedef Kokkos::View<
const KeyType*,
465 typename ptr_type::HostMirror::array_layout,
466 typename ptr_type::HostMirror::execution_space,
467 Kokkos::MemoryUnmanaged> host_input_keys_type;
470 typename ptr_type::HostMirror::array_layout,
471 typename ptr_type::HostMirror::execution_space,
472 Kokkos::MemoryUnmanaged> host_input_vals_type;
496 init (
const host_input_keys_type&
keys,
497 const host_input_vals_type&
vals,
Import KokkosSparse::OrdinalTraits, a traits class for "invalid" (flag) values of integer types,...
Declaration of Tpetra::Details::Profiling, a scope guard for Kokkos Profiling.
Declare and define Tpetra::Details::copyOffsets, an implementation detail of Tpetra (in particular,...
Struct that holds views of the contents of a CrsMatrix.
KOKKOS_INLINE_FUNCTION ValueType minVal() const
The minimum value in the table.
std::string description() const
Implementation of Teuchos::Describable interface.
bool hasDuplicateKeys()
Whether the table has any duplicate keys.
FixedHashTable(const FixedHashTable< KeyType, ValueType, InDeviceType > &src, typename std::enable_if<! std::is_same< DeviceType, InDeviceType >::value, int >::type *=NULL)
"Copy" constructor that takes a FixedHashTable with the same KeyType and ValueType,...
KOKKOS_INLINE_FUNCTION offset_type numPairs() const
Number of (key, value) pairs in the table.
Kokkos::View< const KeyType *, Kokkos::LayoutLeft, device_type > keys_type
Type of a 1-D Kokkos::View (array) used to store keys.
KOKKOS_INLINE_FUNCTION KeyType maxKey() const
The maximum key in the table.
KOKKOS_INLINE_FUNCTION ValueType maxVal() const
The maximum value in the table.
KOKKOS_INLINE_FUNCTION KeyType minKey() const
The minimum key in the table.
KOKKOS_DEFAULTED_FUNCTION FixedHashTable()=default
Default constructor; makes an empty table.
KOKKOS_INLINE_FUNCTION ValueType get(const KeyType &key) const
Get the value corresponding to the given key.
void describe(Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const
Print this object with the given verbosity to the output stream.
Implementation details of Tpetra.
void copyOffsets(const OutputViewType &dst, const InputViewType &src)
Copy row offsets (in a sparse graph or matrix) from src to dst. The offsets may have different types.
Namespace Tpetra contains the class and methods constituting the Tpetra library.