You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
does not work. It seems there are multiple reasons:
First, the + syntax is not understood.
Second, parsing from enum string names is case-sensitive in the second path.
Third, parsing from enum string names appears to be buggy as this branch does not return success:
This means that, for example, setting
with
XLA_FLAGS
works, but passing it viadoes not work. It seems there are multiple reasons:
First, the
+
syntax is not understood.Second, parsing from enum string names is case-sensitive in the second path.
Third, parsing from enum string names appears to be buggy as this branch does not return success:
xla/xla/pjrt/pjrt_executable.cc
Lines 681 to 687 in 5131caa
(also, integer enum values are not validated)
It also does not seem to be possible to set multiple values via
compiler_options
, whereasXLA_FLAGS
supports this using a comma-separated format.These two paths should support the same syntax.
The text was updated successfully, but these errors were encountered: