Skip to content

Commit

Permalink
Fork xla::ExecuteOptions into xla::ifrt::ExecuteOptions
Browse files Browse the repository at this point in the history
Only the fields that are currently being used by any IFRT implementation are copied to the fork. The only exception is `use_major_to_minor_data_layout_for_callbacks`. While this is being used as a passthrough in PjRt-IFRT, the meaning of this field is very specific to PjRt. Since this field is set to true in every IFRT invocation that cares about this field, this CL instead changes PjRt-IFRT to internally always set this field to true and avoid exposing this to IFRT.

In order to not break the IFRT Proxy's version compatibility, the forked `ExecuteOptionsProto` uses the same field tags as the original proto.

PiperOrigin-RevId: 679727285
  • Loading branch information
junwhanahn authored and Google-ML-Automation committed Sep 27, 2024
1 parent a36265a commit 3cfdd38
Show file tree
Hide file tree
Showing 9 changed files with 96 additions and 12 deletions.
7 changes: 7 additions & 0 deletions xla/python/ifrt/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ cc_library(
":attribute_map",
":device_proto_cc",
":dtype_proto_cc",
":execute_options_proto_cc",
":remap_plan_proto_cc",
":serdes",
":shape_proto_cc",
Expand All @@ -109,6 +110,7 @@ cc_library(
"@com_google_absl//absl/algorithm:container",
"@com_google_absl//absl/base",
"@com_google_absl//absl/base:core_headers",
"@com_google_absl//absl/container:flat_hash_set",
"@com_google_absl//absl/container:inlined_vector",
"@com_google_absl//absl/container:node_hash_set",
"@com_google_absl//absl/functional:function_ref",
Expand Down Expand Up @@ -165,6 +167,11 @@ xla_cc_test(
],
)

tf_proto_library(
name = "execute_options_proto",
srcs = ["execute_options.proto"],
)

xla_cc_test(
name = "future_test",
size = "small",
Expand Down
29 changes: 29 additions & 0 deletions xla/python/ifrt/executable.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,40 @@ limitations under the License.

#include "xla/python/ifrt/executable.h"

#include "absl/status/statusor.h"
#include "xla/python/ifrt/execute_options.pb.h"

namespace xla {
namespace ifrt {

char Executable::ID = 0;
char LoadedExecutable::ID = 0;

absl::StatusOr<xla::ifrt::ExecuteOptionsProto> ExecuteOptions::ToProto() const {
ExecuteOptionsProto proto;

proto.set_arguments_are_tupled(arguments_are_tupled);
proto.set_untuple_result(untuple_result);
proto.set_launch_id(launch_id);
proto.mutable_non_donatable_input_indices()->Add(
non_donatable_input_indices.begin(), non_donatable_input_indices.end());

return proto;
}

absl::StatusOr<xla::ifrt::ExecuteOptions> ExecuteOptions::FromProto(
const xla::ifrt::ExecuteOptionsProto& proto) {
ExecuteOptions options;

options.arguments_are_tupled = proto.arguments_are_tupled();
options.untuple_result = proto.untuple_result();
options.launch_id = proto.launch_id();
options.non_donatable_input_indices.insert(
proto.non_donatable_input_indices().begin(),
proto.non_donatable_input_indices().end());

return options;
}

} // namespace ifrt
} // namespace xla
37 changes: 35 additions & 2 deletions xla/python/ifrt/executable.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ limitations under the License.
#include <string>
#include <vector>

#include "absl/container/flat_hash_set.h"
#include "absl/status/statusor.h"
#include "absl/strings/string_view.h"
#include "absl/types/span.h"
Expand All @@ -33,6 +34,7 @@ limitations under the License.
#include "xla/python/ifrt/attribute_map.h"
#include "xla/python/ifrt/device.h"
#include "xla/python/ifrt/device_list.h"
#include "xla/python/ifrt/execute_options.pb.h"
#include "xla/python/ifrt/future.h"
#include "xla/tsl/concurrency/ref_count.h"

Expand Down Expand Up @@ -104,6 +106,38 @@ class Executable : public llvm::RTTIExtends<Executable, llvm::RTTIRoot> {
static char ID; // NOLINT
};

struct ExecuteOptions {
// If true, the client must pass a single IFRT array which contains all of the
// arguments as a single XLA tuple, otherwise each argument must be passed in
// its own IFRT array. May only be true if the executable was compiled with
// parameter_is_tupled_arguments==true.
bool arguments_are_tupled = false;

// If true, the computation must return a tuple, which will be destructured
// into its elements.
bool untuple_result = false;

// If non-zero, identifies this execution as part of a potentially
// multi-device launch. This can be used to detect scheduling errors, e.g. if
// multi-host programs are launched in different orders on different hosts,
// the launch IDs may be used by the runtime to detect the mismatch.
int32_t launch_id = 0;

// A set of indices denoting the input arrays that should not be donated. An
// input array may be non-donable, for example, if it is referenced more than
// once. Since such runtime information is not available at compile time, the
// compiler might mark the input as `may-alias`, which could lead IFRT to
// donate the input array when it should not. By defining this set of indices,
// a higher-level IFRT caller can instruct IFRT client not to donate specific
// input arrays.
absl::flat_hash_set<int> non_donatable_input_indices;

absl::StatusOr<ExecuteOptionsProto> ToProto() const;

static absl::StatusOr<ExecuteOptions> FromProto(
const ExecuteOptionsProto& proto);
};

// Wraps a computation that has been fully compiled and loaded for execution.
class LoadedExecutable
: public llvm::RTTIExtends<LoadedExecutable, llvm::RTTIRoot> {
Expand Down Expand Up @@ -176,8 +210,7 @@ class LoadedExecutable

// `LoadedExecutable` methods.

// Short-term alias.
using ExecuteOptions = ::xla::ExecuteOptions;
using ExecuteOptions = xla::ifrt::ExecuteOptions;

// Result from an execution.
struct ExecuteResult {
Expand Down
12 changes: 12 additions & 0 deletions xla/python/ifrt/execute_options.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
edition = "2023";

package xla.ifrt;

message ExecuteOptionsProto {
bool arguments_are_tupled = 1;
bool untuple_result = 2;
int32 launch_id = 3;
repeated int32 non_donatable_input_indices = 7;

reserved 4 to 6, 8;
}
1 change: 1 addition & 0 deletions xla/python/ifrt_proxy/common/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ tf_proto_library(
"//xla/pjrt:execute_options_proto",
"//xla/python/ifrt:attribute_map_proto",
"//xla/python/ifrt:dtype_proto",
"//xla/python/ifrt:execute_options_proto",
"//xla/python/ifrt:remap_plan_proto",
"//xla/python/ifrt:serdes_proto",
"//xla/python/ifrt:shape_proto",
Expand Down
4 changes: 2 additions & 2 deletions xla/python/ifrt_proxy/common/ifrt_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ syntax = "proto3";
package xla.ifrt.proxy;

import "google/protobuf/any.proto";
import "xla/pjrt/execute_options.proto";
import "xla/python/ifrt/attribute_map.proto";
import "xla/python/ifrt/dtype.proto";
import "xla/python/ifrt/execute_options.proto";
import "xla/python/ifrt/remap_plan.proto";
import "xla/python/ifrt/serdes.proto";
import "xla/python/ifrt/shape.proto";
Expand Down Expand Up @@ -428,7 +428,7 @@ message LoadedExecutableMetadataResponse {
message LoadedExecutableExecuteRequest {
fixed64 loaded_executable_handle = 1;
repeated fixed64 args_handles = 2;
xla.ExecuteOptionsProto execute_options = 3;
xla.ifrt.ExecuteOptionsProto execute_options = 3;
repeated int32 device_ids = 4;
}
message LoadedExecutableExecuteResponse {
Expand Down
11 changes: 7 additions & 4 deletions xla/python/pjrt_ifrt/pjrt_executable.cc
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,12 @@ PjRtLoadedExecutable::Execute(
const bool returned_future_supported =
pjrt_loaded_executable_->IsReturnedFutureSupported();

auto opts = options;
xla::ExecuteOptions opts;
opts.arguments_are_tupled = options.arguments_are_tupled;
opts.untuple_result = options.untuple_result;
opts.launch_id = options.launch_id;
opts.use_major_to_minor_data_layout_for_callbacks = true;
opts.non_donatable_input_indices = options.non_donatable_input_indices;

if (!all_loaded_host_callbacks_->empty() && !returned_future_supported) {
return Internal(
Expand All @@ -565,9 +570,7 @@ PjRtLoadedExecutable::Execute(
contexts.push_back(CreateHostCallbackStateAndAppendSendRecvCallbacks(
host_send_recv_callback->host_callback(),
/*host_memory_for_device_manager=*/nullptr, send_callbacks,
recv_callbacks,
/*use_major_to_minor_data_layout_for_callbacks=*/
options.use_major_to_minor_data_layout_for_callbacks));
recv_callbacks, opts.use_major_to_minor_data_layout_for_callbacks));
}
}
opts.send_callbacks = host_callback_states->send_callbacks;
Expand Down
3 changes: 1 addition & 2 deletions xla/python/py_executable.cc
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ PyLoadedExecutable::PyLoadedExecutable(
VLOG(1) << "Fingerprint for executable " << ifrt_loaded_executable_->name()
<< ": " << *fingerprint_;
}
options_.use_major_to_minor_data_layout_for_callbacks = true;
}

PyLoadedExecutable::~PyLoadedExecutable() {
Expand Down Expand Up @@ -203,7 +202,7 @@ void PopulateExecuteShardedResults(

template <typename ArgT, typename ArgAdapter = ShardedBufferAdapter<ArgT>>
absl::StatusOr<PyExecuteResults> ExecuteShardedOnLocalDevicesInternal(
const ExecuteOptions& options, const nb_class_ptr<PyClient>& client,
const ifrt::ExecuteOptions& options, const nb_class_ptr<PyClient>& client,
ifrt::LoadedExecutable* ifrt_loaded_executable, absl::Span<const ArgT> args,
std::optional<std::vector<PjRtFuture<>>>& returned_futures,
bool attach_status_to_results) {
Expand Down
4 changes: 2 additions & 2 deletions xla/python/py_executable.h
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ class PyLoadedExecutable {
return exec->shared_ptr_pjrt_loaded_executable();
}

const ExecuteOptions& options() const { return options_; }
const ifrt::ExecuteOptions& options() const { return options_; }
const std::optional<std::string>& fingerprint() const { return fingerprint_; }

// Keep `obj` alive as long as PyLoadedExecutable.
Expand All @@ -246,7 +246,7 @@ class PyLoadedExecutable {
std::optional<std::string> fingerprint_;

// The options to pass to `executable_.Execute`.
ExecuteOptions options_;
ifrt::ExecuteOptions options_;

// Python objects to keep alive as requested by user.
std::vector<nanobind::object> keepalives_;
Expand Down

0 comments on commit 3cfdd38

Please sign in to comment.