Mercurial > repos > public > sbplib_julia
comparison src/LazyTensors/LazyTensors.jl @ 1767:dfb43fdac9fc refactor/move_exports
Move exports to package top files
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 13 Sep 2024 22:23:45 +0200 |
parents | a922aa69eb83 |
children | b8cb38fd67ff |
comparison
equal
deleted
inserted
replaced
1730:f215ac2a5c66 | 1767:dfb43fdac9fc |
---|---|
1 module LazyTensors | 1 module LazyTensors |
2 | |
3 export LazyTensor | |
4 export apply | |
5 export apply_transpose | |
6 export range_dim, domain_dim | |
7 export range_size, domain_size | |
2 | 8 |
3 export TensorApplication | 9 export TensorApplication |
4 export TensorTranspose | 10 export TensorTranspose |
5 export TensorComposition | 11 export TensorComposition |
6 export IdentityTensor | 12 export IdentityTensor |
10 export InflatedTensor | 16 export InflatedTensor |
11 export LazyOuterProduct | 17 export LazyOuterProduct |
12 export ⊗ | 18 export ⊗ |
13 export DomainSizeMismatch | 19 export DomainSizeMismatch |
14 export RangeSizeMismatch | 20 export RangeSizeMismatch |
21 | |
22 export LazyArray | |
23 export LazyFunctionArray | |
24 export +̃, -̃, *̃, /̃ | |
15 | 25 |
16 include("lazy_tensor.jl") | 26 include("lazy_tensor.jl") |
17 include("tensor_types.jl") | 27 include("tensor_types.jl") |
18 include("lazy_array.jl") | 28 include("lazy_array.jl") |
19 include("lazy_tensor_operations.jl") | 29 include("lazy_tensor_operations.jl") |