├── .coveragerc ├── .dockerignore ├── .flake8 ├── .gitignore ├── CNAME ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── _config.yml ├── docs-requirements.txt ├── docs ├── Makefile ├── c-api.rst ├── conf.py ├── index.rst ├── make.bat ├── notebooks │ ├── .ipynb_checkpoints │ │ ├── Distance between bitstrings-checkpoint.ipynb │ │ ├── Generates a new SDM-checkpoint.ipynb │ │ ├── Kanerva's Figure 1.2-checkpoint.ipynb │ │ └── Kanerva-Table-7.3-checkpoint.ipynb │ ├── Autocorrelation - Math.ipynb │ ├── Autocorrelation - Test 1 - Autoassociative (x at x).ipynb │ ├── Calculate critical distance.ipynb │ ├── Calculate radius for any SDM.ipynb │ ├── Chuncking through XOR.ipynb │ ├── Classification Test 1.ipynb │ ├── Classification Test 2.ipynb │ ├── Classification Test 3-Copy1.ipynb │ ├── Classification Test 3.ipynb │ ├── Critical Distance - New.ipynb │ ├── Critical Distance.ipynb │ ├── Distance between bitstrings.ipynb │ ├── Distances of activated hard-locations.ipynb │ ├── Generates a new SDM.ipynb │ ├── Intersection between two circles.ipynb │ ├── Intersection of activated hard-locations.ipynb │ ├── Kanerva's Figure 1.2.ipynb │ ├── Kanerva-Table-7 - Experiment.ipynb │ ├── Kanerva-Table-7 - Kanerva's Suggestion.ipynb │ ├── Kanerva-Table-7.3 - Generic Read.ipynb │ ├── Kanerva-Table-7.3 - Multiple dimensions.ipynb │ ├── Kanerva-Table-7.3 - Weighted table write.ipynb │ ├── Kanerva-Table-7.3.ipynb │ ├── Noise filter - Math analysis.ipynb │ ├── Noise filter 2.ipynb │ ├── Noise filter A-Z 0-1 Generator.ipynb │ ├── Noise filter with labels.ipynb │ ├── Noise filter.ipynb │ ├── Number of activated hard-locations.ipynb │ ├── Performance test.ipynb │ ├── Reseting hard-locations.ipynb │ ├── Sequences (Kanerva Ch 8).ipynb │ ├── Sequences in one SDM (Kanerva Ch 8).ipynb │ ├── TicTacToe - New approach.ipynb │ ├── TicTacToe - Old (TO BE DELETED).ipynb │ ├── TicTacToe.ipynb │ ├── Weighted operations using information.ipynb │ ├── index.rst │ ├── sdm │ ├── tmp-TO-BE-DELETED-2.ipynb │ └── tmp-TO-BE-DELETED.ipynb └── sdm.rst ├── paper ├── Makefile └── paper.tex ├── sdm ├── __init__.py ├── scanner_opencl.cl ├── scanner_opencl2.cl └── utils.py ├── setup.py ├── src ├── Makefile ├── address_space.c ├── address_space.h ├── bitstring.c ├── bitstring.h ├── counter.c ├── counter.h ├── lib │ ├── base64.c │ ├── base64.h │ ├── sha256.cpp │ └── sha256.h ├── opencl_debug.c ├── operations.c ├── operations.h ├── scanner_opencl.c ├── scanner_opencl.cl ├── scanner_opencl.h ├── scanner_opencl2.c ├── scanner_opencl2.cl ├── scanner_thread.c ├── scanner_thread2.c ├── sdm.h ├── test │ └── test_bitstring.c ├── test1.c ├── test2.c ├── test3.c ├── test4.c ├── test_linear.c ├── test_linear2.c ├── test_opencl.c ├── test_opencl2.c ├── test_scanner_opencl.cpp ├── test_thread.c ├── test_thread2.c ├── utils.h └── version.h ├── tests.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | source = sdm 4 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | ** 2 | !docs/notebooks/*.ipynb 3 | -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore=E731 3 | max-line-length=160 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/_config.yml -------------------------------------------------------------------------------- /docs-requirements.txt: -------------------------------------------------------------------------------- 1 | nbsphinx 2 | Pygments 3 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/c-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/c-api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/notebooks/.ipynb_checkpoints/Distance between bitstrings-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/.ipynb_checkpoints/Distance between bitstrings-checkpoint.ipynb -------------------------------------------------------------------------------- /docs/notebooks/.ipynb_checkpoints/Generates a new SDM-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/.ipynb_checkpoints/Generates a new SDM-checkpoint.ipynb -------------------------------------------------------------------------------- /docs/notebooks/.ipynb_checkpoints/Kanerva's Figure 1.2-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/.ipynb_checkpoints/Kanerva's Figure 1.2-checkpoint.ipynb -------------------------------------------------------------------------------- /docs/notebooks/.ipynb_checkpoints/Kanerva-Table-7.3-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/.ipynb_checkpoints/Kanerva-Table-7.3-checkpoint.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Autocorrelation - Math.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Autocorrelation - Math.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Autocorrelation - Test 1 - Autoassociative (x at x).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Autocorrelation - Test 1 - Autoassociative (x at x).ipynb -------------------------------------------------------------------------------- /docs/notebooks/Calculate critical distance.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Calculate critical distance.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Calculate radius for any SDM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Calculate radius for any SDM.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Chuncking through XOR.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Chuncking through XOR.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Classification Test 1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Classification Test 1.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Classification Test 2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Classification Test 2.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Classification Test 3-Copy1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Classification Test 3-Copy1.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Classification Test 3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Classification Test 3.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Critical Distance - New.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Critical Distance - New.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Critical Distance.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Critical Distance.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Distance between bitstrings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Distance between bitstrings.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Distances of activated hard-locations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Distances of activated hard-locations.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Generates a new SDM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Generates a new SDM.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Intersection between two circles.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Intersection between two circles.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Intersection of activated hard-locations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Intersection of activated hard-locations.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Kanerva's Figure 1.2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Kanerva's Figure 1.2.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Kanerva-Table-7 - Experiment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Kanerva-Table-7 - Experiment.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Kanerva-Table-7 - Kanerva's Suggestion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Kanerva-Table-7 - Kanerva's Suggestion.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Kanerva-Table-7.3 - Generic Read.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Kanerva-Table-7.3 - Generic Read.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Kanerva-Table-7.3 - Multiple dimensions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Kanerva-Table-7.3 - Multiple dimensions.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Kanerva-Table-7.3 - Weighted table write.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Kanerva-Table-7.3 - Weighted table write.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Kanerva-Table-7.3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Kanerva-Table-7.3.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Noise filter - Math analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Noise filter - Math analysis.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Noise filter 2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Noise filter 2.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Noise filter A-Z 0-1 Generator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Noise filter A-Z 0-1 Generator.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Noise filter with labels.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Noise filter with labels.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Noise filter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Noise filter.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Number of activated hard-locations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Number of activated hard-locations.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Performance test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Performance test.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Reseting hard-locations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Reseting hard-locations.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Sequences (Kanerva Ch 8).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Sequences (Kanerva Ch 8).ipynb -------------------------------------------------------------------------------- /docs/notebooks/Sequences in one SDM (Kanerva Ch 8).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Sequences in one SDM (Kanerva Ch 8).ipynb -------------------------------------------------------------------------------- /docs/notebooks/TicTacToe - New approach.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/TicTacToe - New approach.ipynb -------------------------------------------------------------------------------- /docs/notebooks/TicTacToe - Old (TO BE DELETED).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/TicTacToe - Old (TO BE DELETED).ipynb -------------------------------------------------------------------------------- /docs/notebooks/TicTacToe.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/TicTacToe.ipynb -------------------------------------------------------------------------------- /docs/notebooks/Weighted operations using information.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/Weighted operations using information.ipynb -------------------------------------------------------------------------------- /docs/notebooks/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/index.rst -------------------------------------------------------------------------------- /docs/notebooks/sdm: -------------------------------------------------------------------------------- 1 | ../../sdm -------------------------------------------------------------------------------- /docs/notebooks/tmp-TO-BE-DELETED-2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/tmp-TO-BE-DELETED-2.ipynb -------------------------------------------------------------------------------- /docs/notebooks/tmp-TO-BE-DELETED.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/notebooks/tmp-TO-BE-DELETED.ipynb -------------------------------------------------------------------------------- /docs/sdm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/docs/sdm.rst -------------------------------------------------------------------------------- /paper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/paper/Makefile -------------------------------------------------------------------------------- /paper/paper.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/paper/paper.tex -------------------------------------------------------------------------------- /sdm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/sdm/__init__.py -------------------------------------------------------------------------------- /sdm/scanner_opencl.cl: -------------------------------------------------------------------------------- 1 | ../src/scanner_opencl.cl -------------------------------------------------------------------------------- /sdm/scanner_opencl2.cl: -------------------------------------------------------------------------------- 1 | ../src/scanner_opencl2.cl -------------------------------------------------------------------------------- /sdm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/sdm/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/setup.py -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/address_space.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/address_space.c -------------------------------------------------------------------------------- /src/address_space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/address_space.h -------------------------------------------------------------------------------- /src/bitstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/bitstring.c -------------------------------------------------------------------------------- /src/bitstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/bitstring.h -------------------------------------------------------------------------------- /src/counter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/counter.c -------------------------------------------------------------------------------- /src/counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/counter.h -------------------------------------------------------------------------------- /src/lib/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/lib/base64.c -------------------------------------------------------------------------------- /src/lib/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/lib/base64.h -------------------------------------------------------------------------------- /src/lib/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/lib/sha256.cpp -------------------------------------------------------------------------------- /src/lib/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/lib/sha256.h -------------------------------------------------------------------------------- /src/opencl_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/opencl_debug.c -------------------------------------------------------------------------------- /src/operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/operations.c -------------------------------------------------------------------------------- /src/operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/operations.h -------------------------------------------------------------------------------- /src/scanner_opencl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/scanner_opencl.c -------------------------------------------------------------------------------- /src/scanner_opencl.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/scanner_opencl.cl -------------------------------------------------------------------------------- /src/scanner_opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/scanner_opencl.h -------------------------------------------------------------------------------- /src/scanner_opencl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/scanner_opencl2.c -------------------------------------------------------------------------------- /src/scanner_opencl2.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/scanner_opencl2.cl -------------------------------------------------------------------------------- /src/scanner_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/scanner_thread.c -------------------------------------------------------------------------------- /src/scanner_thread2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/scanner_thread2.c -------------------------------------------------------------------------------- /src/sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/sdm.h -------------------------------------------------------------------------------- /src/test/test_bitstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/test/test_bitstring.c -------------------------------------------------------------------------------- /src/test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/test1.c -------------------------------------------------------------------------------- /src/test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/test2.c -------------------------------------------------------------------------------- /src/test3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/test3.c -------------------------------------------------------------------------------- /src/test4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/test4.c -------------------------------------------------------------------------------- /src/test_linear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/test_linear.c -------------------------------------------------------------------------------- /src/test_linear2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/test_linear2.c -------------------------------------------------------------------------------- /src/test_opencl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/test_opencl.c -------------------------------------------------------------------------------- /src/test_opencl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/test_opencl2.c -------------------------------------------------------------------------------- /src/test_scanner_opencl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/test_scanner_opencl.cpp -------------------------------------------------------------------------------- /src/test_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/test_thread.c -------------------------------------------------------------------------------- /src/test_thread2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/test_thread2.c -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/src/version.h -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msbrogli/sdm-framework/HEAD/tox.ini --------------------------------------------------------------------------------