File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,6 @@ ptxla_cc_library(
149
149
"@xla//xla/client/lib:svd" ,
150
150
"@xla//xla/stream_executor:dnn" ,
151
151
"@tsl//tsl/platform:errors" ,
152
- "@tsl//tsl/lib/gtl:inlined_vector" ,
153
152
"@tsl//tsl/profiler/lib:traceme" ,
154
153
"@tsl//tsl/profiler/lib:traceme_encode" ,
155
154
"@tsl//tsl/platform:tensor_float_32_utils" ,
Original file line number Diff line number Diff line change 4
4
#include < string>
5
5
#include < string_view>
6
6
7
- #include " tsl/lib/gtl /inlined_vector.h"
7
+ #include " absl/container /inlined_vector.h"
8
8
#include " xla/client/xla_builder.h"
9
9
#include " xla/xla_data.pb.h"
10
10
@@ -97,7 +97,7 @@ struct ConvBackpropSpatialDimension {
97
97
// Computed dimensions for a backwards convolution.
98
98
struct ConvBackpropDimensions {
99
99
// Information about each spatial dimension.
100
- ::tsl::gtl ::InlinedVector<ConvBackpropSpatialDimension, 3 > spatial_dims;
100
+ ::absl ::InlinedVector<ConvBackpropSpatialDimension, 3 > spatial_dims;
101
101
102
102
// Batch size.
103
103
int64_t batch_size;
Original file line number Diff line number Diff line change 16
16
#include < utility>
17
17
#include < vector>
18
18
19
+ #include " absl/container/inlined_vector.h"
19
20
#include " absl/hash/hash.h"
20
21
#include " absl/types/span.h"
21
22
#include " torch_xla/csrc/runtime/types.h"
22
- #include " tsl/lib/gtl/inlined_vector.h"
23
23
#include " xla/client/xla_builder.h"
24
24
25
25
namespace torch_xla {
@@ -29,7 +29,7 @@ static const uint32_t default_hash_seed = (uint32_t)0x5a2d296e9;
29
29
class XlaNode ;
30
30
class LoweringContext ;
31
31
32
- using XlaOpVector = tsl::gtl ::InlinedVector<xla::XlaOp, 1 >;
32
+ using XlaOpVector = absl ::InlinedVector<xla::XlaOp, 1 >;
33
33
34
34
template <typename T>
35
35
using OutputMap =
You can’t perform that action at this time.
0 commit comments