No. Again, utilization kernel utilization only reports the utilization of that specific kernel. What will probably be reflected in the utilization report is the LSU that is needed in order to access global memory in each kernel. So one thing is if you have
__kernel k1(__global int* A) and __kernel k1_noarg()
Utilization reports will show k1 having more resources due to the additional resources needed to access global memory. Global memory is typically DDR and so is off chip and the FPGA does not utilize or have any control over global memory other than have hardware to access it.