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

Rename "pointwise" to "element-wise" for consistency. #300

Merged
merged 1 commit into from
Jun 27, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/TensorFlow/Core/Tensor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ extension Tensor: PointwiseMultiplicative where Scalar: Numeric {
@inlinable
public static var one: Tensor { Tensor(1) }

/// Returns the pointwise reciprocal of `self`.
/// Returns the element-wise reciprocal of `self`.
@inlinable
public var reciprocal: Tensor { 1 / self }

Expand Down