8000 Automated Code Change · IBMZ-Linux-OSS-Python/tensorflow@e8fbdf6 · GitHub
[go: up one dir, main page]

Skip to content

Commit e8fbdf6

Browse files
Automated Code Change
PiperOrigin-RevId: 673233313
1 parent 915a688 commit e8fbdf6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tensorflow/c/kernels_test.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -867,7 +867,7 @@ TEST(TestKernel, TestInputAndOutputCount) {
867867

868868
Tensor t(tensorflow::uint8(123));
869869

870-
gtl::InlinedVector<TensorValue, 4> inputs;
870+
absl::InlinedVector<TensorValue, 4UL> inputs;
871871
// Simulate 2 inputs
872872
inputs.emplace_back(&t);
873873
inputs.emplace_back();
@@ -1350,7 +1350,7 @@ TEST_F(DeviceKernelOpTest, TestGetKernelInfo) {
13501350
AllocatorAttributes alloc_attrs;
13511351
p.output_attr_array = &alloc_attrs;
13521352

1353-
gtl::InlinedVector<TensorValue, 4> inputs;
1353+
absl::InlinedVector<TensorValue, 4UL> inputs;
13541354
Tensor t0(1.0f);
13551355
Tensor t1(2.0f);
13561356
Tensor t2_0(2.0f);
@@ -1424,7 +1424,7 @@ TEST_F(DeviceKernelOpTest, TestForwardInputOrAllocateOutput) {
14241424

14251425
Tensor t(123.0f);
14261426

1427-
gtl::InlinedVector<TensorValue, 4> inputs;
1427+
absl::InlinedVector<TensorValue, 4UL> inputs;
14281428
// GetFakeKernel requires a NodeDef with two inputs
14291429
inputs.emplace_back(&t);
14301430
inputs.emplace_back();

0 commit comments

Comments
 (0)
0