elementWiseMultiply3DGPU function

GPUTensor<Tensor3D> elementWiseMultiply3DGPU(
  1. GPUTensor<Tensor3D> a,
  2. GPUTensor<Tensor3D> b,
  3. CommandBuffer tape
)

Implementation

GPUTensor<Tensor3D> elementWiseMultiply3DGPU(GPUTensor<Tensor3D> a, GPUTensor<Tensor3D> b, CommandBuffer tape) {
  int depth = a.shape[0];
  int height = a.shape[1];
  int width = a.shape[2];

  GPUTensor<Tensor3D> out = GPUTensor<Tensor3D>.empty([depth, height, width]);

  tape.putInt(OP_MULTIPLY);
  tape.putString(a.id);
  tape.putString(b.id);
  tape.putString(out.id);

  out.creator = GPUNode(
    [a, b],
        (CommandBuffer bTape) {
      bTape.putInt(OP_MULTIPLY_BACKWARD);
      bTape.putString('${out.id}_grad');
      bTape.putString(b.id);
      bTape.putString('${a.id}_grad');

      bTape.putInt(OP_MULTIPLY_BACKWARD);
      bTape.putString('${out.id}_grad');
      bTape.putString(a.id);
      bTape.putString('${b.id}_grad');
    },
    opName: 'multiply_3dGPU',
    cost: depth * height * width,
  );

  return out;
}