Page MenuHomePhabricator

TOSA
Updated 1,192 Days AgoPublic

Version 14 of 21: You are viewing an older version of this document, as it appeared on Jan 13 2021, 11:17 AM.

Introduction

Tensor Operator Set Architecture (TOSA) provides a set of whole-tensor operations commonly employed by Deep Neural Networks. The intent is to enable a variety of implementations running on a diverse range of processors, with the results at the TOSA level consistent across those implementations. Applications or frameworks which target TOSA can therefore be deployed on a wide range of different processors, including SIMD CPUs, GPUs and custom hardware such as NPUs/TPUs, with defined accuracy and compatibility constraints. Most operators from the common ML frameworks (TensorFlow, PyTorch, etc.) should be expressible in TOSA. It is expected that there will be tools to lower from ML frameworks into TOSA.

Goals

  • A minimal and stable set of tensor-level operators to which machine learning framework operators can be reduced.
  • Full support for both quantized integer and floating-point content.
  • Precise functional description of the behavior of every operator, including the treatment of their numerical behavior in the case of precision, saturation, scaling, etc. as required by quantized datatypes.
  • Agnostic to any single high-level framework, compiler backend stack or particular target.
  • The detailed functional and numerical description enables precise code construction for a diverse range of targets – SIMD CPUs, GPUs and custom hardware such as NPUs/TPUs.

Specification

The TOSA Specification is written as AsciiDoc mark-up and developed in its raw mark-up form, managed through a git repository here: https://git.mlplatform.org/tosa/specification.git/. The specification is developed and versioned much like software is. While the mark-up is legible and can be read fairly easily in its raw form, it is recommended to build or “render” the mark-up into a PDF document, or similar. To do this, please follow the instructions in the README.md in the root of the specification repository. For convenience, you can view a PDF version of v0.21.0 here:

TOSA Reference Model & Test Generator

In addition to the TOSA specification document, there is also a reference model written as C code which implements the exact behaviour as set out in the specification. This reference implementation is intended to be the “golden reference” for other TOSA implementations to be compared against and incorporated into regression test suites and such. The reference model consumes a FlatBuffers serialization of the network subgraph generated by the TOSA Serialization Library, along with input tensors for placeholder nodes in NumPy format. By default, the model validates and evaluates the network subgraph, and writes out the resulting output tensors in NumPy format. Alongside the TOSA Reference Model there is also a comprehensive set of tools for generating unit tests which exercise the behaviour of the TOSA operators. The tests are created as TOSA operations serialized in the flatbuffer format with inputs created in files using the NumPy format, as used by the reference model. The git repo containing the Reference Model and test generator is here: https://git.mlplatform.org/tosa/reference_model.git. For details on how to build and use the TOSA Reference Model, review the README.md in the root of that repo.

Contributing to TOSA

TOSA is intended to be very open technology developed collaboratively with the community. As such, contributions to the Specification as well as the Reference Model, test generator, etc. are strongly encouraged and very welcome. The process for contributing to the Reference Model and related code is slightly different to the process for contributing to the TOSA Specification, owing mainly to the difference between a software and documentation.

Principles for New Operators

TOSA defines a set of primitive operators to which higher level operators can be lowered in a consistent way. To remain effective and efficient to implement the set of operators must be constrained to a reasonably small set of primitive operations out of which others can be constructed. The following principles govern how decisions are made about the addition of new operators within TOSA:

  • An operator shall be a primitive operation or building block that cannot be broken down into simpler whole tensor operations. If the operator can be broken down, then we should look at the component operators.
  • An operator shall be a usable as a component out of which more complex operations can be constructed. Single use operators have a high architectural cost and a more reusable version should be considered instead.
  • Precision should be appropriate for the input and output data types. Precision higher than that needed to calculate the result leads to extra implementation cost.
  • Numerical definition of common sub-operations should be consistent between operators (for example: value scaling). Consistent sub-operation definition reduces the operator implementation cost.
  • The valid input and output ranges for all operands shall be specified. Ranges are required to makes consistent (numerically agreeing) implementations possible.
  • Integer operators shall be implementable in a bit-exact form with good efficiency on CPU, GPU and hardware targets. Reduces implementation cost and gives consistent inference result.

Reference Model Contributions

Contributing to the Reference Model, unit test generator and related source code largely follows the same process as other projects hosted on MLPlatform.org - see https://www.mlplatform.org/contributing/. Unlike other projects on mlplatform.org, the TOSA Reference Model and related software is licensed under the Apache-2 licence. Likewise, contributions to those software components also need to be licensed under the Apache-2 license.

Specification Contributions

The TOSA Specification is released under a different kind of licence to the software, one which enables vendors to create completely independent implementations of the TOSA specification which are not derivatives of anything on mlplatform.org. This license is posted at the start of the TOSA Specification document (sources here). To enable vendors to implement the TOSA Specification in this way, contributions need to be provided under a different TOSA Specification Contributor Agreement.

Practically, contributions to the TOSA Specification are made by modifying the AsciiDoc markup of the specification. Those patches are then reviewed using Gerrit on https://review.mlplatform.org/ as usual. However, before uploading patches to a gerrit review, users must read and agree to the TOSA Specification Contributors License Agreement. This can be achieved by doing the following:

  • Login to Gerrit (http://review.mlplatform.org)
  • Navigate to User Settings
  • Open the "Agreements" section
  • Click the "New Contributor Agreement" link
  • Select the "TOSA" radio button
  • Open the link to the TOSA Specification and read
  • *If* you agree to these terms, type "I agree" in the text box and click "SUBMIT"
  • Note: You may get an error saying "Agreement already submitted.". This is harmless, please ignore it.
  • Start uploading patches to the specification!

Note: More significant contributions should be discussed on the MLPlatform.org's Discourse, under the "TOSA" Category. Decisions on accepting more significant changes will be made largely based on the principals laid out above. I.e. Adding new operators to TOSA which can be trivially decomposed into a sequence of existing TOSA operators are unlikely to be accepted! :-)

Last Author
TomCookseyArm
Last Edited
Jan 13 2021, 11:17 AM

Event Timeline

eric-k256 created this object.Oct 7 2020, 6:44 PM
eric-k256 edited the content of this document. (Show Details)Oct 8 2020, 3:19 PM
eric-k256 edited the content of this document. (Show Details)Oct 12 2020, 9:54 PM
TomCookseyArm edited the content of this document. (Show Details)Oct 16 2020, 2:14 PM
TomCookseyArm published a new version of this document.Oct 16 2020, 2:42 PM
TomCookseyArm edited the content of this document. (Show Details)Oct 16 2020, 2:55 PM
TomCookseyArm edited the content of this document. (Show Details)
TomCookseyArm edited the content of this document. (Show Details)Oct 16 2020, 4:56 PM
TomCookseyArm edited the content of this document. (Show Details)
TomCookseyArm edited the content of this document. (Show Details)
TomCookseyArm edited the content of this document. (Show Details)Oct 16 2020, 5:00 PM
TomCookseyArm published a new version of this document.Oct 19 2020, 3:56 PM
eric-k256 edited the content of this document. (Show Details)Nov 3 2020, 6:08 PM
TomCookseyArm edited the content of this document. (Show Details)Nov 10 2020, 8:21 PM
eric-k256 edited the content of this document. (Show Details)Nov 11 2020, 6:41 PM
TomCookseyArm edited the content of this document. (Show Details)Jan 13 2021, 11:17 AM
TomCookseyArm published a new version of this document.
TomCookseyArm edited the content of this document. (Show Details)Jan 14 2021, 3:44 PM
eric-k256 edited the content of this document. (Show Details)Mar 23 2021, 11:02 PM
eric-k256 edited the content of this document. (Show Details)Nov 5 2021, 10:48 PM
eric-k256 edited the content of this document. (Show Details)Nov 5 2021, 11:54 PM
eric-k256 edited the content of this document. (Show Details)Nov 16 2021, 9:42 PM
eric-k256 edited the content of this document. (Show Details)Jun 20 2022, 10:33 PM
eric-k256 edited the content of this document. (Show Details)Oct 7 2022, 4:28 PM