Martin Valgur

Results 231 comments of Martin Valgur

To address the comments by @jcar87 at https://github.com/conan-io/conan-center-index/pull/22353#issuecomment-2214593855: I think most of the comments miss the mark a bit and approach it from the vantage point of trying to use...

While I'm still not advocating for using LLVM OpenMP in place of GOMP or other native OpenMP runtimes, an interesting data point in that regard is conda-forge. While the main...

@riley-kinahan What do you think about the changes made here? Seems somewhat relevant in preparation for the release in #117.

Ok, nice. I'll update the PR to fix the version conflicts then asap as well.

> Also had a conversation with @rldoris this week about whether we can improve memory efficiency. IIRC we have something like a 30x memory usage rate vs raw binary. One...

Can you provide an example of a failing response, please? Would be good to add it as a test case as well.

Thanks! The broken query response is ```json { "feed": { "xmlns": "http://www.w3.org/2005/Atom", "xmlns:opensearch": "http://a9.com/-/spec/opensearch/1.1/", "title": "Data Hub Service search results for: S2A_MSIL1C_20240430T102021_N0510_R065_T32UPA_20240430T122022", "subtitle": "Displaying 1 results. Request done in 0...

I suggest adjusting the logic above the section you modified to: ```python if "content" in p: product_dict[p["name"]] = f(p["content"]) elif "str" in p: product_dict[p["name"]] = f(p["str"]) else: product_dict[p["name"]] = None...

I would recommend adding ```cmake set(VCPKG_C_FLAGS -march=native) set(VCPKG_CXX_FLAGS -march=native) ``` to your triplet file to enable the flag globally instead of exposing this as a recipe feature.

> > (i.e. you would do find_package(AMD) to use suitesparse-amd), > > That looks like a no go. Is there an equivalent of `find_package(Suitesparse COPMPONENTS AMD)` ? AFAIK SuiteSparse does...