Skip to content

Commit

Permalink
fix benckmark
Browse files Browse the repository at this point in the history
  • Loading branch information
madsbk committed Oct 1, 2024
1 parent 3222c92 commit c94121d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions cpp/include/kvikio/remote_handle.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,7 @@ class HttpEndpoint : public RemoteEndpoint {
HttpEndpoint(std::string url) : _url{std::move(url)} {}
void setopt(detail::CurlHandle& curl) override { curl.setopt(CURLOPT_URL, _url.c_str()); }
std::string str() override { return _url; }
~HttpEndpoint() override = default;
};

/**
Expand Down
4 changes: 2 additions & 2 deletions python/kvikio/tests/test_benchmarks.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ def test_zarr_io(run_cmd, tmp_path, api):
@pytest.mark.parametrize(
"api",
[
"cupy-kvikio",
"numpy-kvikio",
"cupy",
"numpy",
],
)
def test_http_io(run_cmd, api):
Expand Down

0 comments on commit c94121d

Please sign in to comment.