Changed InputColocationExemptionRegistry::ops_ to gtl::FlatSet<string>

instead of set<string>.

PiperOrigin-RevId: 268973789
This commit is contained in:
Yujing Zhang 2019-09-13 13:51:48 -07:00 committed by TensorFlower Gardener
parent f15c3b0d02
commit 4e329e4dd8
2 changed files with 3 additions and 5 deletions

View File

@ -27,8 +27,6 @@ InputColocationExemptionRegistry* InputColocationExemptionRegistry::Global() {
return registry;
}
const std::set<string>& InputColocationExemptionRegistry::Get() { return ops_; }
void InputColocationExemptionRegistry::Register(const string& op) {
auto it = ops_.find(op);
if (it != ops_.end()) {

View File

@ -15,9 +15,9 @@ limitations under the License.
#ifndef TENSORFLOW_CORE_COMMON_RUNTIME_INPUT_COLOCATION_EXEMPTION_REGISTRY_H_
#define TENSORFLOW_CORE_COMMON_RUNTIME_INPUT_COLOCATION_EXEMPTION_REGISTRY_H_
#include <set>
#include <string>
#include "tensorflow/core/lib/gtl/flatset.h"
#include "tensorflow/core/platform/types.h"
namespace tensorflow {
@ -40,13 +40,13 @@ class InputColocationExemptionRegistry {
static InputColocationExemptionRegistry* Global();
// Returns the set of ops exempt from the input colocation constraints.
const std::set<string>& Get();
const gtl::FlatSet<string>& Get() { return ops_; }
// Registers an op to be excluded from the input colocation constraints.
void Register(const string& op);
private:
std::set<string> ops_;
gtl::FlatSet<string> ops_;
};
namespace input_colocation_exemption_registration {