Skip to content

Commit

Permalink
Merge pull request #150 from kalimdorjs/enhance/expose-reshape-throug…
Browse files Browse the repository at this point in the history
…h-index

fix: exposing reshape through index
  • Loading branch information
JasonShin committed Dec 1, 2018
2 parents ab37d3d + c7e7d94 commit 93f3930
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/lib/ops/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
import {
inferShape,
reshape,
validateFitInputs,
validateMatrix1D,
validateMatrix2D
} from './tensor_ops';

export { inferShape, validateFitInputs, validateMatrix1D, validateMatrix2D };
export {
inferShape,
validateFitInputs,
validateMatrix1D,
validateMatrix2D,
reshape
};

0 comments on commit 93f3930

Please sign in to comment.