Skip to content

Commit

Permalink
Automated Code Change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 624401627
  • Loading branch information
tensorflower-gardener committed Apr 13, 2024
1 parent 7cccea5 commit f6e86cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions third_party/xla/xla/tests/multiple_devices_on_host_test.cc
Expand Up @@ -37,7 +37,7 @@ absl::StatusOr<XlaComputation> BuildComputation() {
void CompileAndExecute(
LocalExecutable* executable, int device_ordinal, LocalClient* client,
absl::Mutex* results_mutex,
std::vector<std::pair<int, StatusOr<ScopedShapedBuffer>>>* results) {
std::vector<std::pair<int, absl::StatusOr<ScopedShapedBuffer>>>* results) {
xla::ExecutableRunOptions execute_options;
execute_options.set_intra_op_thread_pool(
client->backend().eigen_intra_op_thread_pool_device());
Expand Down Expand Up @@ -72,7 +72,7 @@ void TestWithDeviceCount(const int device_count) {
std::unique_ptr<LocalExecutable> executable = std::move(executables[0]);
std::vector<tsl::Thread*> threads;
absl::Mutex results_mutex;
std::vector<std::pair<int, StatusOr<ScopedShapedBuffer>>> results;
std::vector<std::pair<int, absl::StatusOr<ScopedShapedBuffer>>> results;
tsl::Env* env = tsl::Env::Default();
for (int device_ordinal = 0; device_ordinal < device_count;
device_ordinal++) {
Expand Down

0 comments on commit f6e86cd

Please sign in to comment.