Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
BIG WIP: Engine.wrap + fixes
  • Loading branch information
gselzer committed Feb 11, 2025
commit ef0f1dfe093b83674d47b7320bb91e2aebab2ec6
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,8 @@ private static Optional<ConvertedOpInfo> postprocessIdentity(OpInfo info,
return Optional.empty();
}
// And only applies when the mutable index was "converted" with identity
if (Ops.info(preConverters.get(ioIndex)).names().contains(
"engine.identity"))
var names = Ops.info(preConverters.get(ioIndex)).names();
if (names.contains("engine.identity") || names.contains("engine.wrap"))
{
// In this case, we need neither a postprocessor nor a copier,
// because the mutable output was directly edited.
Expand Down
Loading