DeepLearning
AddMultiple
create a Tensor from pairwise sums of given Tensor objects
Calling Sequence
Parameters
Options
Description
Examples
Compatibility
AddMultiple(L,opts)
L
-
list of Tensor objects
opts
(optional) options as described below
name = string
The value of option name specifies an optional name for this Tensor, to be displayed in output and when visualizing the dataflow graph.
The AddMultiple(L,opts) command creates a Tensor in the active dataflow graph which is the pairwise sum of the Tensor objects in L.
The elements of the list L must be Tensors of the same shape.
This function is part of the DeepLearning package, so it can be used in the short form AddMultiple(..) only after executing the command with(DeepLearning). However, it can always be accessed through the long form of the command by using DeepLearning[AddMultiple](..).
with⁡DeepLearning:
t1≔Ones⁡3,4,datatype=float8
t1≔DeepLearning TensorShape: [3, 4]Data Type: float[8]
t2≔Zeros⁡3,4,datatype=float8
t2≔DeepLearning TensorShape: [3, 4]Data Type: float[8]
AddMultiple⁡t1,t2
DeepLearning TensorShape: [3, 4]Data Type: float[8]
The DeepLearning[AddMultiple] command was introduced in Maple 2018.
For more information on Maple 2018 changes, see Updates in Maple 2018.
See Also
DeepLearning Overview
Download Help Document