Skip to content

Commit

Permalink
#0: update unpad doc for slice generality
Browse files Browse the repository at this point in the history
  • Loading branch information
ntarafdar committed May 28, 2024
1 parent 61aa564 commit 5ed51dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tt_eager/tt_lib/csrc/tt_lib_bindings_tensor_dm_ops.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -300,8 +300,8 @@ namespace tt::tt_metal::detail{
:header: "Argument", "Description", "Data type", "Valid range", "Required"
"input", "Input tensor", "Tensor", "", "Yes"
"output_tensor_start", "Start indices of input tensor", "List[int[4]]", "Must be all 0s", "Yes"
"output_tensor_end", "End indices of input tensor in output tensor", "List[int[4]]", "Values along each dim must be < input_tensor_shape[i]", "Yes"
"output_tensor_start", "Start indices of input tensor", "List[int[tensor rank]]", "Values along each dim must be < input_tensor_shape[i]", "Yes"
"output_tensor_end", "End indices of input tensor in output tensor", "List[int[tensor rank]]", "Values along each dim must be < input_tensor_shape[i]", "Yes"
"pad_value", "Value to pad input tensor", "float", "", "Yes"
"output_mem_config", "Layout of tensor in TT Accelerator device memory banks", "MemoryConfig", "Default is interleaved in DRAM", "No"
)doc");
Expand Down

0 comments on commit 5ed51dc

Please sign in to comment.