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

[Relay] Expose qnn ops directly from relay.qnn module #15928

Merged
merged 3 commits into from
Oct 17, 2023

Commits on Oct 13, 2023

  1. [Relay] Expose qnn ops directly from relay.qnn module

    When we access `nn` ops in relay, we can directly access them as
    `relay.nn.<op>` where `<op>` can be any nn op like `conv2d`,
    `avg_pool2d`, etc.
    
    When we access `qnn` ops, we need to access them as `relay.qnn.op.<op>`
    as they're not exposed to the `relay.qnn` module. This change tries to
    add that.
    quic-sanirudh committed Oct 13, 2023
    Configuration menu
    Copy the full SHA
    82f23c5 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2023

  1. Configuration menu
    Copy the full SHA
    804426d View commit details
    Browse the repository at this point in the history
  2. Fix lint errors

    quic-sanirudh committed Oct 16, 2023
    Configuration menu
    Copy the full SHA
    9ca1f75 View commit details
    Browse the repository at this point in the history