Build Information
Failed to build PerfectTensorFlow, reference master (dbbbed
), with Swift 6.2 (beta) for macOS (SPM) on 18 Jun 2025 09:57:25 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
1293 | }//end value
1294 |
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/PerfectTensorFlow.swift:1304:20: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
1302 | let data = buffer.data
1303 | else { return nil }
1304 | return try NodeDef(serializedData: data)
| |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
1305 | }catch {
1306 | return nil
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/PerfectTensorFlow.swift:1651:23: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
1649 |
1650 | do {
1651 | let def = try GraphDef(serializedData: data)
| |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
1652 | return def
1653 | } catch {
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/PerfectTensorFlow.swift:2213:20: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
2211 | throw Panic.FAULT(reason: status.message)
2212 | }
2213 | return try AttrValue(serializedData: proto)
| |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
2214 | }
2215 |
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/PerfectTensorFlow.swift:2237:23: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
2235 | public var definition: FunctionDef? {
2236 | if let buf = self.buffer, let proto = buf.data {
2237 | return try? FunctionDef(serializedData: proto)
| |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
2238 | } else {
2239 | return nil
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/PerfectTensorFlow.swift:2379:24: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
2377 | let pb = Buffer(buf: buf)
2378 | guard let dat = pb.data else { throw Panic.FAULT(reason: "Buffer contains no valid data") }
2379 | let opList = try Tensorflow_OpList(serializedData: dat)
| |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
2380 | operations = opList.op
2381 | }
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.attr_value.swift:37:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
35 | get {
36 | if case .s(let v)? = _storage._value {return v}
37 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
38 | }
39 | set {_uniqueStorage()._value = .s(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[121/199] Compiling PerfectTensorFlow pb.cluster.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/APILoader.swift:302:88: error: cannot find type 'float_t' in scope
300 | public static var SetAttrInt: @convention(c) (OpaquePointer, UnsafePointer<CChar>, Int64) -> Void = { _, _, _ in }
301 | public static var SetAttrIntList: @convention(c) (OpaquePointer, UnsafePointer<CChar>, UnsafePointer<Int64>, Int32) -> Void = { _, _, _, _ in }
302 | public static var SetAttrFloat: @convention(c) (OpaquePointer, UnsafePointer<CChar>, float_t) -> Void = { _, _, _ in }
| `- error: cannot find type 'float_t' in scope
303 | public static var SetAttrFloatList: @convention(c) (OpaquePointer, UnsafePointer<CChar>, UnsafePointer<float_t>, Int32) -> Void = { _, _, _, _ in }
304 | public static var SetAttrBool: @convention(c) (OpaquePointer, UnsafePointer<CChar>, UInt8) -> Void = { _, _, _ in }
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/APILoader.swift:303:106: error: cannot find type 'float_t' in scope
301 | public static var SetAttrIntList: @convention(c) (OpaquePointer, UnsafePointer<CChar>, UnsafePointer<Int64>, Int32) -> Void = { _, _, _, _ in }
302 | public static var SetAttrFloat: @convention(c) (OpaquePointer, UnsafePointer<CChar>, float_t) -> Void = { _, _, _ in }
303 | public static var SetAttrFloatList: @convention(c) (OpaquePointer, UnsafePointer<CChar>, UnsafePointer<float_t>, Int32) -> Void = { _, _, _, _ in }
| `- error: cannot find type 'float_t' in scope
304 | public static var SetAttrBool: @convention(c) (OpaquePointer, UnsafePointer<CChar>, UInt8) -> Void = { _, _, _ in }
305 | public static var SetAttrBoolList: @convention(c) (OpaquePointer, UnsafePointer<CChar>, UnsafePointer<UInt8>, Int32) -> Void = { _, _, _, _ in }
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/APILoader.swift:439:118: error: cannot find type 'float_t' in scope
437 | /// TF_AttrMetadata.list_size from TF_OperationGetAttrMetadata(oper,
438 | /// attr_name)).
439 | public static var OperationGetAttrFloat: @convention(c) (OpaquePointer, UnsafePointer<CChar>, UnsafeMutablePointer<float_t>, OpaquePointer) -> Void = { _, _, _, _ in }
| `- error: cannot find type 'float_t' in scope
440 |
441 | //// Fills in `values` with the value of the attribute `attr_name` of `oper`.
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/APILoader.swift:445:122: error: cannot find type 'float_t' in scope
443 | /// to TF_AttrMetadata.list_size from TF_OperationGetAttrMetadata(oper,
444 | /// attr_name)).
445 | public static var OperationGetAttrFloatList: @convention(c) (OpaquePointer, UnsafePointer<CChar>, UnsafeMutablePointer<float_t>, Int32, OpaquePointer) -> Void = { _, _, _, _, _ in }
| `- error: cannot find type 'float_t' in scope
446 |
447 | public static var OperationGetAttrBool: @convention(c) (OpaquePointer, UnsafePointer<CChar>, UnsafeMutablePointer<UInt8>, OpaquePointer) -> Void = { _, _, _, _ in }
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/APILoader.swift:67:47: error: cannot find 'dlerror' in scope
65 | public static func LoadFunction <T> (_ library: UnsafeMutableRawPointer?, _ symbol: String) throws -> T {
66 | guard let lib = library else {
67 | throw Panic.DLL(reason: String(cString: dlerror()))
| `- error: cannot find 'dlerror' in scope
68 | }//end guard
69 | guard let sym = dlsym(lib, symbol) else {
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/APILoader.swift:69:21: error: cannot find 'dlsym' in scope
67 | throw Panic.DLL(reason: String(cString: dlerror()))
68 | }//end guard
69 | guard let sym = dlsym(lib, symbol) else {
| `- error: cannot find 'dlsym' in scope
70 | throw Panic.SYM(reason: String(cString: dlerror()))
71 | }//end guard
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/APILoader.swift:70:47: error: cannot find 'dlerror' in scope
68 | }//end guard
69 | guard let sym = dlsym(lib, symbol) else {
70 | throw Panic.SYM(reason: String(cString: dlerror()))
| `- error: cannot find 'dlerror' in scope
71 | }//end guard
72 | return unsafeBitCast(sym, to: T.self)
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/APILoader.swift:1017:21: error: cannot find 'dlopen' in scope
1015 | /// - throws: Panic
1016 | public static func Open (_ library: String = "/usr/local/lib/libtensorflow.so") throws {
1017 | guard let lib = dlopen(library, RTLD_NOW) else {
| `- error: cannot find 'dlopen' in scope
1018 | throw Panic.DLL(reason: String(cString: dlerror()))
1019 | }//end lib
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/APILoader.swift:1017:37: error: cannot find 'RTLD_NOW' in scope
1015 | /// - throws: Panic
1016 | public static func Open (_ library: String = "/usr/local/lib/libtensorflow.so") throws {
1017 | guard let lib = dlopen(library, RTLD_NOW) else {
| `- error: cannot find 'RTLD_NOW' in scope
1018 | throw Panic.DLL(reason: String(cString: dlerror()))
1019 | }//end lib
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/APILoader.swift:1018:47: error: cannot find 'dlerror' in scope
1016 | public static func Open (_ library: String = "/usr/local/lib/libtensorflow.so") throws {
1017 | guard let lib = dlopen(library, RTLD_NOW) else {
1018 | throw Panic.DLL(reason: String(cString: dlerror()))
| `- error: cannot find 'dlerror' in scope
1019 | }//end lib
1020 | libDLL = lib
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/APILoader.swift:1194:11: error: cannot find 'dlclose' in scope
1192 | public static func Close() {
1193 | if let lib = libDLL {
1194 | _ = dlclose(lib)
| `- error: cannot find 'dlclose' in scope
1195 | }//end if
1196 | }//end func
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/PerfectTensorFlow.swift:1292:18: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
1290 | guard status.code == .OK, let data = buffer.data
1291 | else { throw Panic.FAULT(reason: status.message) }
1292 | return try AttrValue(serializedData: data)
| |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
1293 | }//end value
1294 |
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/PerfectTensorFlow.swift:1304:20: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
1302 | let data = buffer.data
1303 | else { return nil }
1304 | return try NodeDef(serializedData: data)
| |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
1305 | }catch {
1306 | return nil
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/PerfectTensorFlow.swift:1651:23: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
1649 |
1650 | do {
1651 | let def = try GraphDef(serializedData: data)
| |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
1652 | return def
1653 | } catch {
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/PerfectTensorFlow.swift:2213:20: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
2211 | throw Panic.FAULT(reason: status.message)
2212 | }
2213 | return try AttrValue(serializedData: proto)
| |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
2214 | }
2215 |
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/PerfectTensorFlow.swift:2237:23: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
2235 | public var definition: FunctionDef? {
2236 | if let buf = self.buffer, let proto = buf.data {
2237 | return try? FunctionDef(serializedData: proto)
| |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
2238 | } else {
2239 | return nil
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/PerfectTensorFlow.swift:2379:24: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
2377 | let pb = Buffer(buf: buf)
2378 | guard let dat = pb.data else { throw Panic.FAULT(reason: "Buffer contains no valid data") }
2379 | let opList = try Tensorflow_OpList(serializedData: dat)
| |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
2380 | operations = opList.op
2381 | }
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.attr_value.swift:37:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
35 | get {
36 | if case .s(let v)? = _storage._value {return v}
37 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
38 | }
39 | set {_uniqueStorage()._value = .s(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[122/199] Compiling PerfectTensorFlow pb.compare_test.swift
[123/199] Compiling PerfectTensorFlow pb.config.swift
[124/199] Compiling PerfectTensorFlow pb.control_flow.swift
[125/199] Compiling PerfectTensorFlow pb.cost_graph.swift
[126/199] Compiling PerfectTensorFlow pb.cpp_shape_inference.swift
[127/199] Compiling PerfectTensorFlow pb.debug.swift
[128/199] Compiling PerfectTensorFlow pb.debug_service.swift
[129/199] Compiling PerfectTensorFlow pb.debugger_event_metadata.swift
[130/199] Compiling PerfectTensorFlow pb.device_attributes.swift
[131/199] Compiling PerfectTensorFlow pb.device_properties.swift
[132/199] Compiling PerfectTensorFlow pb.manifest.swift
[133/199] Compiling PerfectTensorFlow pb.master.swift
[134/199] Compiling PerfectTensorFlow pb.master_service.swift
[135/199] Compiling PerfectTensorFlow pb.memmapped_file_system.swift
[136/199] Compiling PerfectTensorFlow pb.meta_graph.swift
[137/199] Compiling PerfectTensorFlow pb.model_flags.swift
[138/199] Compiling PerfectTensorFlow pb.mpi_message.swift
[139/199] Compiling PerfectTensorFlow pb.mpi_msg.swift
[140/199] Compiling PerfectTensorFlow pb.named_tensor.swift
[141/199] Compiling PerfectTensorFlow pb.node_def.swift
[142/199] Compiling PerfectTensorFlow pb.tfcompile.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tpu_profiler.swift:195:54: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
193 | var _computationGraph: [Tensorflow_GraphDef] = []
194 | var _hloMetadata: Tensorflow_RunMetadata? = nil
195 | var _encodedTrace: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
196 | var _opProfile: Tensorflow_Tpu_OpProfile_Profile? = nil
197 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[143/199] Compiling PerfectTensorFlow pb.tfprof_log.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tpu_profiler.swift:195:54: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
193 | var _computationGraph: [Tensorflow_GraphDef] = []
194 | var _hloMetadata: Tensorflow_RunMetadata? = nil
195 | var _encodedTrace: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
196 | var _opProfile: Tensorflow_Tpu_OpProfile_Profile? = nil
197 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[144/199] Compiling PerfectTensorFlow pb.tfprof_options.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tpu_profiler.swift:195:54: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
193 | var _computationGraph: [Tensorflow_GraphDef] = []
194 | var _hloMetadata: Tensorflow_RunMetadata? = nil
195 | var _encodedTrace: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
196 | var _opProfile: Tensorflow_Tpu_OpProfile_Profile? = nil
197 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[145/199] Compiling PerfectTensorFlow pb.tfprof_output.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tpu_profiler.swift:195:54: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
193 | var _computationGraph: [Tensorflow_GraphDef] = []
194 | var _hloMetadata: Tensorflow_RunMetadata? = nil
195 | var _encodedTrace: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
196 | var _opProfile: Tensorflow_Tpu_OpProfile_Profile? = nil
197 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[146/199] Compiling PerfectTensorFlow pb.toco_flags.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tpu_profiler.swift:195:54: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
193 | var _computationGraph: [Tensorflow_GraphDef] = []
194 | var _hloMetadata: Tensorflow_RunMetadata? = nil
195 | var _encodedTrace: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
196 | var _opProfile: Tensorflow_Tpu_OpProfile_Profile? = nil
197 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[147/199] Compiling PerfectTensorFlow pb.topology.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tpu_profiler.swift:195:54: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
193 | var _computationGraph: [Tensorflow_GraphDef] = []
194 | var _hloMetadata: Tensorflow_RunMetadata? = nil
195 | var _encodedTrace: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
196 | var _opProfile: Tensorflow_Tpu_OpProfile_Profile? = nil
197 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[148/199] Compiling PerfectTensorFlow pb.tpu_profiler.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tpu_profiler.swift:195:54: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
193 | var _computationGraph: [Tensorflow_GraphDef] = []
194 | var _hloMetadata: Tensorflow_RunMetadata? = nil
195 | var _encodedTrace: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
196 | var _opProfile: Tensorflow_Tpu_OpProfile_Profile? = nil
197 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[149/199] Compiling PerfectTensorFlow pb.trace_events.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tpu_profiler.swift:195:54: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
193 | var _computationGraph: [Tensorflow_GraphDef] = []
194 | var _hloMetadata: Tensorflow_RunMetadata? = nil
195 | var _encodedTrace: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
196 | var _opProfile: Tensorflow_Tpu_OpProfile_Profile? = nil
197 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[150/199] Compiling PerfectTensorFlow pb.trace_info.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tpu_profiler.swift:195:54: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
193 | var _computationGraph: [Tensorflow_GraphDef] = []
194 | var _hloMetadata: Tensorflow_RunMetadata? = nil
195 | var _encodedTrace: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
196 | var _opProfile: Tensorflow_Tpu_OpProfile_Profile? = nil
197 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[151/199] Compiling PerfectTensorFlow pb.resource_handle.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:173:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
171 | /// The content to store for the plugin. The best practice is for this to be
172 | /// a binary serialized protocol buffer.
173 | public var content: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
174 |
175 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:283:66: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
281 | /// Image data in encoded format. All image formats supported by
282 | /// image_codec::CoderUtil can be stored here.
283 | public var encodedImageString: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
284 |
285 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:340:66: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
338 | /// Encoded audio data and its associated RFC 2045 content type (e.g.
339 | /// "audio/wav").
340 | public var encodedAudioString: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
341 |
342 | public var contentType: String = String()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:437:39: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
435 | get {
436 | if case .obsoleteOldStyleHistogram(let v)? = _storage._value {return v}
437 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
438 | }
439 | set {_uniqueStorage()._value = .obsoleteOldStyleHistogram(newValue)}
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tensor.swift:230:54: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
228 |
229 | /// Portions of the object that are not Tensors.
230 | public var metadata: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
231 |
232 | /// Tensors contained within objects being serialized.
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tensor.swift:299:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
297 | var _tensorShape: Tensorflow_TensorShapeProto? = nil
298 | var _versionNumber: Int32 = 0
299 | var _tensorContent: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
300 | var _halfVal: [Int32] = []
301 | var _floatVal: [Float] = []
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[152/199] Compiling PerfectTensorFlow pb.rewriter_config.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:173:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
171 | /// The content to store for the plugin. The best practice is for this to be
172 | /// a binary serialized protocol buffer.
173 | public var content: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
174 |
175 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:283:66: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
281 | /// Image data in encoded format. All image formats supported by
282 | /// image_codec::CoderUtil can be stored here.
283 | public var encodedImageString: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
284 |
285 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:340:66: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
338 | /// Encoded audio data and its associated RFC 2045 content type (e.g.
339 | /// "audio/wav").
340 | public var encodedAudioString: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
341 |
342 | public var contentType: String = String()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:437:39: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
435 | get {
436 | if case .obsoleteOldStyleHistogram(let v)? = _storage._value {return v}
437 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
438 | }
439 | set {_uniqueStorage()._value = .obsoleteOldStyleHistogram(newValue)}
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tensor.swift:230:54: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
228 |
229 | /// Portions of the object that are not Tensors.
230 | public var metadata: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
231 |
232 | /// Tensors contained within objects being serialized.
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tensor.swift:299:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
297 | var _tensorShape: Tensorflow_TensorShapeProto? = nil
298 | var _versionNumber: Int32 = 0
299 | var _tensorContent: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
300 | var _halfVal: [Int32] = []
301 | var _floatVal: [Float] = []
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[153/199] Compiling PerfectTensorFlow pb.saved_model.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:173:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
171 | /// The content to store for the plugin. The best practice is for this to be
172 | /// a binary serialized protocol buffer.
173 | public var content: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
174 |
175 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:283:66: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
281 | /// Image data in encoded format. All image formats supported by
282 | /// image_codec::CoderUtil can be stored here.
283 | public var encodedImageString: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
284 |
285 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:340:66: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
338 | /// Encoded audio data and its associated RFC 2045 content type (e.g.
339 | /// "audio/wav").
340 | public var encodedAudioString: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
341 |
342 | public var contentType: String = String()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:437:39: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
435 | get {
436 | if case .obsoleteOldStyleHistogram(let v)? = _storage._value {return v}
437 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
438 | }
439 | set {_uniqueStorage()._value = .obsoleteOldStyleHistogram(newValue)}
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tensor.swift:230:54: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
228 |
229 | /// Portions of the object that are not Tensors.
230 | public var metadata: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
231 |
232 | /// Tensors contained within objects being serialized.
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tensor.swift:299:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
297 | var _tensorShape: Tensorflow_TensorShapeProto? = nil
298 | var _versionNumber: Int32 = 0
299 | var _tensorContent: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
300 | var _halfVal: [Int32] = []
301 | var _floatVal: [Float] = []
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[154/199] Compiling PerfectTensorFlow pb.saved_tensor_slice.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:173:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
171 | /// The content to store for the plugin. The best practice is for this to be
172 | /// a binary serialized protocol buffer.
173 | public var content: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
174 |
175 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:283:66: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
281 | /// Image data in encoded format. All image formats supported by
282 | /// image_codec::CoderUtil can be stored here.
283 | public var encodedImageString: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
284 |
285 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:340:66: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
338 | /// Encoded audio data and its associated RFC 2045 content type (e.g.
339 | /// "audio/wav").
340 | public var encodedAudioString: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
341 |
342 | public var contentType: String = String()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:437:39: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
435 | get {
436 | if case .obsoleteOldStyleHistogram(let v)? = _storage._value {return v}
437 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
438 | }
439 | set {_uniqueStorage()._value = .obsoleteOldStyleHistogram(newValue)}
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tensor.swift:230:54: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
228 |
229 | /// Portions of the object that are not Tensors.
230 | public var metadata: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
231 |
232 | /// Tensors contained within objects being serialized.
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tensor.swift:299:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
297 | var _tensorShape: Tensorflow_TensorShapeProto? = nil
298 | var _versionNumber: Int32 = 0
299 | var _tensorContent: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
300 | var _halfVal: [Int32] = []
301 | var _floatVal: [Float] = []
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[155/199] Compiling PerfectTensorFlow pb.saver.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:173:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
171 | /// The content to store for the plugin. The best practice is for this to be
172 | /// a binary serialized protocol buffer.
173 | public var content: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
174 |
175 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:283:66: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
281 | /// Image data in encoded format. All image formats supported by
282 | /// image_codec::CoderUtil can be stored here.
283 | public var encodedImageString: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
284 |
285 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:340:66: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
338 | /// Encoded audio data and its associated RFC 2045 content type (e.g.
339 | /// "audio/wav").
340 | public var encodedAudioString: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
341 |
342 | public var contentType: String = String()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:437:39: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
435 | get {
436 | if case .obsoleteOldStyleHistogram(let v)? = _storage._value {return v}
437 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
438 | }
439 | set {_uniqueStorage()._value = .obsoleteOldStyleHistogram(newValue)}
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tensor.swift:230:54: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
228 |
229 | /// Portions of the object that are not Tensors.
230 | public var metadata: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
231 |
232 | /// Tensors contained within objects being serialized.
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tensor.swift:299:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
297 | var _tensorShape: Tensorflow_TensorShapeProto? = nil
298 | var _versionNumber: Int32 = 0
299 | var _tensorContent: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
300 | var _halfVal: [Int32] = []
301 | var _floatVal: [Float] = []
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[156/199] Compiling PerfectTensorFlow pb.session.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:173:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
171 | /// The content to store for the plugin. The best practice is for this to be
172 | /// a binary serialized protocol buffer.
173 | public var content: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
174 |
175 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:283:66: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
281 | /// Image data in encoded format. All image formats supported by
282 | /// image_codec::CoderUtil can be stored here.
283 | public var encodedImageString: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
284 |
285 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:340:66: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
338 | /// Encoded audio data and its associated RFC 2045 content type (e.g.
339 | /// "audio/wav").
340 | public var encodedAudioString: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
341 |
342 | public var contentType: String = String()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:437:39: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
435 | get {
436 | if case .obsoleteOldStyleHistogram(let v)? = _storage._value {return v}
437 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
438 | }
439 | set {_uniqueStorage()._value = .obsoleteOldStyleHistogram(newValue)}
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tensor.swift:230:54: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
228 |
229 | /// Portions of the object that are not Tensors.
230 | public var metadata: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
231 |
232 | /// Tensors contained within objects being serialized.
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tensor.swift:299:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
297 | var _tensorShape: Tensorflow_TensorShapeProto? = nil
298 | var _versionNumber: Int32 = 0
299 | var _tensorContent: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
300 | var _halfVal: [Int32] = []
301 | var _floatVal: [Float] = []
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[157/199] Compiling PerfectTensorFlow pb.split_info.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:173:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
171 | /// The content to store for the plugin. The best practice is for this to be
172 | /// a binary serialized protocol buffer.
173 | public var content: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
174 |
175 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:283:66: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
281 | /// Image data in encoded format. All image formats supported by
282 | /// image_codec::CoderUtil can be stored here.
283 | public var encodedImageString: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
284 |
285 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:340:66: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
338 | /// Encoded audio data and its associated RFC 2045 content type (e.g.
339 | /// "audio/wav").
340 | public var encodedAudioString: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
341 |
342 | public var contentType: String = String()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:437:39: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
435 | get {
436 | if case .obsoleteOldStyleHistogram(let v)? = _storage._value {return v}
437 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
438 | }
439 | set {_uniqueStorage()._value = .obsoleteOldStyleHistogram(newValue)}
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tensor.swift:230:54: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
228 |
229 | /// Portions of the object that are not Tensors.
230 | public var metadata: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
231 |
232 | /// Tensors contained within objects being serialized.
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tensor.swift:299:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
297 | var _tensorShape: Tensorflow_TensorShapeProto? = nil
298 | var _versionNumber: Int32 = 0
299 | var _tensorContent: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
300 | var _halfVal: [Int32] = []
301 | var _floatVal: [Float] = []
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[158/199] Compiling PerfectTensorFlow pb.step_stats.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:173:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
171 | /// The content to store for the plugin. The best practice is for this to be
172 | /// a binary serialized protocol buffer.
173 | public var content: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
174 |
175 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:283:66: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
281 | /// Image data in encoded format. All image formats supported by
282 | /// image_codec::CoderUtil can be stored here.
283 | public var encodedImageString: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
284 |
285 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:340:66: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
338 | /// Encoded audio data and its associated RFC 2045 content type (e.g.
339 | /// "audio/wav").
340 | public var encodedAudioString: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
341 |
342 | public var contentType: String = String()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:437:39: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
435 | get {
436 | if case .obsoleteOldStyleHistogram(let v)? = _storage._value {return v}
437 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
438 | }
439 | set {_uniqueStorage()._value = .obsoleteOldStyleHistogram(newValue)}
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tensor.swift:230:54: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
228 |
229 | /// Portions of the object that are not Tensors.
230 | public var metadata: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
231 |
232 | /// Tensors contained within objects being serialized.
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tensor.swift:299:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
297 | var _tensorShape: Tensorflow_TensorShapeProto? = nil
298 | var _versionNumber: Int32 = 0
299 | var _tensorContent: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
300 | var _halfVal: [Int32] = []
301 | var _floatVal: [Float] = []
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[159/199] Compiling PerfectTensorFlow pb.summary.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:173:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
171 | /// The content to store for the plugin. The best practice is for this to be
172 | /// a binary serialized protocol buffer.
173 | public var content: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
174 |
175 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:283:66: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
281 | /// Image data in encoded format. All image formats supported by
282 | /// image_codec::CoderUtil can be stored here.
283 | public var encodedImageString: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
284 |
285 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:340:66: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
338 | /// Encoded audio data and its associated RFC 2045 content type (e.g.
339 | /// "audio/wav").
340 | public var encodedAudioString: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
341 |
342 | public var contentType: String = String()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:437:39: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
435 | get {
436 | if case .obsoleteOldStyleHistogram(let v)? = _storage._value {return v}
437 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
438 | }
439 | set {_uniqueStorage()._value = .obsoleteOldStyleHistogram(newValue)}
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tensor.swift:230:54: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
228 |
229 | /// Portions of the object that are not Tensors.
230 | public var metadata: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
231 |
232 | /// Tensors contained within objects being serialized.
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tensor.swift:299:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
297 | var _tensorShape: Tensorflow_TensorShapeProto? = nil
298 | var _versionNumber: Int32 = 0
299 | var _tensorContent: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
300 | var _halfVal: [Int32] = []
301 | var _floatVal: [Float] = []
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[160/199] Compiling PerfectTensorFlow pb.tensor.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:173:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
171 | /// The content to store for the plugin. The best practice is for this to be
172 | /// a binary serialized protocol buffer.
173 | public var content: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
174 |
175 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:283:66: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
281 | /// Image data in encoded format. All image formats supported by
282 | /// image_codec::CoderUtil can be stored here.
283 | public var encodedImageString: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
284 |
285 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:340:66: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
338 | /// Encoded audio data and its associated RFC 2045 content type (e.g.
339 | /// "audio/wav").
340 | public var encodedAudioString: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
341 |
342 | public var contentType: String = String()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.summary.swift:437:39: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
435 | get {
436 | if case .obsoleteOldStyleHistogram(let v)? = _storage._value {return v}
437 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
438 | }
439 | set {_uniqueStorage()._value = .obsoleteOldStyleHistogram(newValue)}
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tensor.swift:230:54: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
228 |
229 | /// Portions of the object that are not Tensors.
230 | public var metadata: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
231 |
232 | /// Tensors contained within objects being serialized.
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.tensor.swift:299:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
297 | var _tensorShape: Tensorflow_TensorShapeProto? = nil
298 | var _versionNumber: Int32 = 0
299 | var _tensorContent: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
300 | var _halfVal: [Int32] = []
301 | var _floatVal: [Float] = []
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[161/199] Compiling PerfectTensorFlow pb.generic_tree_model_extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.graph_transfer_info.swift:193:52: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
191 | public var shape: [Int64] = []
192 |
193 | public var data: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
194 |
195 | public var dtype: Tensorflow_DataType = .dtInvalid
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.hparam.swift:212:39: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
210 | get {
211 | if case .bytesValue(let v)? = _storage._kind {return v}
212 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
213 | }
214 | set {_uniqueStorage()._kind = .bytesValue(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[162/199] Compiling PerfectTensorFlow pb.graph.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.graph_transfer_info.swift:193:52: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
191 | public var shape: [Int64] = []
192 |
193 | public var data: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
194 |
195 | public var dtype: Tensorflow_DataType = .dtInvalid
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.hparam.swift:212:39: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
210 | get {
211 | if case .bytesValue(let v)? = _storage._kind {return v}
212 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
213 | }
214 | set {_uniqueStorage()._kind = .bytesValue(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[163/199] Compiling PerfectTensorFlow pb.graph_explorer.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.graph_transfer_info.swift:193:52: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
191 | public var shape: [Int64] = []
192 |
193 | public var data: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
194 |
195 | public var dtype: Tensorflow_DataType = .dtInvalid
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.hparam.swift:212:39: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
210 | get {
211 | if case .bytesValue(let v)? = _storage._kind {return v}
212 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
213 | }
214 | set {_uniqueStorage()._kind = .bytesValue(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[164/199] Compiling PerfectTensorFlow pb.graph_transfer_info.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.graph_transfer_info.swift:193:52: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
191 | public var shape: [Int64] = []
192 |
193 | public var data: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
194 |
195 | public var dtype: Tensorflow_DataType = .dtInvalid
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.hparam.swift:212:39: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
210 | get {
211 | if case .bytesValue(let v)? = _storage._kind {return v}
212 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
213 | }
214 | set {_uniqueStorage()._kind = .bytesValue(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[165/199] Compiling PerfectTensorFlow pb.hlo.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.graph_transfer_info.swift:193:52: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
191 | public var shape: [Int64] = []
192 |
193 | public var data: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
194 |
195 | public var dtype: Tensorflow_DataType = .dtInvalid
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.hparam.swift:212:39: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
210 | get {
211 | if case .bytesValue(let v)? = _storage._kind {return v}
212 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
213 | }
214 | set {_uniqueStorage()._kind = .bytesValue(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[166/199] Compiling PerfectTensorFlow pb.hparam.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.graph_transfer_info.swift:193:52: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
191 | public var shape: [Int64] = []
192 |
193 | public var data: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
194 |
195 | public var dtype: Tensorflow_DataType = .dtInvalid
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.hparam.swift:212:39: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
210 | get {
211 | if case .bytesValue(let v)? = _storage._kind {return v}
212 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
213 | }
214 | set {_uniqueStorage()._kind = .bytesValue(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[167/199] Compiling PerfectTensorFlow pb.iterator.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.graph_transfer_info.swift:193:52: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
191 | public var shape: [Int64] = []
192 |
193 | public var data: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
194 |
195 | public var dtype: Tensorflow_DataType = .dtInvalid
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.hparam.swift:212:39: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
210 | get {
211 | if case .bytesValue(let v)? = _storage._kind {return v}
212 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
213 | }
214 | set {_uniqueStorage()._kind = .bytesValue(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[168/199] Compiling PerfectTensorFlow pb.kernel_def.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.graph_transfer_info.swift:193:52: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
191 | public var shape: [Int64] = []
192 |
193 | public var data: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
194 |
195 | public var dtype: Tensorflow_DataType = .dtInvalid
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.hparam.swift:212:39: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
210 | get {
211 | if case .bytesValue(let v)? = _storage._kind {return v}
212 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
213 | }
214 | set {_uniqueStorage()._kind = .bytesValue(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[169/199] Compiling PerfectTensorFlow pb.learner.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.graph_transfer_info.swift:193:52: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
191 | public var shape: [Int64] = []
192 |
193 | public var data: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
194 |
195 | public var dtype: Tensorflow_DataType = .dtInvalid
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.hparam.swift:212:39: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
210 | get {
211 | if case .bytesValue(let v)? = _storage._kind {return v}
212 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
213 | }
214 | set {_uniqueStorage()._kind = .bytesValue(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[170/199] Compiling PerfectTensorFlow pb.log_memory.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.graph_transfer_info.swift:193:52: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
191 | public var shape: [Int64] = []
192 |
193 | public var data: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
194 |
195 | public var dtype: Tensorflow_DataType = .dtInvalid
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.hparam.swift:212:39: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
210 | get {
211 | if case .bytesValue(let v)? = _storage._kind {return v}
212 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
213 | }
214 | set {_uniqueStorage()._kind = .bytesValue(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[171/199] Compiling PerfectTensorFlow pb.error_codes.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:426:57: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
424 | /// Byte-encoded version of the `RunMetadata` proto in order to allow lazy
425 | /// deserialization.
426 | public var runMetadata: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
427 |
428 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:60:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
58 | get {
59 | if case .graphDef(let v)? = _storage._what {return v}
60 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
61 | }
62 | set {_uniqueStorage()._what = .graphDef(newValue)}
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:106:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
104 | get {
105 | if case .metaGraphDef(let v)? = _storage._what {return v}
106 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
107 | }
108 | set {_uniqueStorage()._what = .metaGraphDef(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[172/199] Compiling PerfectTensorFlow pb.event.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:426:57: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
424 | /// Byte-encoded version of the `RunMetadata` proto in order to allow lazy
425 | /// deserialization.
426 | public var runMetadata: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
427 |
428 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:60:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
58 | get {
59 | if case .graphDef(let v)? = _storage._what {return v}
60 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
61 | }
62 | set {_uniqueStorage()._what = .graphDef(newValue)}
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:106:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
104 | get {
105 | if case .metaGraphDef(let v)? = _storage._what {return v}
106 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
107 | }
108 | set {_uniqueStorage()._what = .metaGraphDef(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[173/199] Compiling PerfectTensorFlow pb.example.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:426:57: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
424 | /// Byte-encoded version of the `RunMetadata` proto in order to allow lazy
425 | /// deserialization.
426 | public var runMetadata: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
427 |
428 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:60:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
58 | get {
59 | if case .graphDef(let v)? = _storage._what {return v}
60 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
61 | }
62 | set {_uniqueStorage()._what = .graphDef(newValue)}
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:106:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
104 | get {
105 | if case .metaGraphDef(let v)? = _storage._what {return v}
106 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
107 | }
108 | set {_uniqueStorage()._what = .metaGraphDef(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[174/199] Compiling PerfectTensorFlow pb.example_parser_configuration.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:426:57: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
424 | /// Byte-encoded version of the `RunMetadata` proto in order to allow lazy
425 | /// deserialization.
426 | public var runMetadata: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
427 |
428 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:60:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
58 | get {
59 | if case .graphDef(let v)? = _storage._what {return v}
60 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
61 | }
62 | set {_uniqueStorage()._what = .graphDef(newValue)}
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:106:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
104 | get {
105 | if case .metaGraphDef(let v)? = _storage._what {return v}
106 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
107 | }
108 | set {_uniqueStorage()._what = .metaGraphDef(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[175/199] Compiling PerfectTensorFlow pb.example_proto_fast_parsing_test.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:426:57: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
424 | /// Byte-encoded version of the `RunMetadata` proto in order to allow lazy
425 | /// deserialization.
426 | public var runMetadata: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
427 |
428 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:60:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
58 | get {
59 | if case .graphDef(let v)? = _storage._what {return v}
60 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
61 | }
62 | set {_uniqueStorage()._what = .graphDef(newValue)}
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:106:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
104 | get {
105 | if case .metaGraphDef(let v)? = _storage._what {return v}
106 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
107 | }
108 | set {_uniqueStorage()._what = .metaGraphDef(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[176/199] Compiling PerfectTensorFlow pb.feature.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:426:57: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
424 | /// Byte-encoded version of the `RunMetadata` proto in order to allow lazy
425 | /// deserialization.
426 | public var runMetadata: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
427 |
428 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:60:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
58 | get {
59 | if case .graphDef(let v)? = _storage._what {return v}
60 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
61 | }
62 | set {_uniqueStorage()._what = .graphDef(newValue)}
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:106:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
104 | get {
105 | if case .metaGraphDef(let v)? = _storage._what {return v}
106 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
107 | }
108 | set {_uniqueStorage()._what = .metaGraphDef(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[177/199] Compiling PerfectTensorFlow pb.fertile_stats.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:426:57: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
424 | /// Byte-encoded version of the `RunMetadata` proto in order to allow lazy
425 | /// deserialization.
426 | public var runMetadata: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
427 |
428 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:60:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
58 | get {
59 | if case .graphDef(let v)? = _storage._what {return v}
60 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
61 | }
62 | set {_uniqueStorage()._what = .graphDef(newValue)}
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:106:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
104 | get {
105 | if case .metaGraphDef(let v)? = _storage._what {return v}
106 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
107 | }
108 | set {_uniqueStorage()._what = .metaGraphDef(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[178/199] Compiling PerfectTensorFlow pb.function.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:426:57: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
424 | /// Byte-encoded version of the `RunMetadata` proto in order to allow lazy
425 | /// deserialization.
426 | public var runMetadata: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
427 |
428 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:60:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
58 | get {
59 | if case .graphDef(let v)? = _storage._what {return v}
60 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
61 | }
62 | set {_uniqueStorage()._what = .graphDef(newValue)}
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:106:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
104 | get {
105 | if case .metaGraphDef(let v)? = _storage._what {return v}
106 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
107 | }
108 | set {_uniqueStorage()._what = .metaGraphDef(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[179/199] Compiling PerfectTensorFlow pb.gdr.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:426:57: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
424 | /// Byte-encoded version of the `RunMetadata` proto in order to allow lazy
425 | /// deserialization.
426 | public var runMetadata: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
427 |
428 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:60:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
58 | get {
59 | if case .graphDef(let v)? = _storage._what {return v}
60 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
61 | }
62 | set {_uniqueStorage()._what = .graphDef(newValue)}
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:106:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
104 | get {
105 | if case .metaGraphDef(let v)? = _storage._what {return v}
106 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
107 | }
108 | set {_uniqueStorage()._what = .metaGraphDef(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[180/199] Compiling PerfectTensorFlow pb.generic_tree_model.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:426:57: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
424 | /// Byte-encoded version of the `RunMetadata` proto in order to allow lazy
425 | /// deserialization.
426 | public var runMetadata: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
427 |
428 | public var unknownFields = SwiftProtobuf.UnknownStorage()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:60:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
58 | get {
59 | if case .graphDef(let v)? = _storage._what {return v}
60 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
61 | }
62 | set {_uniqueStorage()._what = .graphDef(newValue)}
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.event.swift:106:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
104 | get {
105 | if case .metaGraphDef(let v)? = _storage._what {return v}
106 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
107 | }
108 | set {_uniqueStorage()._what = .metaGraphDef(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[181/199] Compiling PerfectTensorFlow pb.tensor_bundle.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.test.swift:982:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
980 | var _optionalBool: Bool = false
981 | var _optionalString: String = String()
982 | var _optionalBytes: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
983 | var _optionalNestedMessage: Tensorflow_Test_TestAllTypes.NestedMessage? = nil
984 | var _optionalForeignMessage: Tensorflow_Test_ForeignMessage? = nil
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.test.swift:292:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
290 | get {
291 | if case .oneofBytes(let v)? = _storage._oneofField {return v}
292 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
293 | }
294 | set {_uniqueStorage()._oneofField = .oneofBytes(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[182/199] Compiling PerfectTensorFlow pb.tensor_description.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.test.swift:982:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
980 | var _optionalBool: Bool = false
981 | var _optionalString: String = String()
982 | var _optionalBytes: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
983 | var _optionalNestedMessage: Tensorflow_Test_TestAllTypes.NestedMessage? = nil
984 | var _optionalForeignMessage: Tensorflow_Test_ForeignMessage? = nil
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.test.swift:292:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
290 | get {
291 | if case .oneofBytes(let v)? = _storage._oneofField {return v}
292 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
293 | }
294 | set {_uniqueStorage()._oneofField = .oneofBytes(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[183/199] Compiling PerfectTensorFlow pb.tensor_forest_params.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.test.swift:982:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
980 | var _optionalBool: Bool = false
981 | var _optionalString: String = String()
982 | var _optionalBytes: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
983 | var _optionalNestedMessage: Tensorflow_Test_TestAllTypes.NestedMessage? = nil
984 | var _optionalForeignMessage: Tensorflow_Test_ForeignMessage? = nil
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.test.swift:292:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
290 | get {
291 | if case .oneofBytes(let v)? = _storage._oneofField {return v}
292 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
293 | }
294 | set {_uniqueStorage()._oneofField = .oneofBytes(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[184/199] Compiling PerfectTensorFlow pb.tensor_shape.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.test.swift:982:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
980 | var _optionalBool: Bool = false
981 | var _optionalString: String = String()
982 | var _optionalBytes: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
983 | var _optionalNestedMessage: Tensorflow_Test_TestAllTypes.NestedMessage? = nil
984 | var _optionalForeignMessage: Tensorflow_Test_ForeignMessage? = nil
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.test.swift:292:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
290 | get {
291 | if case .oneofBytes(let v)? = _storage._oneofField {return v}
292 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
293 | }
294 | set {_uniqueStorage()._oneofField = .oneofBytes(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[185/199] Compiling PerfectTensorFlow pb.tensor_slice.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.test.swift:982:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
980 | var _optionalBool: Bool = false
981 | var _optionalString: String = String()
982 | var _optionalBytes: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
983 | var _optionalNestedMessage: Tensorflow_Test_TestAllTypes.NestedMessage? = nil
984 | var _optionalForeignMessage: Tensorflow_Test_ForeignMessage? = nil
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.test.swift:292:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
290 | get {
291 | if case .oneofBytes(let v)? = _storage._oneofField {return v}
292 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
293 | }
294 | set {_uniqueStorage()._oneofField = .oneofBytes(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[186/199] Compiling PerfectTensorFlow pb.tensorflow_server.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.test.swift:982:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
980 | var _optionalBool: Bool = false
981 | var _optionalString: String = String()
982 | var _optionalBytes: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
983 | var _optionalNestedMessage: Tensorflow_Test_TestAllTypes.NestedMessage? = nil
984 | var _optionalForeignMessage: Tensorflow_Test_ForeignMessage? = nil
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.test.swift:292:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
290 | get {
291 | if case .oneofBytes(let v)? = _storage._oneofField {return v}
292 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
293 | }
294 | set {_uniqueStorage()._oneofField = .oneofBytes(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[187/199] Compiling PerfectTensorFlow pb.test.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.test.swift:982:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
980 | var _optionalBool: Bool = false
981 | var _optionalString: String = String()
982 | var _optionalBytes: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
983 | var _optionalNestedMessage: Tensorflow_Test_TestAllTypes.NestedMessage? = nil
984 | var _optionalForeignMessage: Tensorflow_Test_ForeignMessage? = nil
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.test.swift:292:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
290 | get {
291 | if case .oneofBytes(let v)? = _storage._oneofField {return v}
292 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
293 | }
294 | set {_uniqueStorage()._oneofField = .oneofBytes(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[188/199] Compiling PerfectTensorFlow pb.test_log.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.test.swift:982:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
980 | var _optionalBool: Bool = false
981 | var _optionalString: String = String()
982 | var _optionalBytes: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
983 | var _optionalNestedMessage: Tensorflow_Test_TestAllTypes.NestedMessage? = nil
984 | var _optionalForeignMessage: Tensorflow_Test_ForeignMessage? = nil
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.test.swift:292:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
290 | get {
291 | if case .oneofBytes(let v)? = _storage._oneofField {return v}
292 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
293 | }
294 | set {_uniqueStorage()._oneofField = .oneofBytes(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[189/199] Compiling PerfectTensorFlow pb.tf2xla.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.test.swift:982:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
980 | var _optionalBool: Bool = false
981 | var _optionalString: String = String()
982 | var _optionalBytes: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
983 | var _optionalNestedMessage: Tensorflow_Test_TestAllTypes.NestedMessage? = nil
984 | var _optionalForeignMessage: Tensorflow_Test_ForeignMessage? = nil
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.test.swift:292:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
290 | get {
291 | if case .oneofBytes(let v)? = _storage._oneofField {return v}
292 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
293 | }
294 | set {_uniqueStorage()._oneofField = .oneofBytes(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[190/199] Compiling PerfectTensorFlow pb.tf_op_stats.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.test.swift:982:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
980 | var _optionalBool: Bool = false
981 | var _optionalString: String = String()
982 | var _optionalBytes: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
983 | var _optionalNestedMessage: Tensorflow_Test_TestAllTypes.NestedMessage? = nil
984 | var _optionalForeignMessage: Tensorflow_Test_ForeignMessage? = nil
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.test.swift:292:37: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
290 | get {
291 | if case .oneofBytes(let v)? = _storage._oneofField {return v}
292 | return SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
293 | }
294 | set {_uniqueStorage()._oneofField = .oneofBytes(newValue)}
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[191/199] Compiling PerfectTensorFlow pb.tree_config.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:5636:45: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5634 | var _shape: Xla_Shape? = nil
5635 | var _preds: [Bool] = []
5636 | var _u8S: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5637 | var _s32S: [Int32] = []
5638 | var _s64S: [Int64] = []
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:5644:46: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5642 | var _f64S: [Double] = []
5643 | var _tupleLiterals: [Xla_LiteralProto] = []
5644 | var _f16S: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5645 |
5646 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:6039:48: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6037 | fileprivate class _StorageClass {
6038 | var _shape: Xla_Shape? = nil
6039 | var _config: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6040 |
6041 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:6084:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6082 | var _shape: Xla_Shape? = nil
6083 | var _operand: Xla_ComputationDataHandle? = nil
6084 | var _outfeedConfig: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6085 |
6086 | static let defaultInstance = _StorageClass()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[192/199] Compiling PerfectTensorFlow pb.types.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:5636:45: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5634 | var _shape: Xla_Shape? = nil
5635 | var _preds: [Bool] = []
5636 | var _u8S: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5637 | var _s32S: [Int32] = []
5638 | var _s64S: [Int64] = []
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:5644:46: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5642 | var _f64S: [Double] = []
5643 | var _tupleLiterals: [Xla_LiteralProto] = []
5644 | var _f16S: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5645 |
5646 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:6039:48: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6037 | fileprivate class _StorageClass {
6038 | var _shape: Xla_Shape? = nil
6039 | var _config: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6040 |
6041 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:6084:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6082 | var _shape: Xla_Shape? = nil
6083 | var _operand: Xla_ComputationDataHandle? = nil
6084 | var _outfeedConfig: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6085 |
6086 | static let defaultInstance = _StorageClass()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[193/199] Compiling PerfectTensorFlow pb.variable.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:5636:45: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5634 | var _shape: Xla_Shape? = nil
5635 | var _preds: [Bool] = []
5636 | var _u8S: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5637 | var _s32S: [Int32] = []
5638 | var _s64S: [Int64] = []
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:5644:46: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5642 | var _f64S: [Double] = []
5643 | var _tupleLiterals: [Xla_LiteralProto] = []
5644 | var _f16S: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5645 |
5646 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:6039:48: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6037 | fileprivate class _StorageClass {
6038 | var _shape: Xla_Shape? = nil
6039 | var _config: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6040 |
6041 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:6084:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6082 | var _shape: Xla_Shape? = nil
6083 | var _operand: Xla_ComputationDataHandle? = nil
6084 | var _outfeedConfig: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6085 |
6086 | static let defaultInstance = _StorageClass()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[194/199] Compiling PerfectTensorFlow pb.verbs_service.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:5636:45: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5634 | var _shape: Xla_Shape? = nil
5635 | var _preds: [Bool] = []
5636 | var _u8S: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5637 | var _s32S: [Int32] = []
5638 | var _s64S: [Int64] = []
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:5644:46: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5642 | var _f64S: [Double] = []
5643 | var _tupleLiterals: [Xla_LiteralProto] = []
5644 | var _f16S: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5645 |
5646 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:6039:48: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6037 | fileprivate class _StorageClass {
6038 | var _shape: Xla_Shape? = nil
6039 | var _config: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6040 |
6041 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:6084:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6082 | var _shape: Xla_Shape? = nil
6083 | var _operand: Xla_ComputationDataHandle? = nil
6084 | var _outfeedConfig: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6085 |
6086 | static let defaultInstance = _StorageClass()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[195/199] Compiling PerfectTensorFlow pb.versions.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:5636:45: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5634 | var _shape: Xla_Shape? = nil
5635 | var _preds: [Bool] = []
5636 | var _u8S: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5637 | var _s32S: [Int32] = []
5638 | var _s64S: [Int64] = []
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:5644:46: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5642 | var _f64S: [Double] = []
5643 | var _tupleLiterals: [Xla_LiteralProto] = []
5644 | var _f16S: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5645 |
5646 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:6039:48: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6037 | fileprivate class _StorageClass {
6038 | var _shape: Xla_Shape? = nil
6039 | var _config: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6040 |
6041 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:6084:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6082 | var _shape: Xla_Shape? = nil
6083 | var _operand: Xla_ComputationDataHandle? = nil
6084 | var _outfeedConfig: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6085 |
6086 | static let defaultInstance = _StorageClass()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[196/199] Compiling PerfectTensorFlow pb.worker.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:5636:45: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5634 | var _shape: Xla_Shape? = nil
5635 | var _preds: [Bool] = []
5636 | var _u8S: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5637 | var _s32S: [Int32] = []
5638 | var _s64S: [Int64] = []
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:5644:46: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5642 | var _f64S: [Double] = []
5643 | var _tupleLiterals: [Xla_LiteralProto] = []
5644 | var _f16S: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5645 |
5646 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:6039:48: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6037 | fileprivate class _StorageClass {
6038 | var _shape: Xla_Shape? = nil
6039 | var _config: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6040 |
6041 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:6084:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6082 | var _shape: Xla_Shape? = nil
6083 | var _operand: Xla_ComputationDataHandle? = nil
6084 | var _outfeedConfig: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6085 |
6086 | static let defaultInstance = _StorageClass()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[197/199] Compiling PerfectTensorFlow pb.worker_service.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:5636:45: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5634 | var _shape: Xla_Shape? = nil
5635 | var _preds: [Bool] = []
5636 | var _u8S: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5637 | var _s32S: [Int32] = []
5638 | var _s64S: [Int64] = []
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:5644:46: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5642 | var _f64S: [Double] = []
5643 | var _tupleLiterals: [Xla_LiteralProto] = []
5644 | var _f16S: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5645 |
5646 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:6039:48: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6037 | fileprivate class _StorageClass {
6038 | var _shape: Xla_Shape? = nil
6039 | var _config: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6040 |
6041 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:6084:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6082 | var _shape: Xla_Shape? = nil
6083 | var _operand: Xla_ComputationDataHandle? = nil
6084 | var _outfeedConfig: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6085 |
6086 | static let defaultInstance = _StorageClass()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[198/199] Compiling PerfectTensorFlow pb.xla.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:5636:45: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5634 | var _shape: Xla_Shape? = nil
5635 | var _preds: [Bool] = []
5636 | var _u8S: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5637 | var _s32S: [Int32] = []
5638 | var _s64S: [Int64] = []
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:5644:46: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5642 | var _f64S: [Double] = []
5643 | var _tupleLiterals: [Xla_LiteralProto] = []
5644 | var _f16S: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5645 |
5646 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:6039:48: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6037 | fileprivate class _StorageClass {
6038 | var _shape: Xla_Shape? = nil
6039 | var _config: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6040 |
6041 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:6084:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6082 | var _shape: Xla_Shape? = nil
6083 | var _operand: Xla_ComputationDataHandle? = nil
6084 | var _outfeedConfig: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6085 |
6086 | static let defaultInstance = _StorageClass()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[199/199] Compiling PerfectTensorFlow pb.xla_data.swift
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:5636:45: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5634 | var _shape: Xla_Shape? = nil
5635 | var _preds: [Bool] = []
5636 | var _u8S: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5637 | var _s32S: [Int32] = []
5638 | var _s64S: [Int64] = []
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:5644:46: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5642 | var _f64S: [Double] = []
5643 | var _tupleLiterals: [Xla_LiteralProto] = []
5644 | var _f16S: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
5645 |
5646 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:6039:48: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6037 | fileprivate class _StorageClass {
6038 | var _shape: Xla_Shape? = nil
6039 | var _config: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6040 |
6041 | static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/PerfectTensorFlow/pb.xla_data.swift:6084:55: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6082 | var _shape: Xla_Shape? = nil
6083 | var _operand: Xla_ComputationDataHandle? = nil
6084 | var _outfeedConfig: Data = SwiftProtobuf.Internal.emptyData
| `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information. [#DeprecatedDeclaration]
6085 |
6086 | static let defaultInstance = _StorageClass()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
Fetching https://github.com/apple/swift-protobuf.git
[1/39455] Fetching swift-protobuf
Fetched https://github.com/apple/swift-protobuf.git from cache (28.60s)
Computing version for https://github.com/apple/swift-protobuf.git
Computed https://github.com/apple/swift-protobuf.git at 1.30.0 (29.02s)
Creating working copy for https://github.com/apple/swift-protobuf.git
Working copy of https://github.com/apple/swift-protobuf.git resolved at 1.30.0
BUILD FAILURE 6.2 macosSpm