Skip to content

Bubble Sort implementation using clustering with K-Means and threading

Notifications You must be signed in to change notification settings

kiltercity/clusterised_bubble_sort_with_cuda

Repository files navigation

Clustering Bubble Sort - Implementation

Bubble Sort implementation using clustering with K-Means and threading


  • You need to install LLVM (clang++) and make in order to be able to compile this project

How to run?

1. Make sure you have LLVM and Make installed on your system:

  • Clang:
> clang++ -v

You have to get something similar to:

clang version 11.0.0
Target: x86_64-pc-windows-msvc
Thread model: posix
InstalledDir: C:\Program Files\LLVM\bin
  • Make:
> make -v

Result:

GNU Make 3.81
Copyright (C) 2006  Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.

This program built for i686-pc-msys

2. To build the project just run make:

> make

If everything is OK, you must see NO error messages.

3. To start the program execute:

  • On Windows:
> .\main
  • On Linux:
> ./main

The output have to be similar to this:

run_program

4. To clean run:

> make clean

About

Bubble Sort implementation using clustering with K-Means and threading

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published