Skip to content

Variable sized tensor inputs/outputs #299

Open
@Michael-F-Bryan

Description

@Michael-F-Bryan

Some models (e.g. YAMNet) support variable sized inputs. TensorFlow represents this by having a 1x1 input that gets resized manually at runtime to fit the desired input.

What this will probably require:

  • Update the Runefile to allow at most one unknown dimension in a tensor definition (e.g. u8[_, 256, 256, 3] for an arbitrary number of 256x256 RGB8 images)
  • During codegen, make sure the Rune uses a variable sized buffer (i.e. Vec<u8>) to hold the tensor
  • Figure out how a capability will communicate the size of the tensor it generates to the Rune
    • We can do this as part of rune build by inserting a special $outputs argument into each capability's arguments dictionary. That way the end implementation will know what output tensors have been requested in the Runefile

Metadata

Metadata

Assignees

No one assigned

    Labels

    area - codegenThe code gets generated when compiling a Runearea - runefileThe parsing and analysis of Runefilesarea - runtimeThe Rust Rune runtimecategory - enhancementNew feature or requesteffort - hardThis should be pretty simple to fix

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions