Skip to content
This repository was archived by the owner on Jul 1, 2023. It is now read-only.

Commit 015050a

Browse files
committed
Revert "Update names to follow camel case convention"
This reverts commit cb4e1d2.
1 parent fcb0455 commit 015050a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Sources/TensorFlow/Operators/NN.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ func _vjpDepthwiseConv2D<Scalar: TensorFlowFloatingPoint>(
394394
}
395395

396396
/// TensorFlow builtin depthwiseConv2D gradient helper for the input.
397-
@differentiable(wrt: (x, filter), vjp: _vjpDepthwiseConv2dBackpropInput)
397+
@differentiable(wrt: (x, filter), vjp: _vjpdepthwiseConv2dBackpropInput)
398398
@usableFromInline
399399
func depthwiseConv2dBackpropInput<Scalar: TensorFlowFloatingPoint>(
400400
_ x: Tensor<Scalar>,
@@ -412,7 +412,7 @@ func depthwiseConv2dBackpropInput<Scalar: TensorFlowFloatingPoint>(
412412
}
413413

414414
@usableFromInline
415-
func _vjpDepthwiseConv2dBackpropInput<Scalar: TensorFlowFloatingPoint>(
415+
func _vjpdepthwiseConv2dBackpropInput<Scalar: TensorFlowFloatingPoint>(
416416
_ x: Tensor<Scalar>,
417417
_ shape: Tensor<Int32>,
418418
_ filter: Tensor<Scalar>,
@@ -431,7 +431,7 @@ func _vjpDepthwiseConv2dBackpropInput<Scalar: TensorFlowFloatingPoint>(
431431
}
432432

433433
/// TensorFlow builtin depthwiseConv2D gradient helper for the filter.
434-
@differentiable(wrt: (x, input), vjp: _vjpDepthwiseConv2dBackpropFilter)
434+
@differentiable(wrt: (x, input), vjp: _vjpdepthwiseConv2dBackpropFilter)
435435
@usableFromInline
436436
func depthwiseConv2dBackpropFilter<Scalar: TensorFlowFloatingPoint>(
437437
_ x: Tensor<Scalar>,
@@ -449,7 +449,7 @@ func depthwiseConv2dBackpropFilter<Scalar: TensorFlowFloatingPoint>(
449449
}
450450

451451
@usableFromInline
452-
func _vjpDepthwiseConv2dBackpropFilter<Scalar: TensorFlowFloatingPoint>(
452+
func _vjpdepthwiseConv2dBackpropFilter<Scalar: TensorFlowFloatingPoint>(
453453
_ x: Tensor<Scalar>,
454454
_ input: Tensor<Scalar>,
455455
_ filterSizes: Tensor<Int32>,

0 commit comments

Comments
 (0)