Remove unused using-declarations

PiperOrigin-RevId: 175611524
This commit is contained in:
A. Unique TensorFlower 2017-11-13 17:04:08 -08:00 committed by TensorFlower Gardener
parent 21d830086e
commit d44f37161d
3 changed files with 1 additions and 9 deletions

View File

@ -46,9 +46,6 @@ limitations under the License.
namespace xla {
namespace {
using tensorflow::gtl::nullopt;
using tensorflow::gtl::optional;
// Returns whether operand is a literal with the given value.
bool IsLiteralWithValue(const HloInstruction* operand, int8 value) {
return operand->opcode() == HloOpcode::kConstant &&

View File

@ -28,8 +28,6 @@ limitations under the License.
namespace tflite {
namespace {
using ::testing::ElementsAreArray;
class LSTMOpModel : public SingleOpModel {
public:
LSTMOpModel(int n_batch, int n_input, int n_cell, int n_output, bool use_cifg,

View File

@ -25,16 +25,13 @@ limitations under the License.
namespace tensorflow {
namespace grappler {
namespace {
using shape_inference::Dimension;
using shape_inference::DimensionHandle;
using shape_inference::InferenceContext;
using shape_inference::Shape;
using shape_inference::ShapeAndType;
using shape_inference::ShapeHandle;
namespace {
template <typename Handle>
struct HashHandle {
std::size_t operator()(const Handle& h) const { return h.Handle(); }