18 #ifndef TENSORFLOW_COMPILER_XLA_SERVICE_VERSIONED_COMPUTATION_HANDLE_H_ 19 #define TENSORFLOW_COMPILER_XLA_SERVICE_VERSIONED_COMPUTATION_HANDLE_H_ 23 #include "tensorflow/compiler/xla/types.h" 24 #include "tensorflow/compiler/xla/xla_data.pb.h" 41 using Version = int64;
43 ComputationHandle handle;
46 string ToString()
const;
48 return (handle.handle() == other.handle.handle()) &&
49 (version == other.version);
52 return ((handle.handle() < other.handle.handle()) ||
53 ((handle.handle() == other.handle.handle()) &&
54 (version < other.version)));
58 std::ostream& operator<<(std::ostream& out,
63 #endif // TENSORFLOW_COMPILER_XLA_SERVICE_VERSIONED_COMPUTATION_HANDLE_H_ Definition: versioned_computation_handle.h:37
namespace for xla
Definition: client_library.cc:26