Skip to content

Commit

Permalink
Switch for llvm-cpu instead of vmvx for const-eval
Browse files Browse the repository at this point in the history
Observed correctness errors with vmvx for const-eval with int8 types
so use llvm-cpu instead for now.
  • Loading branch information
qedawkins authored and github-actions[bot] committed Jul 13, 2023
1 parent bbeecea commit d70ebd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/src/iree/compiler/ConstEval/JitGlobals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ struct JitGlobalsPass : public JitGlobalsBase<JitGlobalsPass> {
: options(std::make_shared<CompileOptions>()),
compilePipeline("builtin.module") {
// Invoke IREE compilation flow.
options->executableOptions.targets.push_back("vmvx");
options->executableOptions.targets.push_back("llvm-cpu");
options->targetOptions.f32Extension = true;
options->targetOptions.f64Extension = false; // not yet implemented

Expand Down

0 comments on commit d70ebd9

Please sign in to comment.