The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of Upsurge, reference 0.11.0 (66c662), with Swift 6.2 (beta) for macOS (SPM) on 18 Jun 2025 11:50:49 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.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
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/alejandro-isaza/Upsurge.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/27] 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 [#DeprecatedDeclaration]
 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 [#DeprecatedDeclaration]
 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)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[4/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 [#DeprecatedDeclaration]
 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 [#DeprecatedDeclaration]
 63 |         return real.hashValue ^ imag.hashValue
 64 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[5/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 [#DeprecatedDeclaration]
 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 [#DeprecatedDeclaration]
 63 |         return real.hashValue ^ imag.hashValue
 64 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[6/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 [#DeprecatedDeclaration]
 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 [#DeprecatedDeclaration]
 63 |         return real.hashValue ^ imag.hashValue
 64 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[7/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:)' [#DeprecatedDeclaration]
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:)' [#DeprecatedDeclaration]
   |                  `- note: use 'update(from:count:)' instead
88 |         }
89 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[8/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:)' [#DeprecatedDeclaration]
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:)' [#DeprecatedDeclaration]
   |                  `- note: use 'update(from:count:)' instead
88 |         }
89 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[9/29] Compiling Upsurge Sequence.swift
[10/29] Compiling Upsurge Span.swift
[11/29] Compiling Upsurge 2DTensorSlice.swift
[12/29] Compiling Upsurge Arithmetic.swift
[13/29] Compiling Upsurge Auxiliary.swift
[14/29] Compiling Upsurge ValueArray.swift
[15/29] Compiling Upsurge ValueArraySlice.swift
[16/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 |     }
[17/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 |     }
[18/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 |     }
[19/29] Compiling Upsurge ComplexArrayRealSlice.swift
[20/29] Compiling Upsurge ComplexArraySlice.swift
[21/29] Compiling Upsurge Exponential.swift
[22/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]
[23/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]
[24/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]
[25/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:)' [#DeprecatedDeclaration]
 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:)' [#DeprecatedDeclaration]
    |                             `- note: use 'update(from:count:)' instead
 73 |             }
 74 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[26/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:)' [#DeprecatedDeclaration]
 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:)' [#DeprecatedDeclaration]
    |                             `- note: use 'update(from:count:)' instead
 73 |             }
 74 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[27/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:)' [#DeprecatedDeclaration]
 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:)' [#DeprecatedDeclaration]
    |                             `- note: use 'update(from:count:)' instead
 73 |             }
 74 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[28/29] Compiling Upsurge Tensor.swift
[29/29] Compiling Upsurge TensorSlice.swift
Build complete! (5.78s)
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.