The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of Upsurge, reference 0.11.0 (66c662), with Swift 6.0 for macOS (SPM) on 1 Nov 2024 01:52:34 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/alejandro-isaza/Upsurge.git
Reference: 0.11.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/alejandro-isaza/Upsurge
 * tag               0.11.0     -> FETCH_HEAD
HEAD is now at 66c6625 Update podspec
Cloned https://github.com/alejandro-isaza/Upsurge.git
Revision (git rev-parse @):
66c66253ab0d1a0988a6efb68f49629cf3e06a84
SUCCESS checkout https://github.com/alejandro-isaza/Upsurge.git at 0.11.0
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "upsurge",
      "name": "Upsurge",
      "url": "https://github.com/alejandro-isaza/Upsurge.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Upsurge",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/alejandro-isaza/Upsurge.git
[1/2596] Fetching upsurge
Fetched https://github.com/alejandro-isaza/Upsurge.git from cache (0.96s)
Creating working copy for https://github.com/alejandro-isaza/Upsurge.git
Working copy of https://github.com/alejandro-isaza/Upsurge.git resolved at 0.11.0 (66c6625)
warning: '.resolve-product-dependencies': dependency 'upsurge' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/alejandro-isaza/Upsurge.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--7754E27361AE5C74.txt
[3/27] Compiling Upsurge ComplexArrayRealSlice.swift
[4/27] Compiling Upsurge ComplexArraySlice.swift
[5/27] Compiling Upsurge Exponential.swift
[6/29] Compiling Upsurge 2DTensorSlice.swift
[7/29] Compiling Upsurge Arithmetic.swift
[8/29] Compiling Upsurge Auxiliary.swift
[9/29] Emitting module Upsurge
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/Complex.swift:62:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Complex' to 'Hashable' by implementing 'hash(into:)' instead
 60 |     }
 61 |
 62 |     public var hashValue: Int {
    |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Complex' to 'Hashable' by implementing 'hash(into:)' instead
 63 |         return real.hashValue ^ imag.hashValue
 64 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:37:5: warning: 'public' modifier is redundant for property declared in a public extension
 35 |
 36 | public extension LinearType {
 37 |     public var dimensions: [Int] {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
 38 |         return [count]
 39 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:41:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 39 |     }
 40 |
 41 |     public func index(after i: Int) -> Int {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 42 |         return i + 1
 43 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:45:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 43 |     }
 44 |
 45 |     public func index(before i: Int) -> Int {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 46 |         return i - 1
 47 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:49:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 47 |     }
 48 |
 49 |     public func formIndex(after i: inout Int) {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 50 |         i += 1
 51 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:53:5: warning: 'public' modifier is redundant for property declared in a public extension
 51 |     }
 52 |
 53 |     public var description: String {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
 54 |         return "[\(map { "\($0)" }.joined(separator: ", "))]"
 55 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:57:5: warning: 'public' modifier is redundant for property declared in a public extension
 55 |     }
 56 |
 57 |     public var debugDescription: String {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
 58 |         return description
 59 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/QuadraticType.swift:49:5: warning: 'public' modifier is redundant for property declared in a public extension
47 | public extension QuadraticType {
48 |     /// The number of valid element in the memory block, taking into account the step size.
49 |     public var count: Int {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
50 |         return rows * columns
51 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/QuadraticType.swift:53:5: warning: 'public' modifier is redundant for property declared in a public extension
51 |     }
52 |
53 |     public var dimensions: [Int] {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
54 |         if arrangement == .rowMajor {
55 |             return [rows, columns]
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/TensorType.swift:41:5: warning: 'public' modifier is redundant for property declared in a public extension
39 | public extension TensorType {
40 |     /// The size of each dimension
41 |     public var dimensions: [Int] {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
42 |         return span.dimensions
43 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/TensorType.swift:46:5: warning: 'public' modifier is redundant for property declared in a public extension
44 |
45 |     /// The number of dimensions
46 |     public var rank: Int {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
47 |         return span.rank
48 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/TensorType.swift:51:5: warning: 'public' modifier is redundant for instance method declared in a public extension
49 |
50 |     /// Convert a high-dimensional index into an integer index for a LinearType
51 |     public func linearIndex(_ indices: [Int]) -> Int {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
52 |         precondition(indexIsValid(indices))
53 |         var index = indices[0]
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/TensorType.swift:61:5: warning: 'public' modifier is redundant for instance method declared in a public extension
59 |
60 |     /// Check that an index falls within the span
61 |     public func indexIsValid(_ indices: [Int]) -> Bool {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
62 |         return indices.count == rank && indices.enumerated().all { (i, index) in
63 |             self.span[i].contains(index)
[10/29] Compiling Upsurge Tensor.swift
[11/29] Compiling Upsurge TensorSlice.swift
[12/29] Compiling Upsurge Interval.swift
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:37:5: warning: 'public' modifier is redundant for property declared in a public extension
 35 |
 36 | public extension LinearType {
 37 |     public var dimensions: [Int] {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
 38 |         return [count]
 39 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:41:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 39 |     }
 40 |
 41 |     public func index(after i: Int) -> Int {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 42 |         return i + 1
 43 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:45:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 43 |     }
 44 |
 45 |     public func index(before i: Int) -> Int {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 46 |         return i - 1
 47 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:49:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 47 |     }
 48 |
 49 |     public func formIndex(after i: inout Int) {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 50 |         i += 1
 51 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:53:5: warning: 'public' modifier is redundant for property declared in a public extension
 51 |     }
 52 |
 53 |     public var description: String {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
 54 |         return "[\(map { "\($0)" }.joined(separator: ", "))]"
 55 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:57:5: warning: 'public' modifier is redundant for property declared in a public extension
 55 |     }
 56 |
 57 |     public var debugDescription: String {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
 58 |         return description
 59 |     }
[13/29] Compiling Upsurge LinearOperators.swift
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:37:5: warning: 'public' modifier is redundant for property declared in a public extension
 35 |
 36 | public extension LinearType {
 37 |     public var dimensions: [Int] {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
 38 |         return [count]
 39 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:41:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 39 |     }
 40 |
 41 |     public func index(after i: Int) -> Int {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 42 |         return i + 1
 43 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:45:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 43 |     }
 44 |
 45 |     public func index(before i: Int) -> Int {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 46 |         return i - 1
 47 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:49:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 47 |     }
 48 |
 49 |     public func formIndex(after i: inout Int) {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 50 |         i += 1
 51 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:53:5: warning: 'public' modifier is redundant for property declared in a public extension
 51 |     }
 52 |
 53 |     public var description: String {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
 54 |         return "[\(map { "\($0)" }.joined(separator: ", "))]"
 55 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:57:5: warning: 'public' modifier is redundant for property declared in a public extension
 55 |     }
 56 |
 57 |     public var debugDescription: String {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
 58 |         return description
 59 |     }
[14/29] Compiling Upsurge LinearType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:37:5: warning: 'public' modifier is redundant for property declared in a public extension
 35 |
 36 | public extension LinearType {
 37 |     public var dimensions: [Int] {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
 38 |         return [count]
 39 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:41:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 39 |     }
 40 |
 41 |     public func index(after i: Int) -> Int {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 42 |         return i + 1
 43 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:45:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 43 |     }
 44 |
 45 |     public func index(before i: Int) -> Int {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 46 |         return i - 1
 47 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:49:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 47 |     }
 48 |
 49 |     public func formIndex(after i: inout Int) {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 50 |         i += 1
 51 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:53:5: warning: 'public' modifier is redundant for property declared in a public extension
 51 |     }
 52 |
 53 |     public var description: String {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
 54 |         return "[\(map { "\($0)" }.joined(separator: ", "))]"
 55 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/LinearType.swift:57:5: warning: 'public' modifier is redundant for property declared in a public extension
 55 |     }
 56 |
 57 |     public var debugDescription: String {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
 58 |         return description
 59 |     }
[15/29] Compiling Upsurge Complex.swift
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/Complex.swift:62:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Complex' to 'Hashable' by implementing 'hash(into:)' instead
 60 |     }
 61 |
 62 |     public var hashValue: Int {
    |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Complex' to 'Hashable' by implementing 'hash(into:)' instead
 63 |         return real.hashValue ^ imag.hashValue
 64 |     }
[16/29] Compiling Upsurge ComplexArithmetic.swift
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/Complex.swift:62:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Complex' to 'Hashable' by implementing 'hash(into:)' instead
 60 |     }
 61 |
 62 |     public var hashValue: Int {
    |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Complex' to 'Hashable' by implementing 'hash(into:)' instead
 63 |         return real.hashValue ^ imag.hashValue
 64 |     }
[17/29] Compiling Upsurge ComplexArray.swift
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/Complex.swift:62:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Complex' to 'Hashable' by implementing 'hash(into:)' instead
 60 |     }
 61 |
 62 |     public var hashValue: Int {
    |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Complex' to 'Hashable' by implementing 'hash(into:)' instead
 63 |         return real.hashValue ^ imag.hashValue
 64 |     }
[18/29] Compiling Upsurge TensorType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/TensorType.swift:41:5: warning: 'public' modifier is redundant for property declared in a public extension
39 | public extension TensorType {
40 |     /// The size of each dimension
41 |     public var dimensions: [Int] {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
42 |         return span.dimensions
43 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/TensorType.swift:46:5: warning: 'public' modifier is redundant for property declared in a public extension
44 |
45 |     /// The number of dimensions
46 |     public var rank: Int {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
47 |         return span.rank
48 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/TensorType.swift:51:5: warning: 'public' modifier is redundant for instance method declared in a public extension
49 |
50 |     /// Convert a high-dimensional index into an integer index for a LinearType
51 |     public func linearIndex(_ indices: [Int]) -> Int {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
52 |         precondition(indexIsValid(indices))
53 |         var index = indices[0]
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/TensorType.swift:61:5: warning: 'public' modifier is redundant for instance method declared in a public extension
59 |
60 |     /// Check that an index falls within the span
61 |     public func indexIsValid(_ indices: [Int]) -> Bool {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
62 |         return indices.count == rank && indices.enumerated().all { (i, index) in
63 |             self.span[i].contains(index)
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/TensorType.swift:87:18: warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)'
85 |         precondition(rhs.count <= count)
86 |         withPointers(&self, rhs) { lhsp, rhsp in
87 |             lhsp.assign(from: UnsafeMutablePointer(mutating: rhsp), count: count)
   |                  |- warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)'
   |                  `- note: use 'update(from:count:)' instead
88 |         }
89 |     }
[19/29] Compiling Upsurge Value.swift
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/TensorType.swift:41:5: warning: 'public' modifier is redundant for property declared in a public extension
39 | public extension TensorType {
40 |     /// The size of each dimension
41 |     public var dimensions: [Int] {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
42 |         return span.dimensions
43 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/TensorType.swift:46:5: warning: 'public' modifier is redundant for property declared in a public extension
44 |
45 |     /// The number of dimensions
46 |     public var rank: Int {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
47 |         return span.rank
48 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/TensorType.swift:51:5: warning: 'public' modifier is redundant for instance method declared in a public extension
49 |
50 |     /// Convert a high-dimensional index into an integer index for a LinearType
51 |     public func linearIndex(_ indices: [Int]) -> Int {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
52 |         precondition(indexIsValid(indices))
53 |         var index = indices[0]
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/TensorType.swift:61:5: warning: 'public' modifier is redundant for instance method declared in a public extension
59 |
60 |     /// Check that an index falls within the span
61 |     public func indexIsValid(_ indices: [Int]) -> Bool {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
62 |         return indices.count == rank && indices.enumerated().all { (i, index) in
63 |             self.span[i].contains(index)
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/TensorType.swift:87:18: warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)'
85 |         precondition(rhs.count <= count)
86 |         withPointers(&self, rhs) { lhsp, rhsp in
87 |             lhsp.assign(from: UnsafeMutablePointer(mutating: rhsp), count: count)
   |                  |- warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)'
   |                  `- note: use 'update(from:count:)' instead
88 |         }
89 |     }
[20/29] Compiling Upsurge Sequence.swift
[21/29] Compiling Upsurge Span.swift
[22/29] Compiling Upsurge ValueArray.swift
[23/29] Compiling Upsurge ValueArraySlice.swift
[24/29] Compiling Upsurge PointerUtilities.swift
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/QuadraticType.swift:49:5: warning: 'public' modifier is redundant for property declared in a public extension
47 | public extension QuadraticType {
48 |     /// The number of valid element in the memory block, taking into account the step size.
49 |     public var count: Int {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
50 |         return rows * columns
51 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/QuadraticType.swift:53:5: warning: 'public' modifier is redundant for property declared in a public extension
51 |     }
52 |
53 |     public var dimensions: [Int] {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
54 |         if arrangement == .rowMajor {
55 |             return [rows, columns]
[25/29] Compiling Upsurge QuadraticType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/QuadraticType.swift:49:5: warning: 'public' modifier is redundant for property declared in a public extension
47 | public extension QuadraticType {
48 |     /// The number of valid element in the memory block, taking into account the step size.
49 |     public var count: Int {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
50 |         return rows * columns
51 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/QuadraticType.swift:53:5: warning: 'public' modifier is redundant for property declared in a public extension
51 |     }
52 |
53 |     public var dimensions: [Int] {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
54 |         if arrangement == .rowMajor {
55 |             return [rows, columns]
[26/29] Compiling Upsurge Real.swift
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/QuadraticType.swift:49:5: warning: 'public' modifier is redundant for property declared in a public extension
47 | public extension QuadraticType {
48 |     /// The number of valid element in the memory block, taking into account the step size.
49 |     public var count: Int {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
50 |         return rows * columns
51 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/QuadraticType.swift:53:5: warning: 'public' modifier is redundant for property declared in a public extension
51 |     }
52 |
53 |     public var dimensions: [Int] {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
54 |         if arrangement == .rowMajor {
55 |             return [rows, columns]
[27/29] Compiling Upsurge Matrix.swift
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/Matrix.swift:72:29: warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)'
 70 |                 let sourcePointer = UnsafeMutablePointer<Element>(mutating: pointer.baseAddress! + (row * quad.stride))
 71 |                 let destPointer = elements.mutablePointer + row * columns
 72 |                 destPointer.assign(from: sourcePointer, count: columns)
    |                             |- warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)'
    |                             `- note: use 'update(from:count:)' instead
 73 |             }
 74 |         }
[28/29] Compiling Upsurge MatrixArithmetic.swift
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/Matrix.swift:72:29: warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)'
 70 |                 let sourcePointer = UnsafeMutablePointer<Element>(mutating: pointer.baseAddress! + (row * quad.stride))
 71 |                 let destPointer = elements.mutablePointer + row * columns
 72 |                 destPointer.assign(from: sourcePointer, count: columns)
    |                             |- warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)'
    |                             `- note: use 'update(from:count:)' instead
 73 |             }
 74 |         }
[29/29] Compiling Upsurge MatrixSlice.swift
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/Matrix.swift:72:29: warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)'
 70 |                 let sourcePointer = UnsafeMutablePointer<Element>(mutating: pointer.baseAddress! + (row * quad.stride))
 71 |                 let destPointer = elements.mutablePointer + row * columns
 72 |                 destPointer.assign(from: sourcePointer, count: columns)
    |                             |- warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)'
    |                             `- note: use 'update(from:count:)' instead
 73 |             }
 74 |         }
Build complete! (14.97s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Upsurge",
  "name" : "Upsurge",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Upsurge",
      "targets" : [
        "Upsurge"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "UpsurgeTests",
      "module_type" : "SwiftTarget",
      "name" : "UpsurgeTests",
      "path" : "Tests/UpsurgeTests",
      "sources" : [
        "ArithmeticTests.swift",
        "AuxiliaryTests.swift",
        "ComplexTests.swift",
        "ExponentialTests.swift",
        "RealMatrixTests.swift",
        "SpanTests.swift",
        "TensorTests.swift",
        "ValueArraySliceTests.swift",
        "ValueArrayTests.swift",
        "XCTestCase+Surge.swift"
      ],
      "target_dependencies" : [
        "Upsurge"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Upsurge",
      "module_type" : "SwiftTarget",
      "name" : "Upsurge",
      "path" : "Sources/Upsurge",
      "product_memberships" : [
        "Upsurge"
      ],
      "sources" : [
        "2DTensorSlice.swift",
        "Arithmetic.swift",
        "Auxiliary.swift",
        "Complex.swift",
        "ComplexArithmetic.swift",
        "ComplexArray.swift",
        "ComplexArrayRealSlice.swift",
        "ComplexArraySlice.swift",
        "Exponential.swift",
        "Interval.swift",
        "LinearOperators.swift",
        "LinearType.swift",
        "Matrix.swift",
        "MatrixArithmetic.swift",
        "MatrixSlice.swift",
        "PointerUtilities.swift",
        "QuadraticType.swift",
        "Real.swift",
        "Sequence.swift",
        "Span.swift",
        "Tensor.swift",
        "TensorSlice.swift",
        "TensorType.swift",
        "Value.swift",
        "ValueArray.swift",
        "ValueArraySlice.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.