GithubHelp home page GithubHelp logo

tempbottle / primesieve Goto Github PK

View Code? Open in Web Editor NEW

This project forked from kimwalisch/primesieve

0.0 2.0 0.0 13.75 MB

Fast C/C++ prime number generator

Home Page: http://primesieve.org

License: BSD 2-Clause "Simplified" License

Shell 0.35% C++ 88.25% C 10.61% QMake 0.79%

primesieve's Introduction

primesieve

Build Status

primesieve is a program and C/C++ library that generates primes using a highly optimized sieve of Eratosthenes implementation. It counts the primes below 10^10 in just 0.57 seconds on an Intel Core i7‑4770 CPU (4 x 3.4GHz). primesieve can generate primes and prime k-tuplets up to 2^64.

Screenshot

primesieve windows screenshot

The screenshot shows the primesieve GUI application running on Windows. There is also a primesieve console application available. Binaries for Windows, Mac OS X and Linux can be downloaded from http://primesieve.org/downloads.

Algorithm complexity

primesieve generates primes using the segmented sieve of Eratosthenes with wheel factorization, this algorithm has a complexity of operations and uses space, more precisely primesieve's memory usage per thread is about bytes.

Requirements

primesieve is written in C++03, it compiles with every C++ compiler and runs on both little and big endian CPUs. The parallelization is implemented using OpenMP. The primesieve GUI application (not built by default) uses the Qt framework.

primesieve is also a library, it supports C++ and C directly. For a few other programming languages there exist easy to use bindings.

Build instructions (Unix-like OSes)

Download the latest release tarball from http://primesieve.org/downloads, extract it and cd into the newly created directory. Then build and install primesieve using:

$ ./configure
$ make
$ sudo make install

If you have cloned primesieve or downloaded a zip archive from GitHub then the GNU Build System (a.k.a. Autotools) must be installed and autogen.sh must be executed once. To install the GNU Build System install GNU Autoconf, GNU Automake and GNU Libtool using your package manager.

$ ./autogen.sh
$ ./configure
$ make
$ sudo make install

To enable building the example programs use:

$ ./configure --enable-examples

Build instructions (Microsoft Visual C++)

Open a Visual Studio Command Prompt, cd into the primesieve directory and build primesieve using:

> nmake -f Makefile.msvc

In order to get the best performance you can indicate your CPU's L1 data cache size in kilobytes per core (default 32), e.g. for a CPU with 64 kilobytes L1 data cache use:

> nmake -f Makefile.msvc L1_DCACHE_SIZE=64

To build the example programs use:

> nmake -f Makefile.msvc
> nmake -f Makefile.msvc examples

Console application

The primesieve console application can print and count primes and prime k-tuplets and find the nth prime. Below are a few usage examples:

# Print the primes below 1000000 to the standard output
$ ./primesieve 1000000 --print

# Print the twin primes below 1000000 to the standard output
$ ./primesieve 1000000 --print=2

# Count the primes below 1e10 using all CPU cores
$ ./primesieve 1e10 --count

# Count the primes within [1e10, 2e10] using 4 threads
$ ./primesieve 1e10 2e10 --count --threads=4

# Print an option summary
$ ./primesieve --help

C++ library

After having built and installed primesieve you can easily use it in your C++ program, below is an example. primesieve's API is documented online at http://primesieve.org/api.

#include <primesieve.hpp>
#include <iostream>
#include <vector>

int main()
{
  // store the primes below 1000
  std::vector<int> primes;
  primesieve::generate_primes(1000, &primes);

  primesieve::iterator pi;
  uint64_t prime;

  // iterate over the primes below 10^9
  while ((prime = pi.next_prime()) < 1000000000)
    std::cout << prime << std::endl;

  return 0;
}

On Unix-like operating systems compile using:

# Only needed if your operating system misses the ldconfig program
$ export LIBRARY_PATH=/usr/local/lib:$LIBRARY_PATH
$ export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
$ export CPLUS_INCLUDE_PATH=/usr/local/include:$CPLUS_INCLUDE_PATH

$ c++ -O2 primes.cpp -lprimesieve

On Windows (MSVC) compile using:

> cl /O2 /EHsc primes.cpp /I primesieve\include /link primesieve\primesieve.lib

C API

All of primesieve's functions are exposed as C API (C99 or later) via the primesieve.h header. You can browse primesieve's C API online at http://primesieve.org/api.

#include <primesieve.h>
#include <stdint.h>
#include <stdio.h>

int main()
{
  uint64_t start = 0;
  uint64_t stop = 10000;
  size_t i;
  size_t size;

  /* get an array with primes below 10000 */
  int* primes = (int*) primesieve_generate_primes(start, stop, &size, INT_PRIMES);

  for (i = 0; i < size; i++)
    printf("%i\n", primes[i]);

  /* deallocate primes array generated using primesieve */
  primesieve_free(primes);
  return 0;
}

On Unix-like operating systems compile using:

# Only needed if your operating system misses the ldconfig program
$ export LIBRARY_PATH=/usr/local/lib:$LIBRARY_PATH
$ export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
$ export C_INCLUDE_PATH=/usr/local/include:$C_INCLUDE_PATH

$ cc -O2 primes.c -lprimesieve

Bindings for other languages

primesieve supports C++ and C directly, and has bindings available for a few other languages:

Many thanks to the developers of these bindings!

primesieve's People

Contributors

kimwalisch avatar ohanar avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.