Skip to content

Commit

Permalink
Update ir.h
Browse files Browse the repository at this point in the history
  • Loading branch information
ManfeiBai committed Mar 5, 2024
1 parent 93cc844 commit 1576ac1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions torch_xla/csrc/ir.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "absl/hash/hash.h"
#include "absl/types/span.h"
#include "torch_xla/csrc/runtime/types.h"
#include "tsl/lib/gtl/inlined_vector.h"
#include "absl/container/inlined_vector.h"
#include "xla/client/xla_builder.h"

namespace torch_xla {
Expand All @@ -29,7 +29,7 @@ static const uint32_t default_hash_seed = (uint32_t)0x5a2d296e9;
class XlaNode;
class LoweringContext;

using XlaOpVector = tsl::gtl::InlinedVector<xla::XlaOp, 1>;
using XlaOpVector = absl::InlinedVector<xla::XlaOp, 1>;

template <typename T>
using OutputMap =
Expand Down

0 comments on commit 1576ac1

Please sign in to comment.