You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Perhaps add a new struct StaticSizeArray which would have size as a type parameter instead of a field.
Perhaps parameterize FixedSizeArray by the element type of the size field. I'm not sure how likely this is to be useful, but I know that GPU programs tend to avoid 64-bit values, so perhaps this would be a desired next step after support GenericMemory by making the storage type a parameter #52.
The text was updated successfully, but these errors were encountered:
nsajko
added a commit
to nsajko/FixedSizeArrays.jl
that referenced
this issue
Feb 12, 2025
Currently only `Int` values may be contained in the `size` field. This
PR additionally allows values of any singleton type that subtypes
`Integer`.
FixesJuliaArrays#54
Perhaps add a new
struct StaticSizeArray
which would havesize
as a type parameter instead of a field.Perhaps parameterize
FixedSizeArray
by the element type of thesize
field. I'm not sure how likely this is to be useful, but I know that GPU programs tend to avoid 64-bit values, so perhaps this would be a desired next step after supportGenericMemory
by making the storage type a parameter #52.The text was updated successfully, but these errors were encountered: