Skip to content

Commit

Permalink
Remove static in comment
Browse files Browse the repository at this point in the history
Variable will soon become non-static. Static information is unecessary.
  • Loading branch information
tcclevenger committed Jul 27, 2023
1 parent 0e97679 commit c893105
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/Cuda/Kokkos_Cuda_Instance.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ class CudaInternal {

// Using cudaAPI function/objects will be w.r.t. device 0 unless
// cudaSetDevice(device_id) is called with the correct device_id.
// The correct device_id is stored in the static variable
// The correct device_id is stored in the variable
// CudaInternal::m_cudaDev set in Cuda::impl_initialize(). It is not
// sufficient to call cudaSetDevice(m_cudaDev) during cuda initialization
// only, however, since if a user creates a new thread, that thread will be
Expand Down

0 comments on commit c893105

Please sign in to comment.