Skip to content

Commit 22fed17

Browse files
committed
Minor edits.
1 parent a5fcdc2 commit 22fed17

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ Below is more information about TensorFlow-related build arguments.
152152
* Default value: None.
153153
* `tensorflow-swift-apis`: A path to the [tensorflow/swift-apis](https://github.com/tensorflow/swift-apis) deep learning library repository.
154154
* Default value: `tensorflow-swift-apis` if the [tensorflow/swift-apis](https://github.com/tensorflow/swift-apis) repository is cloned. Otherwise, none.
155-
* `tensorflow-swift-bindings`: A generated TensorFlow Swift bindings file (`RawOpsGenerated.swift`) obtained from [tensorflow/swift-bindings](https://github.com/tensorflow/swift-bindings).
156-
* Default value: `tensorflow-swift-bindings/RawOpsGenerated.swift` if the [tensorflow/swift-bindings](https://github.com/tensorflow/swift-bindings) repository is cloned. Otherwise, none.
155+
* `tensorflow-swift-bindings`: A path to the [tensorflow/swift-bindings](https://github.com/tensorflow/swift-bindings) repository.
156+
* Default value: `tensorflow-swift-bindings` if the [tensorflow/swift-bindings](https://github.com/tensorflow/swift-bindings) repository is cloned. Otherwise, none.
157157

158158
### Build systems
159159

test/TensorFlowRuntime/dynamic_compilation_tensor_group.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ func some_tf_op(n : Int) {
142142
}
143143

144144
let actual: Tensor<Float> = #tfop("Pack",
145-
[arr], T$dtype: Float.tensorFlowDataType, axis: Int64(0))
145+
arr, T$dtype: Float.tensorFlowDataType, axis: Int64(0))
146146
let expected = ShapedArray<Float>(shape: [n, 3], scalars: arr_exp)
147147
expectEqual(expected, actual.array)
148148
}

0 commit comments

Comments
 (0)