The GitHub Actions job "CI" on tvm-ffi.git/tvmffi-streamline-access-path-repr 
has failed.
Run started by GitHub user tqchen (triggered by tqchen).

Head commit for run:
8610619653675292a2282305cbec338cfa6a5b54 / tqchen <[email protected]>
[REFL] Streamline AccessPath/AccessStep print format

AccessPath and AccessStep previously fell back to the generic dataclass
repr, which serialised the linked-list structure verbatim and was hard
to scan in error messages. Register a custom __ffi_repr__ for both so
the formatted output is a concise, human-readable path expression:

  <root>.config.layers[0][<missing:"weights">]

Per-step rendering:
  - root            -> "<root>"
  - attr            -> ".name"
  - array item      -> "[index]"
  - map item        -> "[<repr(key)>]"     (string keys get quoted)
  - missing attr    -> "[<missing:\"name\">]"
  - missing array   -> "[<missing:index>]"
  - missing map     -> "[<missing:<repr(key)>>]"

A single unit test covers a path that exercises every step kind.

Report URL: https://github.com/apache/tvm-ffi/actions/runs/26543227516

With regards,
GitHub Actions via GitBox


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to