Skip to content
This repository has been archived by the owner on Jan 20, 2025. It is now read-only.

Commit

Permalink
Remove broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mtfishman committed May 9, 2024
1 parent 92ad27b commit f5a7777
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions test/test_cumps.jl
Original file line number Diff line number Diff line change
Expand Up @@ -96,25 +96,6 @@ using ITensors, ITensorGPU, Test
@test_throws DimensionMismatch inner(phi, badpsi)
end

@testset "inner same MPS" begin
psi = randomMPS(sites)
psidag = dag(deepcopy(psi))
ITensors.prime_linkinds!(psidag)
psipsi = psidag[1] * psi[1]
for j in 2:N
psipsi = psipsi * psidag[j] * psi[j]
end
@test psipsi[] inner(psi, psi)
psi = randomCuMPS(sites)
psidag = dag(deepcopy(psi))
ITensors.prime_linkinds!(psidag)
psipsi = psidag[1] * psi[1]
for j in 2:N
psipsi = psipsi * psidag[j] * psi[j]
end
@test psipsi[] inner(psi, psi)
end

@testset "add MPS" begin
psi = randomMPS(sites)
phi = deepcopy(psi)
Expand Down

0 comments on commit f5a7777

Please sign in to comment.