Skip to content

Upgrade pybind11 for NGT #592

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ann_benchmarks/algorithms/onng_ngt/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM ann-benchmarks

RUN apt update
RUN apt install -y git cmake g++ python3 python3-setuptools python3-pip libblas-dev liblapack-dev
RUN pip3 install wheel pybind11==2.5.0
RUN pip3 install wheel pybind11==2.13.6
RUN git clone -b main https://github.com/yahoojapan/ngt.git
RUN mkdir -p ngt/build
RUN cd ngt/build && cmake -DNGTQG_NO_ROTATION=ON -DNGTQG_ZERO_GLOBAL=ON ..
Expand Down
2 changes: 1 addition & 1 deletion ann_benchmarks/algorithms/onng_ngt/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ float:
any:
- base_args: ['@metric', Float, 0.1]
constructor: ONNG
disabled: true
disabled: false
docker_tag: ann-benchmarks-onng_ngt
module: ann_benchmarks.algorithms.onng_ngt
name: NGT-onng
Expand Down
2 changes: 1 addition & 1 deletion ann_benchmarks/algorithms/panng_ngt/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM ann-benchmarks

RUN apt update
RUN apt install -y git cmake g++ python3 python3-setuptools python3-pip libblas-dev liblapack-dev
RUN pip3 install wheel pybind11==2.5.0
RUN pip3 install wheel pybind11==2.13.6
RUN git clone -b main https://github.com/yahoojapan/ngt.git
RUN mkdir -p ngt/build
RUN cd ngt/build && cmake -DNGTQG_NO_ROTATION=ON -DNGTQG_ZERO_GLOBAL=ON ..
Expand Down
2 changes: 1 addition & 1 deletion ann_benchmarks/algorithms/panng_ngt/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ float:
any:
- base_args: ['@metric', Float]
constructor: PANNG
disabled: false
disabled: true
docker_tag: ann-benchmarks-panng_ngt
module: ann_benchmarks.algorithms.panng_ngt
name: NGT-panng
Expand Down
2 changes: 1 addition & 1 deletion ann_benchmarks/algorithms/qg_ngt/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM ann-benchmarks

RUN apt update
RUN apt install -y git cmake g++ python3 python3-setuptools python3-pip libblas-dev liblapack-dev
RUN pip3 install wheel pybind11==2.5.0
RUN pip3 install wheel pybind11==2.13.6
RUN git clone -b main https://github.com/yahoojapan/ngt.git
RUN mkdir -p ngt/build
RUN cd ngt/build && cmake -DNGTQG_NO_ROTATION=ON -DNGTQG_ZERO_GLOBAL=ON ..
Expand Down
Loading