@@ -394,7 +394,7 @@ func _vjpDepthwiseConv2D<Scalar: TensorFlowFloatingPoint>(
394
394
}
395
395
396
396
/// TensorFlow builtin depthwiseConv2D gradient helper for the input.
397
- @differentiable ( wrt: ( x, filter) , vjp: _vjpdepthwiseConv2dBackpropInput )
397
+ @differentiable ( wrt: ( x, filter) , vjp: _vjpDepthwiseConv2dBackpropInput )
398
398
@usableFromInline
399
399
func depthwiseConv2dBackpropInput< Scalar: TensorFlowFloatingPoint > (
400
400
_ x: Tensor < Scalar > ,
@@ -412,7 +412,7 @@ func depthwiseConv2dBackpropInput<Scalar: TensorFlowFloatingPoint>(
412
412
}
413
413
414
414
@usableFromInline
415
- func _vjpdepthwiseConv2dBackpropInput < Scalar: TensorFlowFloatingPoint > (
415
+ func _vjpDepthwiseConv2dBackpropInput < Scalar: TensorFlowFloatingPoint > (
416
416
_ x: Tensor < Scalar > ,
417
417
_ shape: Tensor < Int32 > ,
418
418
_ filter: Tensor < Scalar > ,
@@ -431,7 +431,7 @@ func _vjpdepthwiseConv2dBackpropInput<Scalar: TensorFlowFloatingPoint>(
431
431
}
432
432
433
433
/// TensorFlow builtin depthwiseConv2D gradient helper for the filter.
434
- @differentiable ( wrt: ( x, input) , vjp: _vjpdepthwiseConv2dBackpropFilter )
434
+ @differentiable ( wrt: ( x, input) , vjp: _vjpDepthwiseConv2dBackpropFilter )
435
435
@usableFromInline
436
436
func depthwiseConv2dBackpropFilter< Scalar: TensorFlowFloatingPoint > (
437
437
_ x: Tensor < Scalar > ,
@@ -449,7 +449,7 @@ func depthwiseConv2dBackpropFilter<Scalar: TensorFlowFloatingPoint>(
449
449
}
450
450
451
451
@usableFromInline
452
- func _vjpdepthwiseConv2dBackpropFilter < Scalar: TensorFlowFloatingPoint > (
452
+ func _vjpDepthwiseConv2dBackpropFilter < Scalar: TensorFlowFloatingPoint > (
453
453
_ x: Tensor < Scalar > ,
454
454
_ input: Tensor < Scalar > ,
455
455
_ filterSizes: Tensor < Int32 > ,
0 commit comments