Skip to content

Commit

Permalink
Fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
skottmckay committed Jul 22, 2024
1 parent 7b63935 commit ec2f464
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ Status SliceOpBuilder::AddToModelBuilderImpl(ModelBuilder& model_builder, const
auto end = model_builder.AddConstant(op->type(), "end", AsSpan(compute_metadata.ends_));
auto stride = model_builder.AddConstant(op->type(), "stride", AsSpan(compute_metadata.steps_));
auto begin_mask = model_builder.AddConstant(op->type(), "begin_mask", AsSpan(begin_mask_values));
auto end_mask = model_builder.AddConstant(op->type(), "begin", AsSpan(end_mask_values));
auto end_mask = model_builder.AddConstant(op->type(), "end_mask", AsSpan(end_mask_values));

AddOperationInput(*op, "x", input_defs[0]->Name());
AddOperationInput(*op, "begin", begin);
Expand Down

0 comments on commit ec2f464

Please sign in to comment.