From 2b9a097d6994ae4008506123fea30bd295eff6b0 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Tue, 30 Apr 2024 17:41:32 -0500 Subject: [PATCH 1/3] Remove header existence tests. --- conda/recipes/librmm/meta.yaml | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/conda/recipes/librmm/meta.yaml b/conda/recipes/librmm/meta.yaml index 0d3bd0add..b1edfe46a 100644 --- a/conda/recipes/librmm/meta.yaml +++ b/conda/recipes/librmm/meta.yaml @@ -81,37 +81,7 @@ outputs: - spdlog {{ spdlog_version }} test: commands: - - test -f $PREFIX/include/rmm/logger.hpp - - test -f $PREFIX/include/rmm/cuda_stream.hpp - - test -f $PREFIX/include/rmm/cuda_stream_view.hpp - - test -f $PREFIX/include/rmm/cuda_stream_pool.hpp - - test -f $PREFIX/include/rmm/device_uvector.hpp - - test -f $PREFIX/include/rmm/device_scalar.hpp - test -f $PREFIX/include/rmm/device_buffer.hpp - - test -f $PREFIX/include/rmm/detail/aligned.hpp - - test -f $PREFIX/include/rmm/detail/error.hpp - - test -f $PREFIX/include/rmm/detail/exec_check_disable.hpp - - test -f $PREFIX/include/rmm/mr/device/detail/arena.hpp - - test -f $PREFIX/include/rmm/mr/device/detail/free_list.hpp - - test -f $PREFIX/include/rmm/mr/device/detail/coalescing_free_list.hpp - - test -f $PREFIX/include/rmm/mr/device/detail/fixed_size_free_list.hpp - - test -f $PREFIX/include/rmm/mr/device/detail/stream_ordered_memory_resource.hpp - - test -f $PREFIX/include/rmm/mr/device/arena_memory_resource.hpp - - test -f $PREFIX/include/rmm/mr/device/binning_memory_resource.hpp - - test -f $PREFIX/include/rmm/mr/device/cuda_memory_resource.hpp - - test -f $PREFIX/include/rmm/mr/device/device_memory_resource.hpp - - test -f $PREFIX/include/rmm/mr/device/fixed_size_memory_resource.hpp - - test -f $PREFIX/include/rmm/mr/device/limiting_resource_adaptor.hpp - - test -f $PREFIX/include/rmm/mr/device/logging_resource_adaptor.hpp - - test -f $PREFIX/include/rmm/mr/device/managed_memory_resource.hpp - - test -f $PREFIX/include/rmm/mr/device/owning_wrapper.hpp - - test -f $PREFIX/include/rmm/mr/device/per_device_resource.hpp - - test -f $PREFIX/include/rmm/mr/device/pool_memory_resource.hpp - - test -f $PREFIX/include/rmm/mr/device/thread_safe_resource_adaptor.hpp - - test -f $PREFIX/include/rmm/mr/device/thrust_allocator_adaptor.hpp - - test -f $PREFIX/include/rmm/mr/host/host_memory_resource.hpp - - test -f $PREFIX/include/rmm/mr/host/new_delete_resource.hpp - - test -f $PREFIX/include/rmm/mr/host/pinned_memory_resource.hpp about: home: https://rapids.ai/ license: Apache-2.0 From f6c1d8c79bdeca3b5829fd2c030045659c2c477f Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Tue, 30 Apr 2024 20:59:33 -0500 Subject: [PATCH 2/3] Remove all existence tests. --- conda/recipes/librmm/meta.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/conda/recipes/librmm/meta.yaml b/conda/recipes/librmm/meta.yaml index b1edfe46a..163e02364 100644 --- a/conda/recipes/librmm/meta.yaml +++ b/conda/recipes/librmm/meta.yaml @@ -79,9 +79,6 @@ outputs: {% endif %} - fmt {{ fmt_version }} - spdlog {{ spdlog_version }} - test: - commands: - - test -f $PREFIX/include/rmm/device_buffer.hpp about: home: https://rapids.ai/ license: Apache-2.0 From 116a72174482b54faae5e0304297c7c039a94425 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Wed, 1 May 2024 17:20:30 -0500 Subject: [PATCH 3/3] Test existence of include/rmm directory. --- conda/recipes/librmm/meta.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/conda/recipes/librmm/meta.yaml b/conda/recipes/librmm/meta.yaml index 163e02364..403f7c8c1 100644 --- a/conda/recipes/librmm/meta.yaml +++ b/conda/recipes/librmm/meta.yaml @@ -79,6 +79,9 @@ outputs: {% endif %} - fmt {{ fmt_version }} - spdlog {{ spdlog_version }} + test: + commands: + - test -d "${PREFIX}/include/rmm" about: home: https://rapids.ai/ license: Apache-2.0