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

Fixing interpolate on uint8 unsqueezed 3D CL tensor #100258

Closed

Commits on May 3, 2023

  1. Fixing interpolate on uint8 unsqueezed 3D CL tensor

    Description:
    
    - Fixed memory format issue:
    
    When input is channels last 4d tensor that was produced as following
    ```
    t = torch.ones(1, 3, 32, 32).contiguous(memory_format=torch.channels_last)
    t = t[0]
    t = t[None, ...]
    ```
    upsampling will produce output with channels first memory format but
    our avx code does not take that into account.
    
    - Also renamed needs_unpacking by skip_unpacking
    vfdev-5 committed May 3, 2023
    Configuration menu
    Copy the full SHA
    45b385a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5e1bf10 View commit details
    Browse the repository at this point in the history
  3. Addressed PR review comments

    vfdev-5 committed May 3, 2023
    Configuration menu
    Copy the full SHA
    39d59f6 View commit details
    Browse the repository at this point in the history