Memory coalescing and nvprof results on NVIDIA Pascal
问题 I am running a memory coalescing experiment on Pascal and getting unexpected nvprof results. I have one kernel that copies 4 GB of floats from one array to another one. nvprof reports confusing numbers for gld_transactions_per_request and gst_transactions_per_request . I ran the experiment on a TITAN Xp and a GeForce GTX 1080 TI. Same results. #include <stdio.h> #include <cstdint> #include <assert.h> #define N 1ULL*1024*1024*1024 #define gpuErrchk(ans) { gpuAssert((ans), __FILE__, __LINE__);