---
title: "cblas_sdsdot(_:_:_:_:_:_:)"
framework: accelerate
role: symbol
role_heading: Function
path: "accelerate/cblas_sdsdot(_:_:_:_:_:_:)"
---

# cblas_sdsdot(_:_:_:_:_:_:)

Computes the dot product of two single-precision vectors plus an initial single-precision value.

## Declaration

```swift
func cblas_sdsdot(_ N: __LAPACK_int, _ ALPHA: Float, _ X: UnsafePointer<Float>?, _ INCX: __LAPACK_int, _ Y: UnsafePointer<Float>?, _ INCY: __LAPACK_int) -> Float
```

## Parameters

- `N`: The number of elements in the vectors.
- `ALPHA`: The initial value to add to the dot product.
- `X`: Vector X.
- `INCX`: Stride within X. For example, if incX is 7, every 7th element is used.
- `Y`: Vector Y.
- `INCY`: Stride within Y. For example, if incY is 7, every 7th element is used.

## Discussion

Discussion important: Apple provides the BLAS and LAPACK libraries under the Accelerate framework to be in line with LAPACK 3.9.1. Starting with iOS 26, iPadOS 26, macOS 26, tvOS 26, visionOS 26, and watchOS 26, the libraries are in line with LAPACK 3.12.0. These new interfaces provide additional functionality, as well as a new ILP64 interface. To use the new interfaces, define ACCELERATE_NEW_LAPACK before including the Accelerate or vecLib headers. For ILP64 interfaces, also define ACCELERATE_LAPACK_ILP64. For Swift projects, specify ACCELERATE_NEW_LAPACK=1 and ACCELERATE_LAPACK_ILP64=1 as preprocessor macros in Xcode build settings under Apple Clang - Preprocessing > Preprocessor Macros.

## See Also

### CATLAS and CBLAS vector functions

- [catlas_caxpby(_:_:_:_:_:_:_:)](accelerate/catlas_caxpby(_:_:_:_:_:_:_:).md)
- [catlas_cset(_:_:_:_:)](accelerate/catlas_cset(_:_:_:_:).md)
- [catlas_daxpby(_:_:_:_:_:_:_:)](accelerate/catlas_daxpby(_:_:_:_:_:_:_:).md)
- [catlas_dset(_:_:_:_:)](accelerate/catlas_dset(_:_:_:_:).md)
- [catlas_saxpby(_:_:_:_:_:_:_:)](accelerate/catlas_saxpby(_:_:_:_:_:_:_:).md)
- [catlas_sset(_:_:_:_:)](accelerate/catlas_sset(_:_:_:_:).md)
- [catlas_zaxpby(_:_:_:_:_:_:_:)](accelerate/catlas_zaxpby(_:_:_:_:_:_:_:).md)
- [catlas_zset(_:_:_:_:)](accelerate/catlas_zset(_:_:_:_:).md)
- [cblas_sdot(_:_:_:_:_:)](accelerate/cblas_sdot(_:_:_:_:_:).md)
- [cblas_cdotc_sub(_:_:_:_:_:_:)](accelerate/cblas_cdotc_sub(_:_:_:_:_:_:).md)
- [cblas_cdotu_sub(_:_:_:_:_:_:)](accelerate/cblas_cdotu_sub(_:_:_:_:_:_:).md)
- [cblas_ddot(_:_:_:_:_:)](accelerate/cblas_ddot(_:_:_:_:_:).md)
- [cblas_dsdot(_:_:_:_:_:)](accelerate/cblas_dsdot(_:_:_:_:_:).md)
- [cblas_zdotc_sub(_:_:_:_:_:_:)](accelerate/cblas_zdotc_sub(_:_:_:_:_:_:).md)
- [cblas_zdotu_sub(_:_:_:_:_:_:)](accelerate/cblas_zdotu_sub(_:_:_:_:_:_:).md)
