This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Mandelbrot fractal portable SIMD calculation core | |
* Copyright (c) 2017 Joel Yliluoma (http://iki.fi/bisqwit/) | |
*/ | |
#include <array> | |
#include <cmath> | |
/* | |
* SIMDMandelCalculator template: | |
* | |
* T is the underlying (real) numeric type, with which the calculations |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* | |
* Block-local temporaries | |
* | |
* Copyright (C) 2006,2014 Bisqwit (http://iki.fi/bisqwit/) | |
* | |
* Example use: | |
* bool in_critical_context = false; | |
* | |
* void example() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* TO COMPILE: | |
* | |
i686-w64-mingw32-g++.exe -o vbsp_bisqwit.exe vbsp_bisqwit.cc -Wall -Wextra -pedantic -Ofast -static -flto -s -std=gnu++1y -fopenmp | |
OR: | |
x86_64-w64-mingw32-g++.exe -o vbsp_bisqwit.exe vbsp_bisqwit.cc -Wall -Wextra -pedantic -Ofast -static -flto -s -std=gnu++1y -fopenmp | |
OR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdint.h> | |
#include <stdio.h> | |
#include <cstring> | |
#include <string> | |
#include <map> | |
#include <vector> | |
#include <cmath> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* PORTAL 2 PUZZLEMAKER MAP MERGER - VERSION 1.0.0 (2014-02-20) | |
* COPYRIGHT (C) 2013,2014 Joel Yliluoma - http://iki.fi/bisqwit/ | |
* Source code license: MIT | |
*/ | |
/* PUT YOUR SETTINGS HERE: */ | |
// Filenames for the input and output maps |
NewerOlder