nickanthony-dgl

Results 10 comments of nickanthony-dgl

I am using the 0.3.25-x64 release for Windows. The contents of `OpenBLASConfig.cmake` are: ``` cmake SET(OpenBLAS_VERSION "0.3.25") SET(OpenBLAS_INCLUDE_DIRS win64/include) SET(OpenBLAS_LIBRARIES win64/bin/libopenblas.dll) ``` which doesn't work without some changes.

Here is what I am using which I think would be an improvement. ```cmake SET(OpenBLAS_VERSION "0.3.25") file(REAL_PATH "../../.." _OpenBLAS_ROOT_DIR BASE_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} ) SET(OpenBLAS_INCLUDE_DIRS ${_OpenBLAS_ROOT_DIR}/include) SET(OpenBLAS_LIBRARIES ${_OpenBLAS_ROOT_DIR}/bin/libopenblas.dll) add_library(OpenBLAS::OpenBLAS SHARED IMPORTED) target_include_directories(OpenBLAS::OpenBLAS...

I have updated to MKL 2024.0 and while the MKLConfig.cmake file has been moved to `oneAPI\mkl\2024.0\lib\cmake\mkl` and its contents have been changed this problem is still there. I am able...

I'm seeing much of the same on 3.10.9

Would love to see this fixed since compilers are starting to treat this as an error instead of a warning.

I am now getting this same error when trying to create a dataset from a dataspace. ```cpp HighFive::DataSpace ds({2, 2}); auto set = file.createDataSet("myData", ds); ``` ``` ${bld}\vcpkg_installed\x64-windows-digilens\include\highfive\bits\H5Inspector_misc.hpp(194): error C2338:...

What I am running into is a compile-time error (a static_assert), so no matter how I initialize the `xt::xarray` it won't matter, HighFive is refusing to accept it as an...

I am doing the same as what you descirbe above with the addition of `install(TARGETS your_exe)`. I want to be able to configure cmake so that when I run `cmake...

I'll give that a try, thanks.

Yes, sorry I should've gotten back to you on this. EXLCUDE_FROM_ALL seems to do exactly what I needed.