Skip to content

Commit cd32113

Browse files
committed
ParameterConversion: refer back to Op methods
1 parent f8859da commit cd32113

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/ops/doc/ParameterConversion.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,10 +274,10 @@ Below is an ``engine.copy`` Op that would store the converted Op's output ``doub
274274
275275
When the user tries to invoke our ``filter.convolve`` ``Computer`` Op on all ``double[][]``\ s, the following happens:
276276

277-
#. Each ``double[][]`` is converted into a ``RandomAccessibleInterval<DoubleType>`` using our ``engine.convert(in: double[][]) -> RandomAccessibleInterval<DoubleType>`` Op.
277+
#. Each ``double[][]`` is converted into a ``RandomAccessibleInterval<DoubleType>`` using our ``arrayToRAI`` ``engine.convert`` Op.
278278
#. The ``filter.convolve`` Op is invoked on the ``RandomAccessibleInterval<DoubleType>``\ s, returning a ``RandomAccessibleInterval<DoubleType>`` as an output.
279-
#. The output ``RandomAccessibleInterval<DoubleType>`` is converted into a ``double[][]`` using our ``engine.convert(in: RandomAccessibleInterval<DoubleType>) -> double[][]`` Op.
280-
#. The **converted** output ``double[][]`` is *copied* back into the user's ``double[][]`` buffer.
279+
#. The output ``RandomAccessibleInterval<DoubleType>`` is converted into a ``double[][]`` using our ``raiToArray`` ``engine.convert`` Op.
280+
#. The **converted** output ``double[][]`` is *copied* back into the user's ``double[][]`` buffer using our ``copyDoubleMatrix`` ``engine.copy`` Op.
281281

282282
Summary
283283
=======

0 commit comments

Comments
 (0)