commit | e143ce796a9c96b44be8ef902fcdcf483739acb5 | [log] [tgz] |
---|---|---|
author | Ben Vanik <benvanik@google.com> | Mon Nov 22 12:47:22 2021 -0800 |
committer | GitHub <noreply@github.com> | Mon Nov 22 12:47:22 2021 -0800 |
tree | 04350b03e2fe5456c815595c1c174cfd5609148b | |
parent | 658cf6c8a48d155259f3bb08a536cc47f1d50b78 [diff] |
Turning on streams by default. (#7718)
diff --git a/iree/compiler/Translation/IREEVM.cpp b/iree/compiler/Translation/IREEVM.cpp index b031247..e8ef7ec 100644 --- a/iree/compiler/Translation/IREEVM.cpp +++ b/iree/compiler/Translation/IREEVM.cpp
@@ -35,7 +35,7 @@ static llvm::cl::opt<bool> *enableFlag = new llvm::cl::opt<bool>{ "iree-experimental-streams", llvm::cl::desc("Enables experimental stream dialect pipelines."), - llvm::cl::init(false), + llvm::cl::init(true), }; return *enableFlag; }