Skip to content

Commit

Permalink
Merge pull request #195 from cowlicks/remove-strided-docs
Browse files Browse the repository at this point in the history
Remove docs about "strided" type which was deprecated.
  • Loading branch information
kwmsmith committed Feb 1, 2016
2 parents ba88f45 + 897ae68 commit 2fe9ce1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
3 changes: 1 addition & 2 deletions docs/source/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,7 @@ For example, an integer array of size three is::
3 * int

In this type, 3 is is a ``fixed`` dimension, which means it is a dimension
whose size is always as given. Other dimension types include ``strided``
and ``var``.
whose size is always as given. Other dimension types include ``var``.

Comparing with NumPy, the array created by
``np.empty((2, 3), 'int32')`` has datashape ``2 * 3 * int32``.
Expand Down
12 changes: 0 additions & 12 deletions docs/source/types.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,6 @@ Var Dimension
A dimension whose size may be different across instances.
A common use of this is a ragged array like ``4 * var * int32``.

Strided Dimension
-----------------

``strided``

A dimension whose size is fixed across the array, but whose
size is no known ahead of time. This is not commonly used in Blaze,
but is in DyND where it is how NumPy-like dimensions are created.
For example, a two dimensional strided array has type
``strided * strided * int32``, and does not bake in particular
dimension sizes like with fixed dimensions in ``10 * 15 * int32``.

Type Variables
--------------

Expand Down

0 comments on commit 2fe9ce1

Please sign in to comment.