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

Update aten operators #46

Merged
merged 14 commits into from
Nov 15, 2023
Merged

Update aten operators #46

merged 14 commits into from
Nov 15, 2023

Commits on Oct 24, 2023

  1. Update aten.hardtanh support

    Add converter for hardtanh similar to that of clamp
    TedThemistokleous committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    e237c6e View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2023

  1. Add converter for harswish activation

    Had to add my owwn migraphx converter as the order of value return to clip would fail the test
    TedThemistokleous committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    e9fe731 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b07ad2e View commit details
    Browse the repository at this point in the history
  3. Fix names for selu & softsign acc_ops converters

    Was breaking when trying to use elu converter for aten elu converter op
    TedThemistokleous committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    7d75420 View commit details
    Browse the repository at this point in the history
  4. Add elu aten converter op

    - Test for both non parameterize and parametertized for alpha/default values
    TedThemistokleous committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    bb8ff6f View commit details
    Browse the repository at this point in the history
  5. Add aten.max for max operator

    Handle getting max value from input tensor.
    TedThemistokleous committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    22f15e3 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2023

  1. Configuration menu
    Copy the full SHA
    b154ac2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d72b455 View commit details
    Browse the repository at this point in the history
  3. Add support and aten op for torch.min

    Similar to the onnx reduce_min operator, implimentatin is similar to that of mean, max and map to similar reduce ops in MIGraphX.
    
    This one is a freebie when doing max
    TedThemistokleous committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    2fdf562 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2023

  1. Configuration menu
    Copy the full SHA
    020c5d9 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2023

  1. Add fx/dynamo changes for argmin op

    Required if we want to support min() operator down the road.
    
    Added converter for fx and dynamo in similar vein as the argmax function.
    
    Also added unit tests
    TedThemistokleous committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    66d3549 View commit details
    Browse the repository at this point in the history
  2. Fix acc op and converters for max/min ops

    Updated unit tests as well
    TedThemistokleous committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    417d975 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2023

  1. Fix aten op for max/min

    added changes to unit tests and fix operators to handle multi input args correctly.
    TedThemistokleous committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    f992c01 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2023

  1. Changes based on review comments

    - remove print in stack
    - merge argmin argmax in testing
    - rename test_leak_relu -> test_single_param_activation_funcs
    - Add default for min dim=None
    TedThemistokleous committed Nov 15, 2023
    Configuration menu
    Copy the full SHA
    f0fc8d4 View commit details
    Browse the repository at this point in the history