I installed NVIDIA Nsight Visual Studio Edition 2025.01 in Visual Studio 2022.
I want to debug code, but I can't debug with step over(F10), The debugger always stops at a location without a breakpoint.
I checked out the document, but I couldn't figure it out.
Here are some force-break code location:
__device__ __host__ TVector3(T e0, T e1, T e2) : x(e0), y(e1), z(e2) {}
template <typename T>
__device__ __host__ inline TVector3<T> operator+(const TVector3<T>& u, const TVector3<T>& v) {
return TVector3(u.x + v.x, u.y + v.y, u.z + v.z);
}