Skip to content
This repository was archived by the owner on Mar 12, 2021. It is now read-only.

Commit 6b313fe

Browse files
committed
Rename
1 parent 6056503 commit 6b313fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/tensor/wrappers.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ function contraction!(
261261
return C
262262
end
263263

264-
function contraction_plan(
264+
function plan_contraction(
265265
A::CuArray, Ainds::ModeType, opA::cutensorOperator_t,
266266
B::CuArray, Binds::ModeType, opB::cutensorOperator_t,
267267
C::CuArray, Cinds::ModeType, opC::cutensorOperator_t,

test/tensor.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ end
457457
opB = CUTENSOR.CUTENSOR_OP_IDENTITY
458458
opC = CUTENSOR.CUTENSOR_OP_IDENTITY
459459
opOut = CUTENSOR.CUTENSOR_OP_IDENTITY
460-
plan = CUTENSOR.contraction_plan(dA, indsA, opA, dB, indsB, opB, dC, indsC, opC, opOut)
460+
plan = CUTENSOR.plan_contraction(dA, indsA, opA, dB, indsB, opB, dC, indsC, opC, opOut)
461461
dC = CUTENSOR.contraction!(1, dA, indsA, opA, dB, indsB, opB,
462462
0, dC, indsC, opC, opOut, plan=plan)
463463
C = collect(dC)

0 commit comments

Comments
 (0)