Fix typo in metal command encoder (#2471)

This commit is contained in:
Angelos Katharopoulos
2025-08-06 16:58:23 -07:00
committed by GitHub
parent 728d4db582
commit f2adb5638d

View File

@@ -104,7 +104,7 @@ struct CommandEncoder {
};
// Outputs of all kernels in the encoder including temporaries
std::unordered_set<const void*> outputs() {
std::unordered_set<const void*>& outputs() {
return all_outputs_;
};