Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
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 orlearn 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:SciML/ExponentialUtilities.jl
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base:v1.28.0
Choose a base ref
Loading
...
head repository:SciML/ExponentialUtilities.jl
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare:v1.29.0
Choose a head ref
Loading
  • 16commits
  • 8files changed
  • 6contributors

Commits on Nov 24, 2025

  1. Bump actions/checkout from 4 to 6

    Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6.- [Release notes](https://github.com/actions/checkout/releases)- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)- [Commits](actions/checkout@v4...v6)---updated-dependencies:- dependency-name: actions/checkout  dependency-version: '6'  dependency-type: direct:production  update-type: version-update:semver-major...Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot
    dependabot[bot] authoredNov 24, 2025
    Configuration menu
    Copy the full SHA
    94505c3View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2025

  1. Merge pull request#197from SciML/dependabot/github_actions/actions/…

    …checkout-6Bump actions/checkout from 4 to 6
    @ChrisRackauckas
    ChrisRackauckas authoredNov 25, 2025
    Configuration menu
    Copy the full SHA
    1d87012View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2025

  1. Configuration menu
    Copy the full SHA
    318add2View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5affdc9View commit details
    Browse the repository at this point in the history
  3. Merge pull request#199from ChrisRackauckas-Claude/migrate-to-depend…

    …abotAdd Julia ecosystem to Dependabot configuration
    @ChrisRackauckas
    ChrisRackauckas authoredDec 2, 2025
    Configuration menu
    Copy the full SHA
    1fb5a12View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2025

  1. Fix GPU expv! to support complex t via shared implementation

    Instead of duplicating the GPU expv! function for Real and Complex t,extract the common logic into _expv_gpu_impl! and have both dispatchescall it. This avoids code duplication while properly handling methodambiguities with the AbstractVector methods.Fixes#196 review comment about using Union instead of copy-pasting code.🤖 Generated with [Claude Code](https://claude.com/claude-code)Co-Authored-By: Claude <noreply@anthropic.com>
    @ChrisRackauckas@claude
    ChrisRackauckas andclaude committedDec 15, 2025
    Configuration menu
    Copy the full SHA
    748f4eeView commit details
    Browse the repository at this point in the history
  2. Add GPU test for expv! with complex t

    Adds a test case from PR#196 that verifies expv! works correctlyfor AbstractGPUVector with complex time parameter.🤖 Generated with [Claude Code](https://claude.com/claude-code)Co-Authored-By: Claude <noreply@anthropic.com>
    @ChrisRackauckas@claude
    ChrisRackauckas andclaude committedDec 15, 2025
    Configuration menu
    Copy the full SHA
    4e0a79cView commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ab7e7f6View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    dcc5f42View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fbb16c7View commit details
    Browse the repository at this point in the history
  6. Fix GPU expv! to properly support both Real and Complex t

    The GPU expv! method was missing keyword argument defaults, causingcalls with 3 arguments to fall through to the CPU method, which doesn'tproperly adapt arrays for GPU.Fix:- Rename the implementation to _expv_gpu_impl! as internal helper- Add wrapper methods for both Real and Complex t with proper  keyword argument defaults (cache=nothing, expmethod=ExpMethodHigham2005Base())- Use t * F.values instead of lmul!(t, F.values) to avoid in-place  mutation issues with complex valuesThis maintains the shared implementation approach while ensuring propermethod dispatch for GPU arrays.🤖 Generated with [Claude Code](https://claude.com/claude-code)Co-Authored-By: Claude <noreply@anthropic.com>
    @ChrisRackauckas@claude
    ChrisRackauckas andclaude committedDec 15, 2025
    Configuration menu
    Copy the full SHA
    1410e34View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2025

  1. Fix missing ExponentialUtilities import in GPU tests

    The test file uses ExponentialUtilities.arnoldi and ExponentialUtilities.expv!but only imported specific functions, not the module itself. This caused anUndefVarError on Julia 1.12.🤖 Generated with [Claude Code](https://claude.com/claude-code)Co-Authored-By: Claude <noreply@anthropic.com>
    @ChrisRackauckas@claude
    ChrisRackauckas andclaude committedDec 16, 2025
    Configuration menu
    Copy the full SHA
    5fd46c3View commit details
    Browse the repository at this point in the history
  2. Merge pull request#198from ChrisRackauckas-Claude/fix-gpu-complex-u…

    …nionFix GPU expv! to support complex t via shared implementation
    @ChrisRackauckas
    ChrisRackauckas authoredDec 16, 2025
    Configuration menu
    Copy the full SHA
    c8d5d9eView commit details
    Browse the repository at this point in the history
  3. Fix GPU expv! allocation in hermitian branch for Real t

    Use lmul!(t, F.values) for Real t to avoid allocation in the hermitianbranch. For Complex t, allocation is unavoidable since F.values is Realand multiplying by complex t requires type conversion.🤖 Generated with [Claude Code](https://claude.com/claude-code)Co-Authored-By: Claude <noreply@anthropic.com>
    @ChrisRackauckas@claude
    ChrisRackauckas andclaude committedDec 16, 2025
    Configuration menu
    Copy the full SHA
    439e7f2View commit details
    Browse the repository at this point in the history
  4. Merge pull request#200from ChrisRackauckas-Claude/fix-gpu-allocation

    Fix GPU expv! allocation in hermitian branch for Real t
    @ChrisRackauckas
    ChrisRackauckas authoredDec 16, 2025
    Configuration menu
    Copy the full SHA
    e6ffb6aView commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    dc1ee32View commit details
    Browse the repository at this point in the history
Loading

[8]ページ先頭

©2009-2025 Movatter.jp