Skip to content

Commit

Permalink
Don't build tf_ops explicitly.
Browse files Browse the repository at this point in the history
  • Loading branch information
ssheorey committed Oct 13, 2023
1 parent c61fb71 commit 7f9a3be
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile.wheel
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ COPY . /root/Open3D
WORKDIR /root/Open3D

# Build python wheel
# TODO: re-enable tensorflow support, off due to due to cxx11_abi issue with PyTorch
RUN export NPROC=$(nproc) \
&& export BUILD_SHARED_LIBS=OFF \
# TODO: re-enable tensorflow support, off due to due to cxx11_abi issue with PyTorch
&& export BUILD_TENSORFLOW_OPS=OFF \
&& export BUILD_PYTORCH_OPS=ON \
&& source /root/Open3D/util/ci_utils.sh \
Expand Down
1 change: 0 additions & 1 deletion util/ci_utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,6 @@ build_pip_package() {
cmake -DBUILD_CUDA_MODULE=OFF "${cmakeOptions[@]}" ..
set +x # Echo commands off
echo
make VERBOSE=1 -j"$NPROC" pybind open3d_tf_ops open3d_torch_ops

echo "Packaging Open3D CPU pip package..."
make VERBOSE=1 -j"$NPROC" pip-package
Expand Down

0 comments on commit 7f9a3be

Please sign in to comment.