Skip to content

Commit ea27cb2

Browse files
pschuhdan-zheng
authored andcommitted
---
yaml --- r: 293882 b: refs/heads/tensorflow c: 3edf725 h: refs/heads/master
1 parent 1879ea6 commit ea27cb2

9 files changed

+13
-13
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ refs/tags/swift-DEVELOPMENT-SNAPSHOT-2018-04-25-a: 22f738a831d43aff2b9c9773bcb65
816816
refs/tags/swift-DEVELOPMENT-SNAPSHOT-2018-05-08-a: 7d98cc16689baba5c8a3b90a9329bdcc1a12b4e9
817817
refs/heads/cherr42: a566ad54b073c2c56ac0a705d0a5bed9743135a5
818818
"refs/heads/codable_test_comment_fix": fc8f6824f7f347e1e8db55bff62db385c5728b5a
819-
refs/heads/tensorflow: 50293f412aed1714c28c6a2b9e997193af3fd62d
819+
refs/heads/tensorflow: 3edf725be279cba222551da18ec0b3c8fa5b2d46
820820
refs/tags/swift-4.1-DEVELOPMENT-SNAPSHOT-2018-05-11-a: 8126fd7a652e2f70ad6d76505239e34fb2ef3e1a
821821
refs/tags/swift-4.1-DEVELOPMENT-SNAPSHOT-2018-05-12-a: b3fd3dd84df6717f2e2e9df58c6d7e99fed57086
822822
refs/tags/swift-4.1-DEVELOPMENT-SNAPSHOT-2018-05-13-a: 71135119579039dc321c5f65d870050fe36efda2

branches/tensorflow/test/AutoDiff/autodiff_function_inst.sil

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ import Builtin
1616
// vector and returns vector-Jacobian products evaluated at the original
1717
// parameter.
1818
sil hidden @foo_adj : $@convention(thin) (Float, Float, Float) -> Float {
19-
bb0(%0 : @trivial $Float, %1 : @trivial $Float, %2 : @trivial $Float):
19+
bb0(%0 : $Float, %1 : $Float, %2 : $Float):
2020
return %2 : $Float
2121
}
2222

2323
// The original function with an attribute that specifies the compiler-emitted pullback.
2424
sil hidden [differentiable source 0 wrt 0] @foo : $@convention(thin) (Float) -> Float {
25-
bb0(%0 : @trivial $Float):
25+
bb0(%0 : $Float):
2626
return %0 : $Float
2727
}
2828

2929
// The vector-Jacobian product function, which returns the original result and a pullback.
3030
sil hidden @foo_vjp : $@convention(thin) (Float) -> (Float, @owned @callee_guaranteed (Float) -> Float) {
31-
bb0(%0 : @trivial $Float):
31+
bb0(%0 : $Float):
3232
%1 = function_ref @foo : $@convention(thin) (Float) -> Float
3333
%2 = apply %1(%0) : $@convention(thin) (Float) -> Float
3434
%3 = function_ref @foo_adj : $@convention(thin) (Float, Float, Float) -> Float

branches/tensorflow/test/AutoDiff/autodiff_function_inst_irgen.sil

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ import Builtin
1111
// vector and returns vector-Jacobian products evaluated at the original
1212
// parameter.
1313
sil hidden @foo_adj : $@convention(thin) (Float, Float, Float) -> Float {
14-
bb0(%0 : @trivial $Float, %1 : @trivial $Float, %2 : @trivial $Float):
14+
bb0(%0 : $Float, %1 : $Float, %2 : $Float):
1515
return %0 : $Float
1616
}
1717

1818
// The original function with an attribute that specifies the compiler-emitted pullback.
1919
sil hidden [differentiable source 0 wrt 0 vjp @foo_vjp] @foo : $@convention(thin) (Float) -> Float {
20-
bb0(%0 : @trivial $Float):
20+
bb0(%0 : $Float):
2121
return %0 : $Float
2222
}
2323

2424
// The vector-Jacobian product function, which returns the original result and a pullback.
2525
sil hidden @foo_vjp : $@convention(thin) (Float) -> (Float, @owned @callee_guaranteed (Float) -> Float) {
26-
bb0(%0 : @trivial $Float):
26+
bb0(%0 : $Float):
2727
%1 = function_ref @foo : $@convention(thin) (Float) -> Float
2828
%2 = apply %1(%0) : $@convention(thin) (Float) -> Float
2929
%3 = function_ref @foo_adj : $@convention(thin) (Float, Float, Float) -> Float

branches/tensorflow/test/AutoDiff/autodiff_sil_function_type_parse.sil

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %target-sil-opt -assume-parsing-unqualified-ownership-sil %s -module-name=autodiff_sil_function_type_parse | %target-sil-opt -assume-parsing-unqualified-ownership-sil -module-name=autodiff_sil_function_type_parse | %FileCheck %s
1+
// RUN: %target-sil-opt %s -module-name=autodiff_sil_function_type_parse | %target-sil-opt -module-name=autodiff_sil_function_type_parse | %FileCheck %s
22

33
sil_stage raw
44

branches/tensorflow/test/AutoDiff/builtin_differential_operators.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %target-run-simple-parse-stdlib-swift
1+
// RUN: %target-run
22
// REQUIRES: executable_test
33

44
import Swift

branches/tensorflow/test/AutoDiff/differentiable_sil_attr.sil

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %target-sil-opt -assume-parsing-unqualified-ownership-sil %s | %FileCheck %s
1+
// RUN: %target-sil-opt %s | %FileCheck %s
22

33
sil_stage raw
44

branches/tensorflow/test/AutoDiff/sildeclref_parse.sil

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %target-sil-opt -assume-parsing-unqualified-ownership-sil %s -module-name=sildeclref_parse | %target-sil-opt -assume-parsing-unqualified-ownership-sil -module-name=sildeclref_parse | %FileCheck %s
1+
// RUN: %target-sil-opt %s -module-name=sildeclref_parse | %target-sil-opt -module-name=sildeclref_parse | %FileCheck %s
22

33
import Swift
44

branches/tensorflow/test/AutoDiff/witness_method_autodiff.sil

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %target-sil-opt -differentiation -assume-parsing-unqualified-ownership-sil %s | %FileCheck %s
1+
// RUN: %target-sil-opt -differentiation %s | %FileCheck %s
22

33
sil_stage raw
44

branches/tensorflow/test/AutoDiff/witness_table_irgen.sil

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %target-swift-frontend -assume-parsing-unqualified-ownership-sil -parse-sil %s -emit-ir | %FileCheck %s
1+
// RUN: %target-swift-frontend -parse-sil %s -emit-ir | %FileCheck %s
22

33
sil_stage canonical
44

0 commit comments

Comments
 (0)