Skip to content
This repository was archived by the owner on Jul 10, 2025. It is now read-only.

Commit 74f67bb

Browse files
committed
updated updated date
1 parent f72c515 commit 74f67bb

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

rfcs/20210731-tfjs-named-tensors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
| **RFC #** | [395](https://github.com/tensorflow/community/pull/395) |
66
| **Author(s)** | Lucas Dixon ([email protected]) |
77
| **Sponsor** | Ping Yu ([email protected]) |
8-
| **Updated** | 2021-07-31 |
8+
| **Updated** | 2021-08-12 |
99

1010
## Objective
1111

rfcs/20210731-tfjs-named-tensors/gtensor.ts

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -185,19 +185,6 @@ export class Dimension<G extends DName, D extends G> implements DimensionData<G,
185185
return this.gtensor.tensor.dtype;
186186
}
187187

188-
get isFirstDim(): boolean {
189-
return (this.index === 0);
190-
}
191-
get isSecondDim(): boolean {
192-
return (this.index === 1);
193-
}
194-
get isLastDim(): boolean {
195-
return (this.index === this.gtensor.tensor.shape.length);
196-
}
197-
get isSecondLastDim(): boolean {
198-
return (this.index === this.gtensor.tensor.shape.length);
199-
}
200-
201188
_dot<D2 extends G2, G2 extends DName>(
202189
d2: DotCompatibleDimension<G,D,G2,D2>
203190
): GTensor<Exclude<G | G2, D>> {

0 commit comments

Comments
 (0)