An open API service indexing awesome lists of open source software.

https://github.com/tommygrammar/data-optimization-experiments

This is a data optimization technique i developed
https://github.com/tommygrammar/data-optimization-experiments

Last synced: 2 months ago
JSON representation

This is a data optimization technique i developed

Awesome Lists containing this project

README

        

use.py uses the cmodule
no_use.py is plain python, important for testing
the c module code is compiled by gcc -shared -o libfast_add.so -fPIC fast_add.c
then libfast_add.so is utilized by the python

specifically for dealing with a lot of data, plain python works well with small data and is faster with small data but as the data increases, the operations become a dominant factor which leads to the no_use.py performing better, the larger the data, the more powerful the results