nir/instr_set: hash intrinsic sources

ministat (CSE only):
Difference at 95.0% confidence
	-9.80325 +/- 0.173089
	-41.4434% +/- 0.461972%
	(Student's t, pooled s = 0.0763653)

ministat (entire run):
Difference at 95.0% confidence
	-3.13667 +/- 0.61519
	-5.11107% +/- 0.990737%
	(Student's t, pooled s = 0.271416)

Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Reviewed-by: Matt Turner <mattst88@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6860>
This commit is contained in:
Rhys Perry 2020-08-18 16:07:32 +01:00 committed by Marge Bot
parent b8c31ac06d
commit a18c84ecce
1 changed files with 4 additions and 0 deletions

View File

@ -249,6 +249,10 @@ hash_intrinsic(uint32_t hash, const nir_intrinsic_instr *instr)
}
hash = XXH32(instr->const_index, info->num_indices * sizeof(instr->const_index[0]), hash);
for (unsigned i = 0; i < nir_intrinsic_infos[instr->intrinsic].num_srcs; i++)
hash = hash_src(hash, &instr->src[i]);
return hash;
}