blob: 2b93b6b2f8702ccfbc191072054278f7f732dc5a [file] [log] [blame]
/* Copyright 2018 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/core/framework/function_handle_cache.h"
#include "tensorflow/core/lib/gtl/map_util.h"
#include "tensorflow/core/lib/random/random.h"
#include "tensorflow/core/lib/strings/stringprintf.h"
namespace tensorflow {
namespace data {
FunctionHandleCache::FunctionHandleCache(FunctionLibraryRuntime* lib)
: lib_(lib), state_handle_(strings::Printf("%lld", random::New64())) {}
FunctionHandleCache::~FunctionHandleCache() {
Status s = Clear();
if (!s.ok()) {
LOG(ERROR) << "Failed to clear function handle cache: " << s.ToString();
}
}
Status FunctionHandleCache::Instantiate(
const string& function_name, AttrSlice attrs,
FunctionLibraryRuntime::InstantiateOptions options,
FunctionLibraryRuntime::Handle* handle) {
string key = Canonicalize(function_name, attrs, options);
FunctionLibraryRuntime::Handle h;
{
tf_shared_lock l(mu_);
h = gtl::FindWithDefault(handles_, key, kInvalidHandle);
}
if (h == kInvalidHandle) {
options.state_handle = state_handle_;
TF_RETURN_IF_ERROR(
lib_->Instantiate(function_name, attrs, options, handle));
mutex_lock l(mu_);
handles_[key] = *handle;
} else {
*handle = h;
}
return Status::OK();
}
Status FunctionHandleCache::Clear() {
mutex_lock l(mu_);
for (auto entry : handles_) {
TF_RETURN_IF_ERROR(lib_->ReleaseHandle(entry.second));
}
handles_.clear();
return Status::OK();
}
} // namespace data
} // namespace tensorflow