conv3d

abstract fun <T : DType, V> conv3d(input: Tensor<T, V>, weight: Tensor<T, V>, bias: Tensor<T, V>? = null, stride: Triple<Int, Int, Int> = Triple(1, 1, 1), padding: Triple<Int, Int, Int> = Triple(0, 0, 0), dilation: Triple<Int, Int, Int> = Triple(1, 1, 1), groups: Int = 1): Tensor<T, V>(source)