Compare commits
5 commits
bd7afeb8bd
...
e7396116a7
Author | SHA1 | Date | |
---|---|---|---|
e7396116a7 | |||
3392e7f086 | |||
6dce4b7c5f | |||
abca3198e0 | |||
c55f6a1bd3 |
2 changed files with 90 additions and 91 deletions
|
@ -1,5 +1,4 @@
|
||||||
# Blue_Noise_Generation
|
# Blue_Noise_Generation
|
||||||
|
|
||||||
Currently, this project only generates blue-noise, which can be used for dithering.
|
Currently, this project only generates blue-noise, which can be used for dithering.
|
||||||
The blue-noise can be generated via OpenCL, Vulkan compute, or with threads on
|
The blue-noise can be generated via OpenCL or with threads on the CPU.
|
||||||
the CPU.
|
|
||||||
|
|
|
@ -794,95 +794,6 @@ std::optional<std::pair<int, int>> dither::internal::vulkan_minmax(
|
||||||
|
|
||||||
image::Bl dither::blue_noise(int width, int height, int threads,
|
image::Bl dither::blue_noise(int width, int height, int threads,
|
||||||
bool use_opencl, bool use_vulkan) {
|
bool use_opencl, bool use_vulkan) {
|
||||||
#if DITHERING_OPENCL_ENABLED == 1
|
|
||||||
if (use_opencl) {
|
|
||||||
// try to use OpenCL
|
|
||||||
do {
|
|
||||||
cl_device_id device;
|
|
||||||
cl_context context;
|
|
||||||
cl_program program;
|
|
||||||
cl_int err;
|
|
||||||
|
|
||||||
cl_platform_id platform;
|
|
||||||
|
|
||||||
int filter_size = (width + height) / 2;
|
|
||||||
|
|
||||||
err = clGetPlatformIDs(1, &platform, nullptr);
|
|
||||||
if (err != CL_SUCCESS) {
|
|
||||||
std::cerr << "OpenCL: Failed to identify a platform\n";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
err = clGetDeviceIDs(platform, CL_DEVICE_TYPE_GPU, 1, &device, nullptr);
|
|
||||||
if (err != CL_SUCCESS) {
|
|
||||||
std::cerr << "OpenCL: Failed to get a device\n";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
context = clCreateContext(nullptr, 1, &device, nullptr, nullptr, &err);
|
|
||||||
|
|
||||||
{
|
|
||||||
char buf[1024];
|
|
||||||
std::ifstream program_file("src/blue_noise.cl");
|
|
||||||
if (!program_file.good()) {
|
|
||||||
std::cerr << "ERROR: Failed to read \"src/blue_noise.cl\" "
|
|
||||||
"(not found?)\n";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
std::string program_string;
|
|
||||||
while (program_file.good()) {
|
|
||||||
program_file.read(buf, 1024);
|
|
||||||
if (int read_count = program_file.gcount(); read_count > 0) {
|
|
||||||
program_string.append(buf, read_count);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const char *string_ptr = program_string.c_str();
|
|
||||||
std::size_t program_size = program_string.size();
|
|
||||||
program = clCreateProgramWithSource(
|
|
||||||
context, 1, (const char **)&string_ptr, &program_size, &err);
|
|
||||||
if (err != CL_SUCCESS) {
|
|
||||||
std::cerr << "OpenCL: Failed to create the program\n";
|
|
||||||
clReleaseContext(context);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
err = clBuildProgram(program, 1, &device, nullptr, nullptr, nullptr);
|
|
||||||
if (err != CL_SUCCESS) {
|
|
||||||
std::cerr << "OpenCL: Failed to build the program\n";
|
|
||||||
|
|
||||||
std::size_t log_size;
|
|
||||||
clGetProgramBuildInfo(program, device, CL_PROGRAM_BUILD_LOG, 0,
|
|
||||||
nullptr, &log_size);
|
|
||||||
std::unique_ptr<char[]> log = std::make_unique<char[]>(log_size + 1);
|
|
||||||
log[log_size] = 0;
|
|
||||||
clGetProgramBuildInfo(program, device, CL_PROGRAM_BUILD_LOG, log_size,
|
|
||||||
log.get(), nullptr);
|
|
||||||
std::cerr << log.get() << std::endl;
|
|
||||||
|
|
||||||
clReleaseProgram(program);
|
|
||||||
clReleaseContext(context);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
std::cout << "OpenCL: Initialized, trying cl_impl..." << std::endl;
|
|
||||||
std::vector<unsigned int> result = internal::blue_noise_cl_impl(
|
|
||||||
width, height, filter_size, context, device, program);
|
|
||||||
|
|
||||||
clReleaseProgram(program);
|
|
||||||
clReleaseContext(context);
|
|
||||||
|
|
||||||
if (!result.empty()) {
|
|
||||||
return internal::rangeToBl(result, width);
|
|
||||||
}
|
|
||||||
std::cout << "ERROR: Empty result\n";
|
|
||||||
} while (false);
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
std::clog << "WARNING: Not compiled with OpenCL support!\n";
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if DITHERING_VULKAN_ENABLED == 1
|
#if DITHERING_VULKAN_ENABLED == 1
|
||||||
if (use_vulkan) {
|
if (use_vulkan) {
|
||||||
// Try to use Vulkan.
|
// Try to use Vulkan.
|
||||||
|
@ -2075,6 +1986,95 @@ ENDOF_VULKAN:
|
||||||
std::clog << "WARNING: Not compiled with Vulkan support!\n";
|
std::clog << "WARNING: Not compiled with Vulkan support!\n";
|
||||||
#endif // DITHERING_VULKAN_ENABLED == 1
|
#endif // DITHERING_VULKAN_ENABLED == 1
|
||||||
|
|
||||||
|
#if DITHERING_OPENCL_ENABLED == 1
|
||||||
|
if (use_opencl) {
|
||||||
|
// try to use OpenCL
|
||||||
|
do {
|
||||||
|
cl_device_id device;
|
||||||
|
cl_context context;
|
||||||
|
cl_program program;
|
||||||
|
cl_int err;
|
||||||
|
|
||||||
|
cl_platform_id platform;
|
||||||
|
|
||||||
|
int filter_size = (width + height) / 2;
|
||||||
|
|
||||||
|
err = clGetPlatformIDs(1, &platform, nullptr);
|
||||||
|
if (err != CL_SUCCESS) {
|
||||||
|
std::cerr << "OpenCL: Failed to identify a platform\n";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
err = clGetDeviceIDs(platform, CL_DEVICE_TYPE_GPU, 1, &device, nullptr);
|
||||||
|
if (err != CL_SUCCESS) {
|
||||||
|
std::cerr << "OpenCL: Failed to get a device\n";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
context = clCreateContext(nullptr, 1, &device, nullptr, nullptr, &err);
|
||||||
|
|
||||||
|
{
|
||||||
|
char buf[1024];
|
||||||
|
std::ifstream program_file("src/blue_noise.cl");
|
||||||
|
if (!program_file.good()) {
|
||||||
|
std::cerr << "ERROR: Failed to read \"src/blue_noise.cl\" "
|
||||||
|
"(not found?)\n";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
std::string program_string;
|
||||||
|
while (program_file.good()) {
|
||||||
|
program_file.read(buf, 1024);
|
||||||
|
if (int read_count = program_file.gcount(); read_count > 0) {
|
||||||
|
program_string.append(buf, read_count);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const char *string_ptr = program_string.c_str();
|
||||||
|
std::size_t program_size = program_string.size();
|
||||||
|
program = clCreateProgramWithSource(
|
||||||
|
context, 1, (const char **)&string_ptr, &program_size, &err);
|
||||||
|
if (err != CL_SUCCESS) {
|
||||||
|
std::cerr << "OpenCL: Failed to create the program\n";
|
||||||
|
clReleaseContext(context);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
err = clBuildProgram(program, 1, &device, nullptr, nullptr, nullptr);
|
||||||
|
if (err != CL_SUCCESS) {
|
||||||
|
std::cerr << "OpenCL: Failed to build the program\n";
|
||||||
|
|
||||||
|
std::size_t log_size;
|
||||||
|
clGetProgramBuildInfo(program, device, CL_PROGRAM_BUILD_LOG, 0,
|
||||||
|
nullptr, &log_size);
|
||||||
|
std::unique_ptr<char[]> log = std::make_unique<char[]>(log_size + 1);
|
||||||
|
log[log_size] = 0;
|
||||||
|
clGetProgramBuildInfo(program, device, CL_PROGRAM_BUILD_LOG, log_size,
|
||||||
|
log.get(), nullptr);
|
||||||
|
std::cerr << log.get() << std::endl;
|
||||||
|
|
||||||
|
clReleaseProgram(program);
|
||||||
|
clReleaseContext(context);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
std::cout << "OpenCL: Initialized, trying cl_impl..." << std::endl;
|
||||||
|
std::vector<unsigned int> result = internal::blue_noise_cl_impl(
|
||||||
|
width, height, filter_size, context, device, program);
|
||||||
|
|
||||||
|
clReleaseProgram(program);
|
||||||
|
clReleaseContext(context);
|
||||||
|
|
||||||
|
if (!result.empty()) {
|
||||||
|
return internal::rangeToBl(result, width);
|
||||||
|
}
|
||||||
|
std::cout << "ERROR: Empty result\n";
|
||||||
|
} while (false);
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
std::clog << "WARNING: Not compiled with OpenCL support!\n";
|
||||||
|
#endif
|
||||||
|
|
||||||
std::cout << "Vulkan/OpenCL: Failed to setup/use or is not enabled, using "
|
std::cout << "Vulkan/OpenCL: Failed to setup/use or is not enabled, using "
|
||||||
"regular impl..."
|
"regular impl..."
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
|
|
Loading…
Reference in a new issue