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

Change Adjoints to be ComponentArrays #170

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Commits on Oct 23, 2022

  1. Change Adjoints to be ComponentArray

    This PR aims to avoid issues like:
    ```
    using ComponentArrays
    A = ComponentMatrix(ones(2, 2), Axis(:a, :b), FlatAxis())
    A[:b, :] # works
    A'[:, :b] # fails!
    ```
    by wrapping adjoint operations in the underlying data of the ComponentArray structure.
    
    By not having to care about adjoints of ComponentArray, we arguably also reduce overall cognitive load.
    nrontsis committed Oct 23, 2022
    Configuration menu
    Copy the full SHA
    c1af7db View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2022

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

Commits on Nov 18, 2022

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