From e776a6f1a1546b8ac780a88a3537bb52a95085f3 Mon Sep 17 00:00:00 2001 From: Sameer Agarwal Date: Tue, 16 Jan 2024 16:54:08 -0800 Subject: [PATCH] Unbreak the Bazel build. The build was broken because parallel_for.cc was deleted and new file parallel_vector_ops.cc was added. Fixes https://github.com/ceres-solver/ceres-solver/issues/1043 Change-Id: I5b7a03b97134da55d408e57747634a5943a0e0aa --- bazel/ceres.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazel/ceres.bzl b/bazel/ceres.bzl index ac102d9af..2e5759e79 100644 --- a/bazel/ceres.bzl +++ b/bazel/ceres.bzl @@ -95,9 +95,9 @@ CERES_SRCS = ["internal/ceres/" + filename for filename in [ "manifold.cc", "minimizer.cc", "normal_prior.cc", - "parallel_for.cc", "parallel_invoke.cc", "parallel_utils.cc", + "parallel_vector_ops.cc", "parameter_block_ordering.cc", "partitioned_matrix_view.cc", "polynomial.cc",