Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[one-optimize] Fuse Mul with FullyConnected layer #13528

Closed
wants to merge 48 commits into from

Commits on Jul 26, 2024

  1. [one-optimize] Fuse Mul with FullyConnected layer

    This commit introduces fuse_mul_with_fully_connected pass that combines FullyConnected and Mul into one node.
    
    ONE-DCO-1.0-Signed-off-by: Jan Iwaszkiewicz <[email protected]>
    jiwaszki committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    28d8089 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2024

  1. Configuration menu
    Copy the full SHA
    87774c5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4c7f5a9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cfcb68b View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2024

  1. Configuration menu
    Copy the full SHA
    e8b06b5 View commit details
    Browse the repository at this point in the history
  2. Fix codestyle

    jiwaszki committed Aug 2, 2024
    Configuration menu
    Copy the full SHA
    3bf2649 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2024

  1. Rename pass

    jiwaszki committed Aug 5, 2024
    Configuration menu
    Copy the full SHA
    d386541 View commit details
    Browse the repository at this point in the history
  2. Add luci tests with models

    jiwaszki committed Aug 5, 2024
    Configuration menu
    Copy the full SHA
    4180734 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    761d303 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2024

  1. Configuration menu
    Copy the full SHA
    fa4733b View commit details
    Browse the repository at this point in the history
  2. [luci/pass] Introduce FuseMulWithFullyConnectedPass

    This commit introduce FuseMulWithFullyConnectedPass which will fuse Mul to previous FullyConnected if possible.
    
    ONE-DCO-1.0-Signed-off-by: Jan Iwaszkiewicz <[email protected]>
    jiwaszki committed Aug 6, 2024
    Configuration menu
    Copy the full SHA
    40dcacf View commit details
    Browse the repository at this point in the history
  3. [one-cmds] Add an option for FuseMulWithFullyConnectedPass

    This commit adds one-cmd option for FuseMulWithFullyConnectedPass.
    
    ONE-DCO-1.0-Signed-off-by: Jan Iwaszkiewicz <[email protected]>
    jiwaszki committed Aug 6, 2024
    Configuration menu
    Copy the full SHA
    b717234 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. [circle2circle] Dredd test for FuseMulWithFullyConnectedPass

    This commit is adding circle2circle dredd test for FC + Mul fusion.
    
    ONE-DCO-1.0-Signed-off-by: Jan Iwaszkiewicz <[email protected]>
    jiwaszki committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    a568d25 View commit details
    Browse the repository at this point in the history
  2. [luci/pass] Value test for FuseMulWithFullyConnectedPass

    This commit adds value tests for FuseMulWithFullyConnectedPass.
    
    ONE-DCO-1.0-Signed-off-by: Jan Iwaszkiewicz <[email protected]>
    jiwaszki committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    d3246e3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f661561 View commit details
    Browse the repository at this point in the history
  4. Fix codestyle

    jiwaszki committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    85d9783 View commit details
    Browse the repository at this point in the history
  5. Fix order of cmds

    jiwaszki committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    51dd43c View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2024

  1. Remove default arguments

    jiwaszki committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    e3b354e View commit details
    Browse the repository at this point in the history
  2. Remove default args

    jiwaszki committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    ffc36e9 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2024

  1. Configuration menu
    Copy the full SHA
    835126a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    31e25ed View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    396d733 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d5ec1d8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8b17f47 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8d90e50 View commit details
    Browse the repository at this point in the history
  7. Remove random newline

    jiwaszki committed Aug 9, 2024
    Configuration menu
    Copy the full SHA
    715cdf7 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2024

  1. Configuration menu
    Copy the full SHA
    9e22b26 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    62a09a0 View commit details
    Browse the repository at this point in the history
  3. Resolve one-cmds duplication

    jiwaszki committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    1b6c71f View commit details
    Browse the repository at this point in the history
  4. Handle rank 0 and 1

    jiwaszki committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    8977ef9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    dbed1b9 View commit details
    Browse the repository at this point in the history
  6. Add new testcase

    jiwaszki committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    53aa943 View commit details
    Browse the repository at this point in the history
  7. Add new testcase

    jiwaszki committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    0c2bb71 View commit details
    Browse the repository at this point in the history
  8. [res/tfl_recipes] Add new Net_FullyConnected_Mul

    This commit extends Net_FullyConnectedMul tflite recipes with 'no bias' case.
    
    ONE-DCO-1.0-Signed-off-by: Jan Iwaszkiewicz <[email protected]>
    jiwaszki committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    e3ff517 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    d6e8b4a View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    b4ebd44 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    cddd353 View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2024

  1. Configuration menu
    Copy the full SHA
    678869c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    af3119d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b085181 View commit details
    Browse the repository at this point in the history
  4. Update tests

    jiwaszki committed Aug 13, 2024
    Configuration menu
    Copy the full SHA
    1aa79cc View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f02cb88 View commit details
    Browse the repository at this point in the history
  6. Fix codestyle

    jiwaszki committed Aug 13, 2024
    Configuration menu
    Copy the full SHA
    1bb278d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    27dec03 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2024

  1. Configuration menu
    Copy the full SHA
    79a2213 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7ea759a View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2024

  1. Configuration menu
    Copy the full SHA
    550e798 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bda96d8 View commit details
    Browse the repository at this point in the history