Skip to content

Commit e9917bf

Browse files
dplassgitcopybara-github
authored andcommitted
Automated rollback of commit 0fb5510.
PiperOrigin-RevId: 871286235
1 parent 6853d1b commit e9917bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

xls/dslx/ir_convert/convert_options.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ struct ConvertOptions {
6666

6767
// Should we generate proc-scoped channels without global channels as an
6868
// intermediate step? See https://github.com/google/xls/issues/2078
69-
bool lower_to_proc_scoped_channels = false;
69+
bool lower_to_proc_scoped_channels = true;
7070

7171
// Force every DSLX function to use the implicit-token calling convention,
7272
// regardless of what type inference determined.

xls/dslx/ir_convert/ir_converter_main.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ absl::Status RealMain(absl::Span<const std::string_view> paths) {
103103
bool lower_to_proc_scoped_channels =
104104
ir_converter_options.has_lower_to_proc_scoped_channels()
105105
? ir_converter_options.lower_to_proc_scoped_channels()
106-
: false;
106+
: true;
107107
bool force_implicit_token_calling_convention =
108108
ir_converter_options.force_implicit_token_calling_convention();
109109
bool emit_trace = ir_converter_options.emit_trace();

0 commit comments

Comments
 (0)