File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -96,13 +96,13 @@ jobs:
9696 continue-on-error : true
9797 run : conda build --no-test --python ${{ matrix.python }} --numpy 2.0 ${{ env.channels-list }} conda-recipe
9898 env :
99- MAX_BUILD_CMPL_MKL_VERSION : ' 2025.2a0 '
99+ MAX_BUILD_CMPL_MKL_VERSION : ' 2025.3a0 '
100100
101101 - name : ReBuild conda package
102102 if : steps.build_conda_pkg.outcome == 'failure'
103103 run : conda build --no-test --python ${{ matrix.python }} --numpy 2.0 ${{ env.channels-list }} conda-recipe
104104 env :
105- MAX_BUILD_CMPL_MKL_VERSION : ' 2025.2a0 '
105+ MAX_BUILD_CMPL_MKL_VERSION : ' 2025.3a0 '
106106
107107 - name : Upload artifact
108108 uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2929### Fixed
3030
3131* Updated ` pre-commit ` GitHub workflow to pass ` no-commit-to-branch ` check [ #2501 ] ( https://github.com/IntelPython/dpnp/pull/2501 )
32+ * Updated the math formulas in summary of ` dpnp.matvec ` and ` dpnp.vecmat ` to correct a typo [ #2503 ] ( https://github.com/IntelPython/dpnp/pull/2503 )
3233
3334### Security
3435
Original file line number Diff line number Diff line change @@ -956,7 +956,7 @@ def matvec(
956956 matrix-vector product is defined as:
957957
958958 .. math::
959- \mathbf{A} \cdot \mathbf{b } = \sum_{i =0}^{n-1} A_{ij}v_j
959+ \mathbf{A} \cdot \mathbf{v } = \sum_{j =0}^{n-1} A_{ij} v_j
960960
961961 where the sum is over the last dimensions in `x1` and `x2` (unless `axes`
962962 is specified). (For a matrix-vector product with the vector conjugated,
@@ -1457,7 +1457,7 @@ def vecmat(
14571457 is defined as:
14581458
14591459 .. math::
1460- \mathbf{b } \cdot \mathbf{A} = \sum_{i=0}^{n-1} \overline{v_i}A_{ij}
1460+ \mathbf{v } \cdot \mathbf{A} = \sum_{i=0}^{n-1} \overline{v_i}A_{ij}
14611461
14621462 where the sum is over the last dimension of `x1` and the one-but-last
14631463 dimensions in `x2` (unless `axes` is specified) and where
You can’t perform that action at this time.
0 commit comments