Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/Format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ jobs:
steps:
- uses: julia-actions/julia-format@v3
with:
version: '1' # Set `version` to '1.0.54' if you need to use JuliaFormatter.jl v1.0.54 (default: '1')
version: '2'
suggestion-label: 'format-suggest' # leave this unset or empty to show suggestions for all PRs
11 changes: 4 additions & 7 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "TCIAlgorithms"
uuid = "baf62351-2e82-41dd-9129-4f5768a618e1"
authors = ["Hiroshi Shinaoka <[email protected]> and contributors"]
version = "0.5.0"
authors = ["Hiroshi Shinaoka <[email protected]> and contributors"]

[deps]
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
Expand All @@ -12,7 +12,6 @@ ITensors = "9136182c-28ba-11e9-034c-db9fb085ebd5"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
Quantics = "87f76fb3-a40a-40c9-a63c-29fcfe7b7547"
TCIITensorConversion = "9f0aa9f4-9415-4e6a-8795-331ebf40aa04"
TensorCrossInterpolation = "b261b2ec-6378-4871-b32e-9173bb050604"

[compat]
Expand All @@ -22,13 +21,11 @@ FastMPOContractions = "0.2.2"
HubbardAtoms = "0.1.0"
ITensorMPS = "0.3.2"
ITensors = "0.7"
JET = "0.9.12"
OrderedCollections = "1"
Quantics = "0.4"
QuanticsGrids = "0.3.2"
Quantics = "0.4.7"
QuanticsGrids = "0.6"
SparseIR = "1.0.19"
TCIITensorConversion = "0.2"
TensorCrossInterpolation = "0.9.7"
TensorCrossInterpolation = "0.9"
julia = "1.10"

[extras]
Expand Down
5 changes: 0 additions & 5 deletions src/TCIAlgorithms.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import TensorCrossInterpolation as TCI
import TensorCrossInterpolation:
TensorTrain, evaluate, TTCache, MultiIndex, LocalIndex, TensorCI2

using TCIITensorConversion
using ITensors
using ITensorMPS: ITensorMPS
using ITensorMPS: MPO, MPS, linkdims, linkinds
Expand All @@ -17,7 +16,6 @@ using EllipsisNotation
import TensorCrossInterpolation as TCI
import TensorCrossInterpolation:
TensorTrain, evaluate, TTCache, MultiIndex, LocalIndex, TensorCI2
using TCIITensorConversion
import LinearAlgebra as LA

import FastMPOContractions as FMPOC
Expand All @@ -38,7 +36,4 @@ include("patching.jl")
include("crossinterpolate.jl")
include("adaptivematmul.jl")

# ITensor interface
include("itensor.jl")

end
1 change: 1 addition & 0 deletions src/crossinterpolate.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""
# For TCI2

`f` is a function that can be evaluated at full-length indices (including projected and non-projected indices). The wrapped function can be evaluated only on unprojected indices.
"""
struct _FuncAdapterTCI2Subset{T} <: TCI.BatchEvaluator{T}
Expand Down
Loading
Loading