//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. // // This software is distributed WITHOUT ANY WARRANTY; without even // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // PURPOSE. See the above copyright notice for more information. //============================================================================ #ifndef vtk_m_cont_UnknownArrayHandle_h #define vtk_m_cont_UnknownArrayHandle_h #include #include #include #include #include #include #include #include #include #include namespace vtkm { namespace cont { namespace detail { template static void UnknownAHDelete(void* mem) { using AH = vtkm::cont::ArrayHandle; AH* arrayHandle = reinterpret_cast(mem); delete arrayHandle; } template static void* UnknownADNewInstance() { return new vtkm::cont::ArrayHandle; } template static vtkm::Id UnknownAHNumberOfValues(void* mem) { using AH = vtkm::cont::ArrayHandle; AH* arrayHandle = reinterpret_cast(mem); return arrayHandle->GetNumberOfValues(); } template ::IsSizeStatic> struct UnknownAHNumberOfComponentsImpl; template struct UnknownAHNumberOfComponentsImpl { static constexpr vtkm::IdComponent Value = vtkm::VecTraits::NUM_COMPONENTS; }; template struct UnknownAHNumberOfComponentsImpl { static constexpr vtkm::IdComponent Value = 0; }; template static vtkm::IdComponent UnknownAHNumberOfComponents() { return UnknownAHNumberOfComponentsImpl::Value; } template ::IsSizeStatic> struct UnknownAHNumberOfComponentsFlatImpl; template struct UnknownAHNumberOfComponentsFlatImpl { static constexpr vtkm::IdComponent Value = vtkm::VecFlat::NUM_COMPONENTS; }; template struct UnknownAHNumberOfComponentsFlatImpl { static constexpr vtkm::IdComponent Value = 0; }; template static vtkm::IdComponent UnknownAHNumberOfComponentsFlat() { return UnknownAHNumberOfComponentsFlatImpl::Value; } template static void UnknownAHAllocate(void* mem, vtkm::Id numValues) { using AH = vtkm::cont::ArrayHandle; AH* arrayHandle = reinterpret_cast(mem); arrayHandle->Allocate(numValues); } template static std::vector UnknownAHExtractComponent(void* mem, vtkm::IdComponent componentIndex, vtkm::CopyFlag allowCopy) { using AH = vtkm::cont::ArrayHandle; AH* arrayHandle = reinterpret_cast(mem); auto componentArray = vtkm::cont::ArrayExtractComponent(*arrayHandle, componentIndex, allowCopy); vtkm::cont::internal::Buffer* buffers = componentArray.GetBuffers(); return std::vector(buffers, buffers + 2); } template static void UnknownAHReleaseResources(void* mem) { using AH = vtkm::cont::ArrayHandle; AH* arrayHandle = reinterpret_cast(mem); arrayHandle->ReleaseResources(); } template static void UnknownAHReleaseResourcesExecution(void* mem) { using AH = vtkm::cont::ArrayHandle; AH* arrayHandle = reinterpret_cast(mem); arrayHandle->ReleaseResourcesExecution(); } template static void UnknownAHPrintSummary(void* mem, std::ostream& out, bool full) { using AH = vtkm::cont::ArrayHandle; AH* arrayHandle = reinterpret_cast(mem); vtkm::cont::printSummary_ArrayHandle(*arrayHandle, out, full); } struct VTKM_CONT_EXPORT UnknownAHContainer; struct MakeUnknownAHContainerFunctor { template std::shared_ptr operator()(const vtkm::cont::ArrayHandle& array) const; }; struct VTKM_CONT_EXPORT UnknownAHContainer { void* ArrayHandlePointer; std::type_index ValueType; std::type_index StorageType; std::type_index BaseComponentType; using DeleteType = void(void*); DeleteType* DeleteFunction; using NewInstanceType = void*(); NewInstanceType* NewInstance; using NewInstanceBasicType = std::shared_ptr(); NewInstanceBasicType* NewInstanceBasic; using NumberOfValuesType = vtkm::Id(void*); NumberOfValuesType* NumberOfValues; using NumberOfComponentsType = vtkm::IdComponent(); NumberOfComponentsType* NumberOfComponents; NumberOfComponentsType* NumberOfComponentsFlat; using AllocateType = void(void*, vtkm::Id); AllocateType* Allocate; using ExtractComponentType = std::vector(void*, vtkm::IdComponent, vtkm::CopyFlag); ExtractComponentType* ExtractComponent; using ReleaseResourcesType = void(void*); ReleaseResourcesType* ReleaseResources; ReleaseResourcesType* ReleaseResourcesExecution; using PrintSummaryType = void(void*, std::ostream&, bool); PrintSummaryType* PrintSummary; void operator=(const UnknownAHContainer&) = delete; ~UnknownAHContainer() { this->DeleteFunction(this->ArrayHandlePointer); } std::shared_ptr MakeNewInstance() const; template static std::shared_ptr Make(const vtkm::cont::ArrayHandle& array) { return std::shared_ptr(new UnknownAHContainer(array)); } template static std::shared_ptr Make( const vtkm::cont::ArrayHandle>& array) { vtkm::cont::ArrayHandleCast> castArray = array; return Make(castArray.GetSourceArray()); } template static std::shared_ptr Make( const vtkm::cont::ArrayHandle>& array) { auto&& variant = vtkm::cont::ArrayHandleMultiplexer...>(array) .GetArrayHandleVariant(); if (variant.IsValid()) { return variant.CastAndCall(MakeUnknownAHContainerFunctor{}); } else { return std::shared_ptr{}; } } private: UnknownAHContainer(const UnknownAHContainer&) = default; template explicit UnknownAHContainer(const vtkm::cont::ArrayHandle& array); }; template static std::shared_ptr UnknownADNewInstanceBasic(vtkm::VecTraitsTagSizeStatic) { return UnknownAHContainer::Make(vtkm::cont::ArrayHandleBasic{}); } template static std::shared_ptr UnknownADNewInstanceBasic(vtkm::VecTraitsTagSizeVariable) { throw vtkm::cont::ErrorBadType("Cannot create a basic array container from with ValueType of " + vtkm::cont::TypeToString()); } template static std::shared_ptr UnknownADNewInstanceBasic() { return UnknownADNewInstanceBasic(typename vtkm::VecTraits::IsSizeStatic{}); } template inline UnknownAHContainer::UnknownAHContainer(const vtkm::cont::ArrayHandle& array) : ArrayHandlePointer(new vtkm::cont::ArrayHandle(array)) , ValueType(typeid(T)) , StorageType(typeid(S)) , BaseComponentType(typeid(typename vtkm::VecTraits::BaseComponentType)) , DeleteFunction(detail::UnknownAHDelete) , NewInstance(detail::UnknownADNewInstance) , NewInstanceBasic(detail::UnknownADNewInstanceBasic) , NumberOfValues(detail::UnknownAHNumberOfValues) , NumberOfComponents(detail::UnknownAHNumberOfComponents) , NumberOfComponentsFlat(detail::UnknownAHNumberOfComponentsFlat) , Allocate(detail::UnknownAHAllocate) , ExtractComponent(detail::UnknownAHExtractComponent) , ReleaseResources(detail::UnknownAHReleaseResources) , ReleaseResourcesExecution(detail::UnknownAHReleaseResourcesExecution) , PrintSummary(detail::UnknownAHPrintSummary) { } template inline std::shared_ptr MakeUnknownAHContainerFunctor::operator()( const vtkm::cont::ArrayHandle& array) const { return UnknownAHContainer::Make(array); }; } // namespace detail // Forward declaration. Include UncertainArrayHandle.h if using this. template class UncertainArrayHandle; /// \brief An ArrayHandle of an unknown value type and storage. /// /// `UnknownArrayHandle` holds an `ArrayHandle` object using runtime polymorphism /// to manage different value and storage types rather than compile-time templates. /// This adds a programming convenience that helps avoid a proliferation of /// templates. It also provides the management necessary to interface VTK-m with /// data sources where types will not be known until runtime and is the storage /// mechanism for classes like `DataSet` and `Field` that can hold numerous /// types. /// /// To interface between the runtime polymorphism and the templated algorithms /// in VTK-m, `UnknownArrayHandle` contains a method named `CastAndCallForTypes` /// that determines the correct type from some known list of value types and /// storage. This mechanism is used internally by VTK-m's worklet invocation /// mechanism to determine the type when running algorithms. /// /// If the `UnknownArrayHandle` is used in a context where the possible array /// types can be whittled down to a finite list (or you have to), you can /// specify lists of value types and storage using the `ResetTypesAndStorage` /// method. This will convert this object to an `UncertainArrayHandle` of the /// given types. In cases where a finite set of types need to specified but /// there is no known subset, `VTKM_DEFAULT_TYPE_LIST` and /// `VTKM_DEFAULT_STORAGE_LIST` can be used. /// /// `ArrayHandleCast` and `ArrayHandleMultiplexer` are treated special. If /// the `UnknownArrayHandle` is set to an `ArrayHandle` of one of these /// types, it will actually store the `ArrayHandle` contained. Likewise, /// if the `ArrayHandle` is retrieved as one of these types, it will /// automatically convert it if possible. /// class VTKM_CONT_EXPORT UnknownArrayHandle { std::shared_ptr Container; VTKM_CONT bool IsValueTypeImpl(std::type_index type) const; VTKM_CONT bool IsStorageTypeImpl(std::type_index type) const; VTKM_CONT bool IsBaseComponentTypeImpl(std::type_index type) const; public: VTKM_CONT UnknownArrayHandle() = default; UnknownArrayHandle(const UnknownArrayHandle&) = default; template VTKM_CONT UnknownArrayHandle(const vtkm::cont::ArrayHandle& array) : Container(detail::UnknownAHContainer::Make(array)) { } UnknownArrayHandle& operator=(const vtkm::cont::UnknownArrayHandle&) = default; /// \brief Create a new array of the same type as this array. /// /// This method creates a new array that is the same type as this one and /// returns a new `UnknownArrayHandle` for it. This method is convenient when /// creating output arrays that should be the same type as some input array. /// VTKM_CONT UnknownArrayHandle NewInstance() const; /// \brief Create a new `ArrayHandleBasic` with the same `ValueType` as this array. /// /// This method creates a new `ArrayHandleBasic` that has the same `ValueType` as the /// array held by this one and returns a new `UnknownArrayHandle` for it. This method /// is convenient when creating output arrays that should have the same types of values /// of the input, but the input might not be a writable array. /// VTKM_CONT UnknownArrayHandle NewInstanceBasic() const; /// \brief Returns the name of the value type stored in the array. /// /// Returns an empty string if no array is stored. VTKM_CONT std::string GetValueTypeName() const; /// \brief Returns the name of the base component of the value type stored in the array. /// /// Returns an empty string if no array is stored. VTKM_CONT std::string GetBaseComponentTypeName() const; /// \brief Returns the name of the storage tag for the array. /// /// Returns an empty string if no array is stored. VTKM_CONT std::string GetStorageTypeName() const; /// Returns true if this array matches the ValueType template argument. /// template VTKM_CONT bool IsValueType() const { return this->IsValueTypeImpl(typeid(ValueType)); } /// Returns true if this array matches the StorageType template argument. /// template VTKM_CONT bool IsStorageType() const { return this->IsStorageTypeImpl(typeid(StorageType)); } /// \brief Returns true if this array's `ValueType` has the provided base component type. /// /// The base component type is the recursive component type of any `Vec`-like object. So /// if the array's `ValueType` is `vtkm::Vec`, then the base component /// type will be `vtkm::Float32`. Likewise, if the `ValueType` is /// `vtkm::Vec, 2>`, then the base component type is still /// `vtkm::Float32`. /// /// If the `ValueType` is not `Vec`-like type, then the base component type is the same. /// So a `ValueType` of `vtkm::Float32` has a base component type of `vtkm::Float32`. /// template VTKM_CONT bool IsBaseComponentType() const { return this->IsBaseComponentTypeImpl(typeid(BaseComponentType)); } /// Returns true if this array matches the ArrayHandleType template argument. /// template VTKM_CONT bool IsType() const { VTKM_IS_ARRAY_HANDLE(ArrayHandleType); return (this->IsValueType() && this->IsStorageType()); } /// \brief Assigns potential value and storage types. /// /// Calling this method will return an `UncertainArrayHandle` with the provided /// value and storage type lists. The returned object will hold the same /// `ArrayHandle`, but `CastAndCall`s on the returned object will be constrained /// to the given types. /// // Defined in UncertainArrayHandle.h template VTKM_CONT vtkm::cont::UncertainArrayHandle ResetTypes( NewValueTypeList = NewValueTypeList{}, NewStorageTypeList = NewStorageTypeList{}) const; /// \brief Returns the number of values in the array. /// VTKM_CONT vtkm::Id GetNumberOfValues() const; /// \brief Returns the number of components for each value in the array. /// /// If the array holds `vtkm::Vec` objects, this will return the number of components /// in each value. If the array holds a basic C type (such as `float`), this will return 1. /// If the array holds `Vec`-like objects that have the number of components that can vary /// at runtime, this method will return 0 (because there is no consistent answer). /// VTKM_CONT VTKM_DEPRECATED(1.6, "Use GetNumberOfComponentsFlat.") vtkm::IdComponent GetNumberOfComponents() const; /// \brief Returns the total number of components for each value in the array. /// /// If the array holds `vtkm::Vec` objects, this will return the total number of components /// in each value assuming the object is flattened out to one level of `Vec` objects. /// If the array holds a basic C type (such as `float`), this will return 1. /// If the array holds a simple `Vec` (such as `vtkm::Vec3f`), this will return the number /// of components (in this case 3). /// If the array holds a hierarchy of `Vec`s (such as `vtkm::Vec`), this will /// return the total number of vecs (in this case 6). /// If the array holds `Vec`-like objects that have the number of components that can vary /// at runtime, this method will return 0 (because there is no consistent answer). /// VTKM_CONT vtkm::IdComponent GetNumberOfComponentsFlat() const; /// \brief Reallocate the data in the array. /// VTKM_CONT void Allocate(vtkm::Id numValues) const; /// \brief Determine if the contained array can be passed to the given array type. /// /// This method will return true if calling `AsArrayHandle` of the given type will /// succeed. The result is similar to `IsType`, and if `IsType` returns true, then /// this will return true. However, this method will also return true for other /// types such as an `ArrayHandleMultiplexer` that can contain the array. /// template VTKM_CONT bool CanConvert() const; // MSVC will issue deprecation warnings here if this template is instantiated with // a deprecated class even if the template is used from a section of code where // deprecation warnings are suppressed. This is annoying behavior since this template // has no control over what class it is used with. To get around it, we have to // suppress all deprecation warnings here. #ifdef VTKM_MSVC VTKM_DEPRECATED_SUPPRESS_BEGIN #endif ///@{ /// Returns this array cast appropriately and stored in the given `ArrayHandle` type. /// Throws an `ErrorBadType` if the stored array cannot be stored in the given array type. /// Use the `IsType` method to determine if the array can be returned with the given type. /// template VTKM_CONT void AsArrayHandle(vtkm::cont::ArrayHandle& array) const { using ArrayType = vtkm::cont::ArrayHandle; if (!this->IsType()) { VTKM_LOG_CAST_FAIL(*this, decltype(array)); throwFailedDynamicCast(vtkm::cont::TypeToString(*this), vtkm::cont::TypeToString(array)); } array = *reinterpret_cast(this->Container->ArrayHandlePointer); } template VTKM_CONT void AsArrayHandle( vtkm::cont::ArrayHandle>& array) const; template VTKM_CONT void AsArrayHandle( vtkm::cont::ArrayHandle>& array) const { using ContainedArrayType = vtkm::cont::ArrayHandle; array = vtkm::cont::ArrayHandleCast( this->AsArrayHandle()); } template VTKM_CONT ArrayType AsArrayHandle() const { VTKM_IS_ARRAY_HANDLE(ArrayType); ArrayType array; this->AsArrayHandle(array); return array; } ///@} #ifdef VTKM_MSVC VTKM_DEPRECATED_SUPPRESS_END #endif /// \brief Extract a component of the array. /// /// This method returns an array that holds the data for a given flat component of the data. /// The `BaseComponentType` has to be specified and must match the contained array (i.e. /// the result of `IsBaseComponentType` must succeed for the given type). /// /// This method treats each value in the array as a flat `Vec` even if it is a `Vec` of /// `Vec`s. For example, if the array actually holds values of type `Vec, 2>`, /// it is treated as if it holds a `Vec`. See `vtkm::VecFlat` for details on how /// vectors are flattened. /// /// The point of using `ExtractComponent` over `AsArrayHandle` is that it drastically reduces /// the amount of types you have to try. Most of the type the base component type is one of /// the basic C types (i.e. `int`, `long`, `float`, etc.). You do not need to know what shape /// the containing `Vec` is in, nor do you need to know the actual storage of the array. /// /// Note that the type of the array returned is `ArrayHandleStride`. Using this type of /// array handle has a slight overhead over basic arrays like `ArrayHandleBasic` and /// `ArrayHandleSOA`. /// /// When extracting a component of an array, a shallow pointer to the data is returned /// whenever possible. However, in some circumstances it is impossible to conform the /// array. In these cases, the data are by default copied. If copying the data would /// cause problems (for example, you are writing into the array), you can select the /// optional `allowCopy` flag to `vtkm::CopyFlag::Off`. In this case, an exception /// will be thrown if the result cannot be represented by a shallow copy. /// template VTKM_CONT vtkm::cont::ArrayHandleStride ExtractComponent( vtkm::IdComponent componentIndex, vtkm::CopyFlag allowCopy = vtkm::CopyFlag::On) const { using ComponentArrayType = vtkm::cont::ArrayHandleStride; if (!this->IsBaseComponentType()) { VTKM_LOG_CAST_FAIL(*this, ComponentArrayType); throwFailedDynamicCast(vtkm::cont::TypeToString(*this), "component array of " + vtkm::cont::TypeToString()); } auto buffers = this->Container->ExtractComponent( this->Container->ArrayHandlePointer, componentIndex, allowCopy); return ComponentArrayType(buffers); } ///@{ /// \brief Convenience portal to access all components (in control environment). /// /// This method returns a portal that allows you to access all the values in the contained /// portal by knowing only the type of the base component. The `BaseComponentType` has to /// be specified and must match the contained array (i.e.the result of `IsBaseComponentType` /// must succeed for the given type). /// /// Note that the returned portal is not thread safe, but you may safely create multiple portals /// for multiple threads. /// template VTKM_CONT vtkm::cont::internal::ArrayPortalFromExtractedComponents< typename vtkm::cont::ArrayHandleStride::ReadPortalType> ReadPortalForBaseComponentType() const { vtkm::IdComponent numComponents = this->GetNumberOfComponentsFlat(); vtkm::cont::internal::ArrayPortalFromExtractedComponents< typename vtkm::cont::ArrayHandleStride::ReadPortalType> portal(numComponents); for (vtkm::IdComponent cIndex = 0; cIndex < numComponents; ++cIndex) { auto array = this->ExtractComponent(cIndex, vtkm::CopyFlag::On); portal.AddArray(array, array.ReadPortal()); } return portal; } template VTKM_CONT vtkm::cont::internal::ArrayPortalFromExtractedComponents< typename vtkm::cont::ArrayHandleStride::WritePortalType> WritePortalForBaseComponentType() const { vtkm::IdComponent numComponents = this->GetNumberOfComponentsFlat(); vtkm::cont::internal::ArrayPortalFromExtractedComponents< typename vtkm::cont::ArrayHandleStride::WritePortalType> portal(numComponents); for (vtkm::IdComponent cIndex = 0; cIndex < numComponents; ++cIndex) { auto array = this->ExtractComponent(cIndex, vtkm::CopyFlag::Off); portal.AddArray(array, array.WritePortal()); } return portal; } ///@} /// \brief Call a functor using the underlying array type. /// /// `CastAndCall` attempts to cast the held array to a specific value type, /// and then calls the given functor with the cast array. You must specify /// the `TypeList` and `StorageList` as template arguments. /// template VTKM_CONT void CastAndCallForTypes(Functor&& functor, Args&&... args) const; /// Releases any resources being used in the execution environment (that are /// not being shared by the control environment). /// VTKM_CONT void ReleaseResourcesExecution() const; /// Releases all resources in both the control and execution environments. /// VTKM_CONT void ReleaseResources() const; VTKM_CONT void PrintSummary(std::ostream& out, bool full = false) const; }; //============================================================================= // Out of class implementations namespace detail { template struct UnknownArrayHandleCanConvert { VTKM_CONT bool operator()(const vtkm::cont::UnknownArrayHandle& array) const { return array.IsType>(); } }; template struct UnknownArrayHandleCanConvert> { VTKM_CONT bool operator()(const vtkm::cont::UnknownArrayHandle& array) const { return UnknownArrayHandleCanConvert{}(array); } }; template struct UnknownArrayHandleCanConvertTry { template VTKM_CONT void operator()(S, const vtkm::cont::UnknownArrayHandle& array, bool& canConvert) const { canConvert |= UnknownArrayHandleCanConvert{}(array); } }; template struct UnknownArrayHandleCanConvert> { VTKM_CONT bool operator()(const vtkm::cont::UnknownArrayHandle& array) const { bool canConvert = false; vtkm::ListForEach(UnknownArrayHandleCanConvertTry{}, vtkm::List{}, array, canConvert); return canConvert; } }; } // namespace detail template VTKM_CONT bool UnknownArrayHandle::CanConvert() const { VTKM_IS_ARRAY_HANDLE(ArrayHandleType); return detail::UnknownArrayHandleCanConvert{}(*this); } namespace detail { struct UnknownArrayHandleMultplexerCastTry { template VTKM_CONT void operator()( S, const vtkm::cont::UnknownArrayHandle& unknownArray, vtkm::cont::ArrayHandle>& outputArray, bool& converted) const { using ArrayType = vtkm::cont::ArrayHandle; if (unknownArray.CanConvert()) { if (converted && !unknownArray.IsType()) { // The array has already been converted and pushed in the multiplexer. It is // possible that multiple array types can be put in the ArrayHandleMultiplexer // (for example, and ArrayHandle or an ArrayHandle that has been cast). Exact // matches will override other matches (hence, the second part of the condition), // but at this point we have already found a better array to put inside. return; } outputArray = vtkm::cont::ArrayHandleMultiplexer...>( unknownArray.AsArrayHandle()); converted = true; } } }; } // namespace detail template void UnknownArrayHandle::AsArrayHandle( vtkm::cont::ArrayHandle>& array) const { bool converted = false; vtkm::ListForEach( detail::UnknownArrayHandleMultplexerCastTry{}, vtkm::List{}, *this, array, converted); if (!converted) { VTKM_LOG_CAST_FAIL(*this, decltype(array)); throwFailedDynamicCast(vtkm::cont::TypeToString(*this), vtkm::cont::TypeToString(array)); } } namespace detail { struct UnknownArrayHandleTry { template void operator()(vtkm::List, Functor&& f, bool& called, const vtkm::cont::UnknownArrayHandle& unknownArray, Args&&... args) const { using DerivedArrayType = vtkm::cont::ArrayHandle; if (!called && unknownArray.IsType()) { called = true; DerivedArrayType derivedArray; unknownArray.AsArrayHandle(derivedArray); VTKM_LOG_CAST_SUCC(unknownArray, derivedArray); // If you get a compile error here, it means that you have called CastAndCall for a // vtkm::cont::UnknownArrayHandle and the arguments of the functor do not match those // being passed. This is often because it is calling the functor with an ArrayHandle // type that was not expected. Either add overloads to the functor to accept all // possible array types or constrain the types tried for the CastAndCall. Note that // the functor will be called with an array of type vtkm::cont::ArrayHandle. // Directly using a subclass of ArrayHandle (e.g. vtkm::cont::ArrayHandleConstant) // might not work. f(derivedArray, std::forward(args)...); } } }; template struct IsUndefinedArrayType { }; template struct IsUndefinedArrayType> : vtkm::cont::internal::IsInvalidArrayHandle { }; template using ListAllArrayTypes = vtkm::ListRemoveIf, IsUndefinedArrayType>; VTKM_CONT_EXPORT void ThrowCastAndCallException(const vtkm::cont::UnknownArrayHandle&, const std::type_info&); } // namespace detail template VTKM_CONT void UnknownArrayHandle::CastAndCallForTypes(Functor&& f, Args&&... args) const { using crossProduct = detail::ListAllArrayTypes; bool called = false; vtkm::ListForEach(detail::UnknownArrayHandleTry{}, crossProduct{}, std::forward(f), called, *this, std::forward(args)...); if (!called) { // throw an exception VTKM_LOG_CAST_FAIL(*this, TypeList); detail::ThrowCastAndCallException(*this, typeid(TypeList)); } } template void CastAndCall(const UnknownArrayHandle& handle, Functor&& f, Args&&... args) { handle.CastAndCallForTypes( std::forward(f), std::forward(args)...); } namespace internal { template <> struct DynamicTransformTraits { using DynamicTag = vtkm::cont::internal::DynamicTransformTagCastAndCall; }; } // namespace internal } } // namespace vtkm::cont //============================================================================= // Specializations of serialization related classes /// @cond SERIALIZATION namespace vtkm { namespace cont { template <> struct VTKM_CONT_EXPORT SerializableTypeString { static VTKM_CONT std::string Get(); }; } } // namespace vtkm::cont namespace mangled_diy_namespace { template <> struct VTKM_CONT_EXPORT Serialization { public: static VTKM_CONT void save(BinaryBuffer& bb, const vtkm::cont::UnknownArrayHandle& obj); static VTKM_CONT void load(BinaryBuffer& bb, vtkm::cont::UnknownArrayHandle& obj); }; } // namespace mangled_diy_namespace /// @endcond SERIALIZATION #endif //vtk_m_cont_UnknownArrayHandle_h