Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: IntelPython/dpnp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: dev-milestone
Choose a base ref
...
head repository: IntelPython/dpnp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 5 commits
  • 13 files changed
  • 2 contributors

Commits on Jul 7, 2025

  1. Fix compilation warnings (#2517)

    This PR resolves compilation warnings:
    > warning: class template argument deduction for alias templates is a
    C++20 extension [-Wc++20-extensions]
    
    As for now DPNP is building with C++17 standard, and Class Template
    Argument Deduction is available where only for a class template, but not
    for a type alias. What support was added in C++20 standard.
    
    Since there are currently no plans to move to the C++20 standard, the
    code has been updated to conform to the C++17 standard.
    antonwolfy authored Jul 7, 2025
    Configuration menu
    Copy the full SHA
    624f14f View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2025

  1. Temporary mute tests failing in public CI (#2518)

    The PR temporary mutes tests which are sporadically failing in GitHub
    workflow on Windows.
    antonwolfy authored Jul 8, 2025
    Configuration menu
    Copy the full SHA
    d15d395 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2025

  1. Add implementation of dpnp.ndarray.view method (#2520)

    This PR adds implementation of `dpnp.ndarray.view` method.
    All places in the code with connected TODO comments were updated
    properly.
    antonwolfy authored Jul 10, 2025
    Configuration menu
    Copy the full SHA
    9b73305 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2025

  1. Unmute FFT tests that are fixed (#2523)

    Unmute FFT tests that are fixed.
    vtavana authored Jul 11, 2025
    Configuration menu
    Copy the full SHA
    425ec0c View commit details
    Browse the repository at this point in the history
  2. Remove dummy setting of compat module in the tests (#2525)

    `numpy.comat` was deprecated since 1.26.0 and remove in 2.3.0.
    The PR removes dummy setting of `dpnp.compat` in external tests.
    antonwolfy authored Jul 11, 2025
    Configuration menu
    Copy the full SHA
    71c2e8e View commit details
    Browse the repository at this point in the history
Loading