nickanthony-dgl
nickanthony-dgl
# Summary The MKLConfig.cmake file included with MKL causes debug libraries to be linked when the "RelWithDebInfo" build type is used. This results in linker errors. This happens due to...
I can see [here](https://github.com/OpenMathLib/OpenBLAS/blob/develop/cmake/OpenBLASConfig.cmake.in) that there is a template for a well made find module for OpenBLAS. However, the find module provided with the pre-built releases is extremely basic and...
On the first iteration of the optimization when using the GP_UCB acquisition function the `iteration` is 0. This causes `nt` to be 0 which causes `std::log(nt * pi2 / delta3)`...
Is there a recommended way to have an objective function request early termination of the optimization. I know that I could probably just throw an exception but I am wondering...
I am trying to use nonlinear constraints with the `NLOptNoGrad` optimizer as the .acquisition function optimizer I switched to using the GN_ISRES since this supports both equality and inequality constraints....
This PR makes 2 minor changes to allow Limbo to compile on a Windows machine. These changes are guarded by the `#ifdef _WIN32` preprocessor so they will not affect non-Windows...
It would be nice to have an option like "OPENXLSX_ENABLE_INSTALL" that allows projects using this as subroject to avoid having the headers and static libs installed.
It would be nice to have the plots generated only zoomed in on a certain range of dates. For example, I recently inherited a code base that sat idle for...
I am trying to dump an n-dimensional xt::xarray to an HDF file. ```cpp xt::xarray arr({2, 2}, {1, 2, 3, 4}); H5Easy::dump(file, "myDataset", arr); ``` This results in: ``` %{buildPath}vcpkg_installed\x64-windows-digilens\include\highfive\bits\H5Inspector_misc.hpp(194): error...
I am trying to create a dataset that can later be resized like so: ```cpp Eigen::ArrayXXd data = generateData(); auto dset = H5Easy::dump(f,"/myData", data, std::vector{0, 0}, dataOptions); // Initialize an...