Skip to content

Commit

Permalink
fix meta yaml formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
cwharris committed Jan 18, 2024
1 parent 33af7ed commit 7bb379b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions ci/conda/recipes/libmrc/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ requirements:
- {{ compiler("cxx") }}
- autoconf >=2.69
- ccache
- cmake = 3.27
- cmake =3.27
- cuda-cudart-dev # Needed by CMake to compile a test application
- libtool
- ninja
Expand Down Expand Up @@ -85,9 +85,9 @@ outputs:
- {{ compiler("c") }}
- {{ compiler("cuda") }}
- {{ compiler("cxx") }}
- cmake = 3.27
- cmake =3.27
- numactl-libs-cos7-x86_64
- sysroot_linux-64 = 2.17
- sysroot_linux-64 =2.17
host:
# Any libraries with weak run_exports need to go here to be added to the run. Keep sorted!
- boost-cpp
Expand Down
4 changes: 2 additions & 2 deletions cpp/mrc/include/mrc/memory/resources/detail/arena.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ inline bool block_size_compare(block lhs, block rhs)
*/
constexpr std::size_t align_up(std::size_t value) noexcept
{
return rmm::detail::align_up(value, rmm::detail::CUDA_ALLOCATION_ALIGNMENT);
return rmm::align_up(value, rmm::CUDA_ALLOCATION_ALIGNMENT);
}

/**
Expand All @@ -180,7 +180,7 @@ constexpr std::size_t align_up(std::size_t value) noexcept
*/
constexpr std::size_t align_down(std::size_t value) noexcept
{
return rmm::detail::align_down(value, rmm::detail::CUDA_ALLOCATION_ALIGNMENT);
return rmm::align_down(value, rmm::CUDA_ALLOCATION_ALIGNMENT);
}

/**
Expand Down

0 comments on commit 7bb379b

Please sign in to comment.