diff options
author | Tom Smeding <t.j.smeding@uu.nl> | 2024-06-19 15:57:43 +0200 |
---|---|---|
committer | Tom Smeding <t.j.smeding@uu.nl> | 2024-06-19 15:57:43 +0200 |
commit | aafe5f6b5fa772d0e2e9f9b4f91bc3e7cf696840 (patch) | |
tree | c0d0d81a9c40f72adf041b165819ab0c7daa44bf /src/Data/Array/Nested.hs | |
parent | 97ab8502b9cd3f7d908160d13c7d85d23c99e203 (diff) |
Add {m,r,s}dot1Inner
Diffstat (limited to 'src/Data/Array/Nested.hs')
-rw-r--r-- | src/Data/Array/Nested.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Data/Array/Nested.hs b/src/Data/Array/Nested.hs index 53417bd..f37619f 100644 --- a/src/Data/Array/Nested.hs +++ b/src/Data/Array/Nested.hs @@ -12,7 +12,7 @@ module Data.Array.Nested ( rreplicate, rreplicateScal, rfromListOuter, rfromList1, rfromList1Prim, rtoListOuter, rtoList1, rfromListLinear, rtoListLinear, rslice, rrev1, rreshape, rflatten, riota, - rminIndexPrim, rmaxIndexPrim, rdot, rdot1, + rminIndexPrim, rmaxIndexPrim, rdot1Inner, rdot, rnest, runNest, -- ** Lifting orthotope operations to 'Ranked' arrays rlift, rlift2, @@ -33,7 +33,7 @@ module Data.Array.Nested ( sreplicate, sreplicateScal, sfromListOuter, sfromList1, sfromList1Prim, stoListOuter, stoList1, sfromListLinear, stoListLinear, sslice, srev1, sreshape, sflatten, siota, - sminIndexPrim, smaxIndexPrim, sdot, sdot1, + sminIndexPrim, smaxIndexPrim, sdot1Inner, sdot, snest, sunNest, -- ** Lifting orthotope operations to 'Shaped' arrays slift, slift2, @@ -54,7 +54,7 @@ module Data.Array.Nested ( mreplicate, mreplicateScal, mfromListOuter, mfromList1, mfromList1Prim, mtoListOuter, mtoList1, mfromListLinear, mtoListLinear, mslice, mrev1, mreshape, mflatten, miota, - mminIndexPrim, mmaxIndexPrim, mdot, mdot1, + mminIndexPrim, mmaxIndexPrim, mdot1Inner, mdot, mnest, munNest, -- ** Lifting orthotope operations to 'Mixed' arrays mlift, mlift2, |