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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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_;
};