Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
lshmouse committed Oct 8, 2024
1 parent 831216b commit 4d31be7
Show file tree
Hide file tree
Showing 16 changed files with 4 additions and 4 deletions.
Binary file modified experimental/arrow_example/arrow_example.cc
Binary file not shown.
Binary file modified experimental/benchmark_example/string_bm.cc
Binary file not shown.
Binary file modified experimental/cpp_example/hello_greet.cc
Binary file not shown.
Binary file modified experimental/cpp_example/hello_greet.h
Binary file not shown.
Binary file modified experimental/cpp_example/hello_world.cc
Binary file not shown.
Binary file modified experimental/cuda_example/cuda_example.cc
Binary file not shown.
Binary file modified experimental/cuda_example/mat_add.h
Binary file not shown.
Binary file modified experimental/cuda_example/vector_add.h
Binary file not shown.
Binary file modified experimental/grpc_example/greeter_client.cc
Binary file not shown.
Binary file modified experimental/grpc_example/greeter_server.cc
Binary file not shown.
Binary file modified experimental/protoc_example/proto_example_main.cc
Binary file not shown.
Binary file modified experimental/ros2_example/ros_listener.cc
Binary file not shown.
Binary file modified experimental/ros2_example/ros_talker.cc
Binary file not shown.
7 changes: 4 additions & 3 deletions third_party/arrow/workspace.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

def repo():
version = "10.0.1"
http_archive(
name = "arrow",
build_file = "//third_party/arrow:arrow.BUILD",
sha256 = "07cdb4da6795487c800526b2865c150ab7d80b8512a31793e6a7147c8ccd270f",
strip_prefix = "arrow-apache-arrow-14.0.2",
sha256 = "28c3e0402bc1c3c1e047b6e26cedb8d1d89b2b9497d576af24b0b700eef11701",
strip_prefix = "arrow-apache-arrow-{}".format(version),
urls = [
"https://github.com/apache/arrow/archive/apache-arrow-14.0.2.tar.gz",
"https://github.com/apache/arrow/archive/apache-arrow-{}.tar.gz".format(version),
],
)
Binary file modified third_party/onnxruntime/onnxruntime_test.cc
Binary file not shown.
1 change: 0 additions & 1 deletion third_party/opentelemetry_cpp/workspace.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ def clean_dep(dep):
return str(Label(dep))

def repo():
# 10.0.1
version = "1.14.2"
http_archive(
name = "io_opentelemetry_cpp",
Expand Down

0 comments on commit 4d31be7

Please sign in to comment.