Code Monkey home page Code Monkey logo

multiprocessing-with-golang's Introduction

Multiprocessing-with-golang

This little research carried out to know how efficeint the Golang concurrency feature is! This script consists of the hybrid sorting algorithm (concepts of selection sort & mergeSort) Any N sized array is divided into four (because I have 4 cores (2 real cores and another two are virtual core through hyper-threading in intel i3) sub-arrays and they are called concurrently for sorting. Once these four sub-arrays are sorted, function merge merges those sub-arrays and returns a final sorted array. below are the statistics for input size 1 million (10^6) integers,

  1. simple selection sort in Go takes around 4 min
  2. hybrid selection sort with concurrency in Go takes around 1 min
  3. simple selection sort in C takes around 3-4 min
  4. simple selection sort in Python never gonna process this sized input (it will take many days)

note: these results are machine specific and time complexity of selection sort will always remain O(N^2) for any programming language. but execution speed may vary from language to language.

fun fact: if python's execution time is x then, Go with concurrency (160x) faster > Go (40x) faster > C (10x) faster > python (x)

multiprocessing-with-golang's People

Contributors

spzala19 avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

Forkers

liangtsao

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.