Program Listing for File HostResourceFactory.cpp

Return to documentation for file (umpire/resource/HostResourceFactory.cpp)

//////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2016-20, Lawrence Livermore National Security, LLC and Umpire
// project contributors. See the COPYRIGHT file for details.
//
// SPDX-License-Identifier: (MIT)
//////////////////////////////////////////////////////////////////////////////
#include "umpire/resource/HostResourceFactory.hpp"

#include "umpire/resource/DefaultMemoryResource.hpp"

#include "umpire/alloc/MallocAllocator.hpp"
#if defined(UMPIRE_ENABLE_NUMA)
#include "umpire/alloc/PosixMemalignAllocator.hpp"
#endif

#include "umpire/util/detect_vendor.hpp"
#include "umpire/util/make_unique.hpp"

namespace umpire {
namespace resource {

bool
HostResourceFactory::isValidMemoryResourceFor(const std::string& name) noexcept
{
  if (name.compare("HOST") == 0) {
    return true;
  } else {
    return false;
  }
}

std::unique_ptr<resource::MemoryResource>
HostResourceFactory::create(const std::string& UMPIRE_UNUSED_ARG(name), int id)
{
#if defined(UMPIRE_ENABLE_NUMA)
  using HostAllocator = alloc::PosixMemalignAllocator;
#else
  using HostAllocator = alloc::MallocAllocator;
#endif

  MemoryResourceTraits traits;

  // int mib[2];
  // mib[0] = CTL_HW;
  // mib[1] = HW_MEMSIZE;

  // std::size_t mem_size;
  // std::size_t returnSize = sizeof(mem_size);
  // sysctl(mib, 2, &physicalMem, &returnSize, NULL, 0);

  traits.unified = false;
  traits.size = 0;

  traits.vendor = cpu_vendor_type();
  traits.kind = MemoryResourceTraits::memory_type::UNKNOWN;
  traits.used_for = MemoryResourceTraits::optimized_for::any;

  return util::make_unique<DefaultMemoryResource<HostAllocator>>(Platform::cpu, "HOST", id, traits);
}

} // end of namespace resource
} // end of namespace umpire