COpenBlas

1.1.0

A Swift wrapper for C libraries libopenblas-dev and liplapack-dev for Linux
CooperCorona/COpenBlas

What's New

x86_64 Support

2020-07-04T18:13:58Z

COpenBlas

A Swift wrapper for the C libraries libopenblas-dev and liblapack-dev. They provide various matrix and hardware accelerated linear algebra operations. On MacOS, this functionality is provided by Accelerate. However, Accelerate does not run in Linux environments. Hence, COpenBlas. Currently, COpenBlas only supports 64-bit arm Linux environments. I don't have any other machines to test on, so if you download it and it won't compile, module.modulemap probably needs an entry with the correct header for your environment.

Usage

  • In your Package.swift, add .package(url: "https://github.com/CooperCorona/COpenBlas.git", from: "1.0.0") (or whatever version you want to use) in the dependencies array. Then, in the dependencies array for each target, add COpenBlas.
  • In any file you want to use BLAS or LAPACK functions, add the following to your imports:
#if os(macOS)
import Accelerate
#else
import COpenBlas
// Optional
private typealias __CLPK_integer = Int32
#endif

Accelerate only exists on Mac, but COpenBlas only exists on Linux. The __CLPK_integer typealias is defined by Accelerate. If you use it, you may need to define it yourself. WARNING: I think Int32 is the correct type, but it may depend on environment, so I'm not sure.

Description

  • Swift Tools 5.1.0
View More Packages from this Author

Dependencies

  • None
Last updated: Mon Mar 11 2024 15:43:25 GMT-0900 (Hawaii-Aleutian Daylight Time)