quesion 1 : 16-bit floating-point add, multiply, multiply-add can run 128 operations totally (x+y+z=128) or seperately (x=y=z=128) ?
quesion 2 : whether 16-bit floating-point Instructions use the same hardware as 32-bit floating-point Instructions, so these instructions can conflict.
You can achieve the 128 number with a mix of instructions (x+y+z=128). You do not get 128 instructions per SM per clock throughput for each of add, multiply and multiply add simultaneously.
I believe the answer here varies by GPU type.
My understanding is that cc6.0 may use the same hardware, but that the other cc have independent hardware for 16-bit and 32-bit
As far as I know this information (question 2) isn’t published, so YMMV and you would need to confirm as best you can via microbenchmarking or review of microbehchmarking.
claims that on pascal, instructions like HFMA2 and FFMA have the same latency, whereas the latency is different between those 2 on volta. This is a clue that on pascal they may be using the same unit whereas on volta they appear to be not using (exactly) the same hardware.