Merge pull request #71775 from jkshtj/main

[Autodiff] Adds part of the Autodiff specific closure-specialization optimization pass
This commit is contained in:
Kshitij Jain
2024-05-10 08:51:01 -07:00
committed by GitHub
38 changed files with 3682 additions and 91 deletions

View File

@@ -2610,6 +2610,9 @@ static bool ParseSILArgs(SILOptions &Opts, ArgList &Args,
Opts.NoAllocations = Args.hasArg(OPT_no_allocations);
Opts.EnableExperimentalSwiftBasedClosureSpecialization =
Args.hasArg(OPT_enable_experimental_swift_based_closure_specialization);
return false;
}