├── .github └── workflows │ ├── npm-publish.yml │ └── test-node.yml ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── _config.yml ├── apl-logo.png └── index.md ├── index.js ├── package.json ├── src ├── index.ts └── reshape.ts ├── test ├── data │ ├── 10-float16.npy │ ├── 10-float32.npy │ ├── 10-float64.npy │ ├── 10-int16.npy │ ├── 10-int64.npy │ ├── 10-int8.npy │ ├── 100x100x100-float16.npy │ ├── 100x100x100-float32.npy │ ├── 100x100x100-float64.npy │ ├── 100x100x100-int16.npy │ ├── 100x100x100-int64.npy │ ├── 100x100x100-int8.npy │ ├── 4x4x4x4x4-float16.npy │ ├── 4x4x4x4x4-float32.npy │ ├── 4x4x4x4x4-float64.npy │ ├── 4x4x4x4x4-int16.npy │ ├── 4x4x4x4x4-int64.npy │ ├── 4x4x4x4x4-int8.npy │ ├── 65x65-float16.npy │ ├── 65x65-float32.npy │ ├── 65x65-float64.npy │ ├── 65x65-int16.npy │ ├── 65x65-int64.npy │ ├── 65x65-int8.npy │ ├── bool.npy │ └── unicode.npy ├── dump.test.ts ├── generate-test-data.py ├── load.test.ts ├── records.json └── reshape.test.ts ├── tsconfig.json ├── tsup.config.ts └── vitest.config.ts /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.github/workflows/test-node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/.github/workflows/test-node.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/apl-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/docs/apl-logo.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/docs/index.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/reshape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/src/reshape.ts -------------------------------------------------------------------------------- /test/data/10-float16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/10-float16.npy -------------------------------------------------------------------------------- /test/data/10-float32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/10-float32.npy -------------------------------------------------------------------------------- /test/data/10-float64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/10-float64.npy -------------------------------------------------------------------------------- /test/data/10-int16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/10-int16.npy -------------------------------------------------------------------------------- /test/data/10-int64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/10-int64.npy -------------------------------------------------------------------------------- /test/data/10-int8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/10-int8.npy -------------------------------------------------------------------------------- /test/data/100x100x100-float16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/100x100x100-float16.npy -------------------------------------------------------------------------------- /test/data/100x100x100-float32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/100x100x100-float32.npy -------------------------------------------------------------------------------- /test/data/100x100x100-float64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/100x100x100-float64.npy -------------------------------------------------------------------------------- /test/data/100x100x100-int16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/100x100x100-int16.npy -------------------------------------------------------------------------------- /test/data/100x100x100-int64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/100x100x100-int64.npy -------------------------------------------------------------------------------- /test/data/100x100x100-int8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/100x100x100-int8.npy -------------------------------------------------------------------------------- /test/data/4x4x4x4x4-float16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/4x4x4x4x4-float16.npy -------------------------------------------------------------------------------- /test/data/4x4x4x4x4-float32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/4x4x4x4x4-float32.npy -------------------------------------------------------------------------------- /test/data/4x4x4x4x4-float64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/4x4x4x4x4-float64.npy -------------------------------------------------------------------------------- /test/data/4x4x4x4x4-int16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/4x4x4x4x4-int16.npy -------------------------------------------------------------------------------- /test/data/4x4x4x4x4-int64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/4x4x4x4x4-int64.npy -------------------------------------------------------------------------------- /test/data/4x4x4x4x4-int8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/4x4x4x4x4-int8.npy -------------------------------------------------------------------------------- /test/data/65x65-float16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/65x65-float16.npy -------------------------------------------------------------------------------- /test/data/65x65-float32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/65x65-float32.npy -------------------------------------------------------------------------------- /test/data/65x65-float64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/65x65-float64.npy -------------------------------------------------------------------------------- /test/data/65x65-int16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/65x65-int16.npy -------------------------------------------------------------------------------- /test/data/65x65-int64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/65x65-int64.npy -------------------------------------------------------------------------------- /test/data/65x65-int8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/65x65-int8.npy -------------------------------------------------------------------------------- /test/data/bool.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/bool.npy -------------------------------------------------------------------------------- /test/data/unicode.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/data/unicode.npy -------------------------------------------------------------------------------- /test/dump.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/dump.test.ts -------------------------------------------------------------------------------- /test/generate-test-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/generate-test-data.py -------------------------------------------------------------------------------- /test/load.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/load.test.ts -------------------------------------------------------------------------------- /test/records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/records.json -------------------------------------------------------------------------------- /test/reshape.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/test/reshape.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/tsup.config.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplbrain/npyjs/HEAD/vitest.config.ts --------------------------------------------------------------------------------