Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion xls/dslx/ir_convert/convert_options.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ struct ConvertOptions {

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

// Force every DSLX function to use the implicit-token calling convention,
// regardless of what type inference determined.
Expand Down
2 changes: 1 addition & 1 deletion xls/dslx/ir_convert/ir_converter_main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ absl::Status RealMain(absl::Span<const std::string_view> paths) {
bool lower_to_proc_scoped_channels =
ir_converter_options.has_lower_to_proc_scoped_channels()
? ir_converter_options.lower_to_proc_scoped_channels()
: false;
: true;
bool force_implicit_token_calling_convention =
ir_converter_options.force_implicit_token_calling_convention();
bool emit_trace = ir_converter_options.emit_trace();
Expand Down
Loading