├── .gitignore ├── LICENSE.txt ├── README.md ├── makefile ├── run.sh ├── stream.c └── third-party-programs.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.bin 3 | *.log 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/memory-bandwidth-benchmarks/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/memory-bandwidth-benchmarks/HEAD/README.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/memory-bandwidth-benchmarks/HEAD/makefile -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/memory-bandwidth-benchmarks/HEAD/run.sh -------------------------------------------------------------------------------- /stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/memory-bandwidth-benchmarks/HEAD/stream.c -------------------------------------------------------------------------------- /third-party-programs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/memory-bandwidth-benchmarks/HEAD/third-party-programs.txt --------------------------------------------------------------------------------