add TF_LOCKS_EXCLUDED to MutableDenseHashTable::MemoryUsed

This commit is contained in:
rangjiaheng 2020-05-27 13:27:18 +08:00
parent 8f31b06f53
commit b4062c71c6

View File

@ -557,7 +557,7 @@ class MutableDenseHashTable final : public LookupInterface {
TensorShape value_shape() const override { return value_shape_; }
int64 MemoryUsed() const override {
int64 MemoryUsed() const override TF_LOCKS_EXCLUDED(mu_) {
tf_shared_lock l(mu_);
return sizeof(MutableDenseHashTable) + key_buckets_.AllocatedBytes() +
value_buckets_.AllocatedBytes() + empty_key_.AllocatedBytes();