Skip to content

Commit 5f0c688

Browse files
authored
Merge pull request #1 from JasonShin/master
fix: circular dependency issue
2 parents 9d3b731 + ad6e061 commit 5f0c688

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ops/linalg_solve.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
* Linear algebra resolution.
2020
*/
2121

22-
import {scalar, split, tensor1d} from '..';
22+
import { scalar, tensor1d } from './tensor_ops';
23+
import { split } from './array_ops';
2324
import {ENV} from '../environment';
2425
import {Scalar, Tensor, Tensor2D} from '../tensor';
2526
import {assert} from '../util';

0 commit comments

Comments
 (0)