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

Extend strides for ReshapedArray with strided parent. #44507

Merged
merged 4 commits into from
Jul 5, 2022

Commits on May 25, 2022

  1. Extend strides(::ReshapedArray) with non-contiguous strided parent

    Use `Base.merge_adjacent_dim` to perform vector layout check before BLAS call.
    
    style clean
    N5N3 committed May 25, 2022
    Configuration menu
    Copy the full SHA
    084b88f View commit details
    Browse the repository at this point in the history
  2. Make sure strides(::StridedReinterpretArray) calls size_to_strides

    It turns out `strides(a::StridedReinterpretArray)` won't call `Base.size_to_strides` anymore after JuliaLang#44027.
    As it is dispatched to `strides(::NonReshapedReinterpretArray)`/`strides(::ReshapedReinterpretArray)`.
    This commit fix that regression.
    N5N3 committed May 25, 2022
    Configuration menu
    Copy the full SHA
    b8e5586 View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2022

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

Commits on Jul 4, 2022

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