numpy-ts 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -4
- package/dist/numpy-ts.browser.js +1 -396
- package/dist/numpy-ts.esm.js +1 -396
- package/dist/numpy-ts.node.cjs +1 -412
- package/dist/types/core/ndarray.d.ts +94 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/types/ops/linalg.d.ts +79 -0
- package/package.json +1 -5
package/README.md
CHANGED
|
@@ -201,7 +201,6 @@ import * as np from 'numpy-ts';
|
|
|
201
201
|
- [API-REFERENCE.md](https://github.com/dupontcyborg/numpy-ts/blob/main/docs/API-REFERENCE.md) - Complete API checklist
|
|
202
202
|
|
|
203
203
|
### Developer Documentation
|
|
204
|
-
- [ARCHITECTURE.md](https://github.com/dupontcyborg/numpy-ts/blob/main/docs/ARCHITECTURE.md) - Design and implementation details
|
|
205
204
|
- [TESTING-GUIDE.md](https://github.com/dupontcyborg/numpy-ts/blob/main/docs/TESTING-GUIDE.md) - How to add tests (unit, validation, benchmarks)
|
|
206
205
|
- [benchmarks/README.md](https://github.com/dupontcyborg/numpy-ts/blob/main/benchmarks/README.md) - Performance benchmarking guide
|
|
207
206
|
|
|
@@ -270,8 +269,6 @@ it('int8 overflow wraps like NumPy', () => {
|
|
|
270
269
|
- Validate against Python NumPy before optimizing
|
|
271
270
|
- Performance improvements (WASM/SIMD) come later
|
|
272
271
|
|
|
273
|
-
See [ARCHITECTURE.md](https://github.com/dupontcyborg/numpy-ts/blob/main/docs/ARCHITECTURE.md) for detailed design rationale.
|
|
274
|
-
|
|
275
272
|
---
|
|
276
273
|
|
|
277
274
|
## Contributing
|
|
@@ -364,7 +361,6 @@ Correctness and completeness first, then performance.
|
|
|
364
361
|
## Links
|
|
365
362
|
|
|
366
363
|
- **NumPy**: https://numpy.org/
|
|
367
|
-
- **@stdlib**: https://stdlib.io/
|
|
368
364
|
- **Issues**: https://github.com/dupontcyborg/numpy-ts/issues
|
|
369
365
|
|
|
370
366
|
---
|