Skip to content

Commit

Permalink
Fix format again
Browse files Browse the repository at this point in the history
  • Loading branch information
pciolkosz committed Jul 24, 2024
1 parent 2278e29 commit 563f682
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cudax/include/cuda/experimental/__device/device.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
#ifndef _CUDAX__DEVICE_DEVICE
#define _CUDAX__DEVICE_DEVICE

#include <cuda_runtime_api.h>
#include <cuda/std/detail/__config>
#include <cuda_runtime_api.h>

#if defined(_CCCL_IMPLICIT_SYSTEM_HEADER_GCC)
# pragma GCC system_header
Expand All @@ -35,10 +35,11 @@ struct device
//! @brief Retrieve the native ordinal of the device
//!
//! @return int The native device ordinal held by the device object
_CCCL_NODISCARD constexpr int get() const noexcept {
_CCCL_NODISCARD constexpr int get() const noexcept
{
return __id;
}
};

}
} // namespace cuda::experimental
#endif

0 comments on commit 563f682

Please sign in to comment.