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

[TIR][USMP] Add a parallel to serial for loop converter pass #8469

Merged

Commits on Aug 6, 2021

  1. [TIR][USMP] Add a parallel to serial for loop converter pass

    This is an optional pass to convert all parallel for loops in TIR
    to serial ones for different reasons such as executor
    does not support parallel launch of for loops (e.g., AoT)
    or allocating space for parallel for loops might not
    be desired.
    
    * Additionally adding FFI scaffolding for USMP
    
    Change-Id: Id5e8ccb90140d2d3ae113b20a3ca152a54497c45
    manupak committed Aug 6, 2021
    Configuration menu
    Copy the full SHA
    bfcac8c View commit details
    Browse the repository at this point in the history
  2. [TIR][USMP] Add a parallel to serial for loop converter pass

    * remove unused import
    
    Change-Id: I29d5fdec92120418596f9dba1d6630f65620a603
    manupak committed Aug 6, 2021
    Configuration menu
    Copy the full SHA
    2b9f5d7 View commit details
    Browse the repository at this point in the history
  3. [TIR][USMP] Add a parallel to serial for loop converter pass

    *moved the pass to tir namespace
    
    Change-Id: I74720ca2f566066b3a4f22f504d8f0f684c99dc2
    manupak committed Aug 6, 2021
    Configuration menu
    Copy the full SHA
    3dac799 View commit details
    Browse the repository at this point in the history
  4. [TIR][USMP] Add a parallel to serial for loop converter pass

    * fixed docstring
    
    Change-Id: I73bb9867fe2ed6a86f65666493c5c6e3edf87b49
    manupak committed Aug 6, 2021
    Configuration menu
    Copy the full SHA
    a424b9a View commit details
    Browse the repository at this point in the history
  5. [TIR][USMP] Add a parallel to serial for loop converter pass

    * fixed mypy lint error
    
    Change-Id: I226ef27d5536674fbe4b2d2c6ff47b8cb3b41431
    manupak committed Aug 6, 2021
    Configuration menu
    Copy the full SHA
    26571f8 View commit details
    Browse the repository at this point in the history