Swiftpack.co - UnGast/nifty as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by UnGast.
UnGast/nifty 1.0.0
Numerical computing in Swift – for Linux and macOS
⭐️ 0
🕓 2 years ago
.package(url: "https://github.com/UnGast/nifty.git", from: "1.0.0")

status codecov plaforms swift license

Nifty

initially forked from: philipce/nifty

Nifty is a general-purpose numerical computing library for the Swift programming language, made with performance and ease-of-use in mind.

Getting Started

Not sure if Nifty is what you're looking for? Check out a simple demo project or peruse the documentation to help you decide.

Installation

There are a number of options when it comes to getting up and running with Nifty. In order of easiness:

  • Pull down the Docker image
  • Use the included project file in Xcode
  • Install with the Swift Package Manager

Nifty is being developed on Ubuntu and macOS; whatever route you go, make sure your version is up to date. Also, our goal is to stay current as Swift develops, so make sure to install the latest release.

Docker

The niftyswift/nifty repo on Docker Hub comes with Swift and all the libraries installed! It even has a base project already set up, so you can just start coding with Nifty.

If you don't have Docker set up already, go here.

Once Docker is set up, the remaining steps are easy:

  • Pull down the image and start the container: docker run -it niftyswift/nifty – this will start a shell inside the container, within a preconfigured project folder
  • Open an editor and start writing code (e.g. vi main.swift)
  • Execute swift run – this will pull down the Nifty library code, compile your code, and run your executable (e.g. .build/debug/myapp)

If you've already got a project on your host machine, you can mount it when you start the container and edit locally, e.g. docker run -v /home/myapp:/myapp -it niftyswift/nifty

Xcode

Xcode users can just use the included project file. Simply drag the project file into your own Xcode project, add Nifty to your target's dependencies, and import Nifty at the top of any files in which you wish to use Nifty!

Nifty uses BLAS and LAPACK. When built with Xcode, these are provided by the Accelerate framework. Since Accelerate is installed on macOS by default, no additional installation steps are needed.

Swift Package Manager

Linux users (and those on macOS who prefer not to use Xcode) can install Nifty using the Swift Package Manager.

Nifty uses BLAS and LAPACK. When built with the Swift Package Manager, Nifty uses the C interface LAPACKE and the optimized library OpenBLAS. These can be installed with the following commands:

  • Ubuntu: sudo apt-get install liblapack3 liblapacke liblapacke-dev libopenblas-base libopenblas-dev
  • Mac: brew install homebrew/dupes/lapack homebrew/science/openblas

Once the dependencies are installed, using Nifty in your project simply requires that you create/modify your project manifest file to point to this repository as a dependency, and then import Nifty in whatever files you want to use it. Your project can then be built by simply running swift build.

Refer to the aforementioned demo project to see an example of what your project manifest (the file called Package.swift) should look like and how easy it is to use Nifty!

Usage

Nifty is intended to be simple and easy to use. For this reason, we've decided to structure things similarly to MATLAB. In fact, many of the function names in Nifty are the same as MATLAB. The hope is that MATLAB users will feel right at home and that users of similar packages (e.g. NumPy) will have an easy transition as well, making adoption as smooth as possible for as many people as possible. Check out the API!

Troubleshooting

If you're having problems getting up and running, check out our troubleshooting guide for possible solutions.

Nifty Features

Nifty is new and obviously not complete. The library is constantly expanding—if it doesn't yet have what you need, it will soon! Either come back later and check Nifty out when it's a little farther along or consider contributing!

We are currently working on getting the core set of general math and linear algebra functions finished:

  • general functions and definitions used throughout Nifty
  • matrix definition and linear algebra functionality
  • vector and tensor data structures
  • wrappers on glibc/math.h
  • basic functions related to statistics and probability

See our status page for details on the implementation status of all features, as well as plans for the future.

Tests and Benchmarks

Nifty uses the XCTest framework to manage unit tests. Tests can be run directly from Xcode or, if not using Xcode, by executing swift test in the repository root directory.

The goal is for Nifty to provide correctness and performance similar to other numerical computing standards. We'll be testing and benchmarking mainly against MATLAB and NumPy. Check out the status page to see where the test coverage is currently at. You can also check out the results of some simple benchmarks here.

Goals & Scope

The goals of Nifty can be summarized as follows:

  • Provide a viable alternative to packages such as NumPy and MATLAB for those who wish to develop in Swift, whether on macOS or Linux.
  • Develop fun and interesting code and algorithms.
  • Do as much in Swift as feasible.
  • Make exploration of the code as simple as possible.
  • Serve as a learning opportunity for those wishing to explore numerical computing.

Nifty is intended to be broad in scope; almost any generally interesting/useful tool related to numerical or scientific computing, data structures, algorithms, etc. is fair game. However, we will prioritize the core functionality as outlined on the status page.

Contributing

All contributions are welcome—whether suggestions, submissions, requests, or whatever! If you think of a nifty feature we ought to have, let us know. If you'd like to contribute, but aren't sure exactly what, visit the status page for ideas—a lot of things that wouldn't require a great deal of time or expertise remain unimplemented or untested!

To contribute code to this project:

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Check out the style guide
  4. Consider including a test, even if it's super basic
  5. Commit your changes: git commit -am 'Add some feature'
  6. Push to the branch: git push origin my-new-feature
  7. Open a pull request!

For anything else, feel free to open an issue!

We're also on Slack. Feel free to join in.

License

This project is licensed under the Apache License, Version 2.0, a complete copy of which can found in LICENSE, adjacent to this file.

GitHub

link
Stars: 0
Last commit: 2 years ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics