diff --git a/spec/draft/index.rst b/spec/draft/index.rst index 3e51cc68e..13c2dfe80 100644 --- a/spec/draft/index.rst +++ b/spec/draft/index.rst @@ -33,5 +33,6 @@ Contents :caption: Other :maxdepth: 1 + migration_guide changelog license diff --git a/spec/draft/migration_guide.md b/spec/draft/migration_guide.md new file mode 100644 index 000000000..09ebdc288 --- /dev/null +++ b/spec/draft/migration_guide.md @@ -0,0 +1,16 @@ +# Migration Guide + +## Introduction + +The Array API Standard was based in the common APIs across multiple Python array libraries as a response to the fragmentation of the ecosystem. It was decided for the Array API Standard to be as compact as possible, meaning that it doesn't include all the creation and manipulation functions available in other libraries resulting that in some cases library-specific code paths may need to be used. If you encounter a function that is not easy to translate, please check if it has an open discussion in the [issue tracker](https://github.com/data-apis/array-api/issues), if not please request it via a new issue. + +The aim of this guide is to help users get started with the use of the Array API by providing common equivalents with the NumPy API. Your input can be very valuable for us, so please feel free to contribute to this page by adding more equivalents. + +Depending on the version of the Array API Standard that you are intended to use, the number of total APIs may vary and this migration guide is using the latest version `v2022.12`. + +## Equivalents + +| NumPy | Array API | +| ----- | --------- | +| `ravel(x)` | `reshape(x, (-1,))` | +| `flatten(x)` | `reshape(x, (-1,))` |