feat: add a permutation reader that can read a permutation view (#2712)

This adds a rust permutation builder. In the next PR I will have python
bindings and integration with pytorch.
This commit is contained in:
Weston Pace
2025-10-17 05:00:23 -07:00
committed by GitHub
parent a70ff04bc9
commit 4cfcd95320
24 changed files with 974 additions and 546 deletions
+1 -4
View File
@@ -7,7 +7,7 @@
# Function: permutationBuilder()
```ts
function permutationBuilder(table, destTableName): PermutationBuilder
function permutationBuilder(table): PermutationBuilder
```
Create a permutation builder for the given table.
@@ -17,9 +17,6 @@ Create a permutation builder for the given table.
* **table**: [`Table`](../classes/Table.md)
The source table to create a permutation from
* **destTableName**: `string`
The name for the destination permutation table
## Returns
[`PermutationBuilder`](../classes/PermutationBuilder.md)