Skip to content

Commit

Permalink
try making more things private
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb committed Aug 9, 2024
1 parent 0701559 commit 8935ec3
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion include/rmm/aligned.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include <cstddef>
#include <cstdint>

namespace RMM_EXPORT rmm {
namespace rmm {

/**
* @addtogroup utilities
Expand Down
2 changes: 1 addition & 1 deletion include/rmm/cuda_device.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#include <cuda_runtime_api.h>

namespace RMM_EXPORT rmm {
namespace rmm {

struct cuda_device_id;
inline cuda_device_id get_current_cuda_device();
Expand Down
2 changes: 1 addition & 1 deletion include/rmm/cuda_stream.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include <functional>
#include <memory>

namespace RMM_EXPORT rmm {
namespace rmm {
/**
* @addtogroup cuda_streams
* @{
Expand Down
2 changes: 1 addition & 1 deletion include/rmm/cuda_stream_pool.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include <cstddef>
#include <vector>

namespace RMM_EXPORT rmm {
namespace rmm {
/**
* @addtogroup cuda_streams
* @{
Expand Down
2 changes: 1 addition & 1 deletion include/rmm/cuda_stream_view.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include <cstddef>
#include <cstdint>

namespace RMM_EXPORT rmm {
namespace rmm {
/**
* @addtogroup cuda_streams
* @{
Expand Down
4 changes: 2 additions & 2 deletions include/rmm/detail/nvtx/ranges.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

#include <nvtx3/nvtx3.hpp>

namespace RMM_EXPORT rmm {
namespace rmm {
/**
* @brief Tag type for librmm's NVTX domain.
*/
Expand All @@ -43,7 +43,7 @@ struct librmm_domain {
*/
using scoped_range = ::nvtx3::scoped_range_in<librmm_domain>;

} // namespace RMM_EXPORT rmm
} // namespace rmm

/**
* @brief Convenience macro for generating an NVTX range in the `librmm` domain
Expand Down
2 changes: 1 addition & 1 deletion include/rmm/device_buffer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include <stdexcept>
#include <utility>

namespace RMM_EXPORT rmm {
namespace rmm {
/**
* @addtogroup data_containers
* @{
Expand Down
2 changes: 1 addition & 1 deletion include/rmm/device_scalar.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

#include <type_traits>

namespace RMM_EXPORT rmm {
namespace rmm {
/**
* @addtogroup data_containers
* @{
Expand Down
2 changes: 1 addition & 1 deletion include/rmm/device_uvector.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include <cstddef>
#include <vector>

namespace RMM_EXPORT rmm {
namespace rmm {
/**
* @addtogroup data_containers
* @{
Expand Down
2 changes: 1 addition & 1 deletion include/rmm/device_vector.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

#include <thrust/device_vector.h>

namespace RMM_EXPORT rmm {
namespace rmm {
/**
* @addtogroup thrust_integrations
* @{
Expand Down
2 changes: 1 addition & 1 deletion include/rmm/error.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <stdexcept>
#include <string>

namespace RMM_EXPORT rmm {
namespace rmm {

/**
* @brief Exception thrown when logical precondition is violated.
Expand Down
2 changes: 1 addition & 1 deletion include/rmm/exec_policy.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include <thrust/system/cuda/execution_policy.h>
#include <thrust/version.h>

namespace RMM_EXPORT rmm {
namespace rmm {
/**
* @addtogroup thrust_integrations
* @{
Expand Down
2 changes: 1 addition & 1 deletion include/rmm/logger.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include <iostream>
#include <string>

namespace RMM_EXPORT rmm {
namespace rmm {

namespace detail {

Expand Down
2 changes: 1 addition & 1 deletion include/rmm/prefetch.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

#include <cuda/std/span>

namespace RMM_EXPORT rmm {
namespace rmm {

/**
* @addtogroup utilities
Expand Down
2 changes: 1 addition & 1 deletion include/rmm/resource_ref.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

#include <cuda/memory_resource>

namespace RMM_EXPORT rmm {
namespace rmm {

/**
* @addtogroup memory_resources
Expand Down

0 comments on commit 8935ec3

Please sign in to comment.