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

Create a base LKokkos new device API backend. #810

Merged
merged 113 commits into from
Sep 4, 2024

Commits on Jul 22, 2024

  1. Configuration menu
    Copy the full SHA
    93a52bf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    feca914 View commit details
    Browse the repository at this point in the history
  3. Apply format

    LuisAlfredoNu committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    5ccf20c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bcf961e View commit details
    Browse the repository at this point in the history
  5. Merge branch 'kokkosNewAPI_backend' of github.com:PennyLaneAI/pennyla…

    …ne-lightning into kokkosNewAPI_backend
    LuisAlfredoNu committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    5701cc5 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2e4e668 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3ee9669 View commit details
    Browse the repository at this point in the history
  8. Apply format

    LuisAlfredoNu committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    0e717f6 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    42b6714 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2024

  1. Configuration menu
    Copy the full SHA
    27c7ebc View commit details
    Browse the repository at this point in the history
  2. Apply format

    LuisAlfredoNu committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    fd02214 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2024

  1. apply format

    LuisAlfredoNu committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    14b4964 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    369ac0e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    04283f9 View commit details
    Browse the repository at this point in the history
  4. Apply suggestions from code review

    Co-authored-by: Amintor Dusko <[email protected]>
    LuisAlfredoNu and AmintorDusko authored Jul 24, 2024
    Configuration menu
    Copy the full SHA
    8d40c14 View commit details
    Browse the repository at this point in the history
  5. Fix spelling error

    Co-authored-by: Amintor Dusko <[email protected]>
    LuisAlfredoNu and AmintorDusko authored Jul 24, 2024
    Configuration menu
    Copy the full SHA
    44751ee View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d17059d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    e8de485 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    79b6bbe View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    f34100b View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    bcd323e View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2024

  1. Configuration menu
    Copy the full SHA
    a54ab3f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    39fb65f View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2024

  1. Configuration menu
    Copy the full SHA
    8dc5004 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    90d1d6e View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2024

  1. Add the simulate class for the new device (#817)

    ### Before submitting
    
    Please complete the following checklist when submitting a PR:
    
    - [X] All new features must include a unit test.
    If you've fixed a bug or added code that should be tested, add a test to
    the
          [`tests`](../tests) directory!
    
    - [X] All new functions and code must be clearly commented and
    documented.
    If you do make documentation changes, make sure that the docs build and
          render correctly by running `make docs`.
    
    - [X] Ensure that the test suite passes, by running `make test`.
    
    - [ ] Add a new entry to the `.github/CHANGELOG.md` file, summarizing
    the
          change, and including a link back to the PR.
    
    - [X] Ensure that code is properly formatted by running `make format`. 
    
    When all the above are checked, delete everything above the dashed
    line and fill in the pull request template.
    
    
    ------------------------------------------------------------------------------------------------------------
    
    **Context:**
    Migrate the lightning.kokkos device to the new device API.
    
    **Description of the Change:**
    The 'simulate' method is necessary to achieve full functionality with
    the new device API.
    We are going to follow the same recipe used with LightningQubit.
    
    **Benefits:**
    Add one of the essential methods for the new device API into
    LightningKokkos.
    
    **Possible Drawbacks:**
    
    **Related GitHub Issues:**
    ## Partial / Freezzed PR ⚠️ ❄️
    
    To make a smooth integration of LightningKokkos with the new device API,
    we set the branch `kokkosNewAPI_backend` as the base branch target for
    this development.
    
    The branch `kokkosNewAPI_backend` has the mock of all classes and
    methods necessary for the new API. Also, several tests were disabled
    with
    
    ``` python
    if device_name == "lightning.kokkos":
        pytest.skip("Kokkos new API in WIP.  Skipping.",allow_module_level=True)
    ```
    
    Additionally, the CI testing from PennyLane for LKokkos is temporally
    disabled through commenting the following lines in `.github/workflows`
    files
    ``` yml
    : # pl-device-test --device ${DEVICENAME} --skip-ops --shots=20000 $COVERAGE_FLAGS --cov-append
    : # pl-device-test --device ${DEVICENAME} --shots=None --skip-ops $COVERAGE_FLAGS --cov-append
    ```
    
    However, these tests will unblocked as the implementation progresses.
    
    After all the developments for integrating LightningKokkos with the new
    API have been completed then the PR will be open to merge to master
    
    [sc-68801]
    
    ---------
    
    Co-authored-by: Vincent Michaud-Rioux <[email protected]>
    Co-authored-by: Ali Asadi <[email protected]>
    3 people authored Jul 30, 2024
    Configuration menu
    Copy the full SHA
    80277d9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a15b018 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    09d02dc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    06a8d2b View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2024

  1. Configuration menu
    Copy the full SHA
    aa052ad View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    180a065 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2024

  1. Configuration menu
    Copy the full SHA
    6eb6eba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    319cacc View commit details
    Browse the repository at this point in the history
  3. Add the support class for the Adjoint Jacobian to the new device (#829)

    ### Before submitting
    
    Please complete the following checklist when submitting a PR:
    
    - [X] All new features must include a unit test.
    If you've fixed a bug or added code that should be tested, add a test to
    the
          [`tests`](../tests) directory!
    
    - [X] All new functions and code must be clearly commented and
    documented.
    If you do make documentation changes, make sure that the docs build and
          render correctly by running `make docs`.
    
    - [X] Ensure that the test suite passes, by running `make test`.
    
    - [ ] Add a new entry to the `.github/CHANGELOG.md` file, summarizing
    the
          change, and including a link back to the PR.
    
    - [X] Ensure that code is properly formatted by running `make format`. 
    
    When all the above are checked, delete everything above the dashed
    line and fill in the pull request template.
    
    
    ------------------------------------------------------------------------------------------------------------
    
    **Context:**
    Migrate the lightning.kokkos device to the new device API.
    
    **Description of the Change:**
    The 'jacobian' and vjp` methods are necessary to achieve full
    functionality with the new device API.
    We are going to follow the same recipe used with LightningQubit.
    
    **Benefits:**
    Add two of the essential methods for the new device API into
    LightningKokkos.
    
    **Possible Drawbacks:**
    
    **Related GitHub Issues:**
    ## Partial / Freezzed PR ⚠️ ❄️
    
    To make a smooth integration of LightningKokkos with the new device API,
    we set the branch kokkosNewAPI_backend as the base branch target for
    this development.
    
    The branch kokkosNewAPI_backend has the mock of all classes and methods
    necessary for the new API. Also, several tests were disabled with
    
    ```python
    if device_name == "lightning.kokkos":
        pytest.skip("Kokkos new API in WIP.  Skipping.",allow_module_level=True)
    ```
    
    Additionally, the CI testing from PennyLane for LKokkos is temporally
    disabled through commenting on the following lines in .github/workflows
    files
    
    ```bash
    : # pl-device-test --device ${DEVICENAME} --skip-ops --shots=20000 $COVERAGE_FLAGS --cov-append
    : # pl-device-test --device ${DEVICENAME} --shots=None --skip-ops $COVERAGE_FLAGS --cov-append
    ```
    
    However, these tests will unblocked as the implementation progresses.
    
    After all the developments for integrating LightningKokkos with the new
    API have been completed then the PR will be open to merging to master
    
    [sc-68808] [sc-68814]
    
    ---------
    
    Co-authored-by: Vincent Michaud-Rioux <[email protected]>
    Co-authored-by: Ali Asadi <[email protected]>
    3 people authored Aug 2, 2024
    Configuration menu
    Copy the full SHA
    5b99da7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3eea0d1 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2024

  1. Configuration menu
    Copy the full SHA
    35bcab6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3588b9d View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2024

  1. Add (check) full support for sampling in full parity with Lightning (#…

    …836)
    
    ### Before submitting
    
    Please complete the following checklist when submitting a PR:
    
    - [X] All new features must include a unit test.
    If you've fixed a bug or added code that should be tested, add a test to
    the
          [`tests`](../tests) directory!
    
    - [X] All new functions and code must be clearly commented and
    documented.
    If you do make documentation changes, make sure that the docs build and
          render correctly by running `make docs`.
    
    - [X] Ensure that the test suite passes, by running `make test`.
    
    - [ ] Add a new entry to the `.github/CHANGELOG.md` file, summarizing
    the
          change, and including a link back to the PR.
    
    - [X] Ensure that code is properly formatted by running `make format`. 
    
    When all the above are checked, delete everything above the dashed
    line and fill in the pull request template.
    
    
    ------------------------------------------------------------------------------------------------------------
    
    **Context:**
    Migrate the lightning.kokkos device to the new device API.
    
    **Description of the Change:**
    Add the necessary method for the LightningKokkos that allows the use of
    new device API. It should have a similar structure as the LightningQubit
    class.
    
    Note: Lightning Kokkos does not support MCMC sampling.
    
    **Benefits:**
    Integration of LighntingKokkos with the new device API.
    
    **Possible Drawbacks:**
    
    **Related GitHub Issues:**
    ## Partial / Freezzed PR ⚠️ ❄️
    
    To make a smooth integration of LightningKokkos with the new device API,
    we set the branch `kokkosNewAPI_backend` as the base branch target for
    this development.
    
    The branch `kokkosNewAPI_backend` has the mock of all classes and
    methods necessary for the new API. Also, several tests were disabled
    with
    
    ```python
    if device_name == "lightning.kokkos":
        pytest.skip("Kokkos new API in WIP.  Skipping.",allow_module_level=True)
    ```
    
    Additionally, the CI testing from PennyLane for LKokkos is temporally
    disabled through commenting on the following lines in .github/workflows
    files
    
    ```
    : # pl-device-test --device ${DEVICENAME} --skip-ops --shots=20000 $COVERAGE_FLAGS --cov-append
    : # pl-device-test --device ${DEVICENAME} --shots=None --skip-ops $COVERAGE_FLAGS --cov-append
    ```
    
    However, these tests will unblocked as the implementation progresses.
    
    After all the developments for integrating LightningKokkos with the new
    API have been completed then the PR will be open to merging to master
    
    [sc-68820]
    
    ---------
    
    Co-authored-by: Vincent Michaud-Rioux <[email protected]>
    Co-authored-by: Ali Asadi <[email protected]>
    Co-authored-by: Amintor Dusko <[email protected]>
    4 people authored Aug 9, 2024
    Configuration menu
    Copy the full SHA
    f9ab86f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0d1dd71 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ac9ed86 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9a20ee1 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2024

  1. Configuration menu
    Copy the full SHA
    244e0a1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    873656c View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2024

  1. Update unit/integration tests for the new device (#840)

    ### Before submitting
    
    Please complete the following checklist when submitting a PR:
    
    - [X] All new features must include a unit test.
    If you've fixed a bug or added code that should be tested, add a test to
    the
          [`tests`](../tests) directory!
    
    - [X] All new functions and code must be clearly commented and
    documented.
    If you do make documentation changes, make sure that the docs build and
          render correctly by running `make docs`.
    
    - [X] Ensure that the test suite passes, by running `make test`.
    
    - [ ] Add a new entry to the `.github/CHANGELOG.md` file, summarizing
    the
          change, and including a link back to the PR.
    
    - [X] Ensure that code is properly formatted by running `make format`. 
    
    When all the above are checked, delete everything above the dashed
    line and fill in the pull request template.
    
    
    ------------------------------------------------------------------------------------------------------------
    
    **Context:**
    Migrate the lightning.kokkos device to the new device API.
    
    **Description of the Change:**
    Unlock and modify all the unit tests for `Lightning Kokkos` and pass all
    the CI.
    
    **Benefits:**
    Integration of LighntingKokkos with the new device API.
    
    **Possible Drawbacks:**
    
    **Related GitHub Issues:**
    ## Partial / Freezzed PR ⚠️ ❄️
    
    To make a smooth integration of LightningKokkos with the new device API,
    we set the branch `kokkosNewAPI_backend` as the base branch target for
    this development.
    
    The branch `kokkosNewAPI_backend` has the mock of all classes and
    methods necessary for the new API. Also, several tests were disabled
    with
    
    ```python
    if device_name == "lightning.kokkos":
        pytest.skip("Kokkos new API in WIP.  Skipping.",allow_module_level=True)
    ```
    
    Additionally, the CI testing from PennyLane for LKokkos is temporally
    disabled through commenting on the following lines in .github/workflows
    files
    
    ```
    : # pl-device-test --device ${DEVICENAME} --skip-ops --shots=20000 $COVERAGE_FLAGS --cov-append
    : # pl-device-test --device ${DEVICENAME} --shots=None --skip-ops $COVERAGE_FLAGS --cov-append
    ```
    
    However, these tests will unblocked as the implementation progresses.
    
    After all the developments for integrating LightningKokkos with the new
    API have been completed then the PR will be open to merging to master
    
    
    [sc-68823]
    
    ---------
    
    Co-authored-by: Vincent Michaud-Rioux <[email protected]>
    Co-authored-by: Ali Asadi <[email protected]>
    Co-authored-by: Amintor Dusko <[email protected]>
    4 people authored Aug 13, 2024
    Configuration menu
    Copy the full SHA
    fe0954a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    286ea30 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3cb37be View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1bd9adc View commit details
    Browse the repository at this point in the history
  5. check pylint

    LuisAlfredoNu committed Aug 13, 2024
    Configuration menu
    Copy the full SHA
    9ebbefc View commit details
    Browse the repository at this point in the history
  6. trigger CIs

    LuisAlfredoNu committed Aug 13, 2024
    Configuration menu
    Copy the full SHA
    86316bc View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2024

  1. trigger CIs

    LuisAlfredoNu committed Aug 14, 2024
    Configuration menu
    Copy the full SHA
    5c6b97d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0293b29 View commit details
    Browse the repository at this point in the history
  3. Update CHANGELOG

    LuisAlfredoNu committed Aug 14, 2024
    Configuration menu
    Copy the full SHA
    e310fef View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9478c50 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    bbc6448 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2024

  1. Apply suggestions from code review - remove debug comments

    Co-authored-by: Vincent Michaud-Rioux <[email protected]>
    LuisAlfredoNu and vincentmr authored Aug 15, 2024
    Configuration menu
    Copy the full SHA
    b586e21 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    00b6eb6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3f3a48d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    84795f5 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2024

  1. Configuration menu
    Copy the full SHA
    6dbb9fe View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    620a021 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7ae3360 View commit details
    Browse the repository at this point in the history
  4. Apply format

    LuisAlfredoNu committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    4a91c6f View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2024

  1. Configuration menu
    Copy the full SHA
    ebc503c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c93f1c5 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2024

  1. Configuration menu
    Copy the full SHA
    519ce4a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    794c166 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    168a406 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    63ee6fd View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3608945 View commit details
    Browse the repository at this point in the history
  6. Apply format

    LuisAlfredoNu committed Aug 21, 2024
    Configuration menu
    Copy the full SHA
    2ce52c3 View commit details
    Browse the repository at this point in the history
  7. Merge branch 'kokkosNewAPI_backend' of github.com:PennyLaneAI/pennyla…

    …ne-lightning into kokkosNewAPI_backend
    LuisAlfredoNu committed Aug 21, 2024
    Configuration menu
    Copy the full SHA
    9bcd0fc View commit details
    Browse the repository at this point in the history
  8. Using the attribute new_API

    Co-authored-by: Amintor Dusko <[email protected]>
    LuisAlfredoNu and AmintorDusko authored Aug 21, 2024
    Configuration menu
    Copy the full SHA
    a8f4ec2 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    cc67c16 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    81fd864 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    c0d6e11 View commit details
    Browse the repository at this point in the history
  12. Using the attribute new_API

    Co-authored-by: Amintor Dusko <[email protected]>
    LuisAlfredoNu and AmintorDusko authored Aug 21, 2024
    Configuration menu
    Copy the full SHA
    330cc9c View commit details
    Browse the repository at this point in the history
  13. Using the attribute new_API

    Co-authored-by: Amintor Dusko <[email protected]>
    LuisAlfredoNu and AmintorDusko authored Aug 21, 2024
    Configuration menu
    Copy the full SHA
    e59baa1 View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2024

  1. Delete commented line

    Co-authored-by: Amintor Dusko <[email protected]>
    LuisAlfredoNu and AmintorDusko authored Aug 22, 2024
    Configuration menu
    Copy the full SHA
    c41b69a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ee2c01a View commit details
    Browse the repository at this point in the history
  3. Using the attribute new_API

    Co-authored-by: Amintor Dusko <[email protected]>
    LuisAlfredoNu and AmintorDusko authored Aug 22, 2024
    Configuration menu
    Copy the full SHA
    b1d4cad View commit details
    Browse the repository at this point in the history
  4. Using the attribute new_API

    Co-authored-by: Amintor Dusko <[email protected]>
    LuisAlfredoNu and AmintorDusko authored Aug 22, 2024
    Configuration menu
    Copy the full SHA
    32cf4a6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    57dfbca View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d046ad9 View commit details
    Browse the repository at this point in the history
  7. Changes from PR review

    LuisAlfredoNu committed Aug 22, 2024
    Configuration menu
    Copy the full SHA
    c2079f9 View commit details
    Browse the repository at this point in the history
  8. Merge branch 'kokkosNewAPI_backend' of github.com:PennyLaneAI/pennyla…

    …ne-lightning into kokkosNewAPI_backend
    LuisAlfredoNu committed Aug 22, 2024
    Configuration menu
    Copy the full SHA
    2a7e58a View commit details
    Browse the repository at this point in the history
  9. apply format

    LuisAlfredoNu committed Aug 22, 2024
    Configuration menu
    Copy the full SHA
    3402e10 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2024

  1. Configuration menu
    Copy the full SHA
    cc0f209 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8d5e198 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    aa98b93 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'kokkosNewAPI_backend' of github.com:PennyLaneAI/pennyla…

    …ne-lightning into kokkosNewAPI_backend
    LuisAlfredoNu committed Aug 23, 2024
    Configuration menu
    Copy the full SHA
    e706192 View commit details
    Browse the repository at this point in the history
  5. apply format

    LuisAlfredoNu committed Aug 23, 2024
    Configuration menu
    Copy the full SHA
    5aced15 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4ed563a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    ea412bb View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    5363361 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    37fdbe2 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2024

  1. Configuration menu
    Copy the full SHA
    818093e View commit details
    Browse the repository at this point in the history
  2. fix ImportError tensor

    LuisAlfredoNu committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    bd5ebf8 View commit details
    Browse the repository at this point in the history
  3. apply format

    LuisAlfredoNu committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    f64edf0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bef41b6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3e60948 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4b8b9a7 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    6e9a6a3 View commit details
    Browse the repository at this point in the history
  8. check flaky on CI

    LuisAlfredoNu committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    2dc1bc8 View commit details
    Browse the repository at this point in the history
  9. trigger CIs

    LuisAlfredoNu committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    7e57ec2 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2024

  1. Configuration menu
    Copy the full SHA
    ab56233 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    43b3724 View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2024

  1. Configuration menu
    Copy the full SHA
    00d01c8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4af7af9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    47b4860 View commit details
    Browse the repository at this point in the history
  4. Update .github/CHANGELOG.md

    Co-authored-by: Ali Asadi <[email protected]>
    LuisAlfredoNu and maliasadi authored Sep 3, 2024
    Configuration menu
    Copy the full SHA
    cf9302b View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2024

  1. Configuration menu
    Copy the full SHA
    f84cdcf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0252f8a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5561277 View commit details
    Browse the repository at this point in the history