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 68ff9e2 commit 831216b
Show file tree
Hide file tree
Showing 17 changed files with 8 additions and 6 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.
5 changes: 3 additions & 2 deletions third_party/arrow/arrow.BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ cc_library(
],
copts = select({
"@bazel_tools//src/conditions:windows": [
"/std:c++14",
"/std:c++17",
],
"//conditions:default": [
"-std=c++14",
"-std=c++17",
],
}),
defines = [
Expand Down Expand Up @@ -121,5 +121,6 @@ cc_library(
"@xsimd",
"@zlib",
"@zstd",
"@io_opentelemetry_cpp//sdk/src/trace"
],
)
8 changes: 4 additions & 4 deletions third_party/arrow/workspace.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
def repo():
http_archive(
name = "arrow",
build_file = "//third_party:arrow.BUILD",
sha256 = "57e13c62f27b710e1de54fd30faed612aefa22aa41fa2c0c3bacd204dd18a8f3",
strip_prefix = "arrow-apache-arrow-7.0.0",
build_file = "//third_party/arrow:arrow.BUILD",
sha256 = "07cdb4da6795487c800526b2865c150ab7d80b8512a31793e6a7147c8ccd270f",
strip_prefix = "arrow-apache-arrow-14.0.2",
urls = [
"https://github.com/apache/arrow/archive/apache-arrow-7.0.0.tar.gz",
"https://github.com/apache/arrow/archive/apache-arrow-14.0.2.tar.gz",
],
)
Binary file modified third_party/onnxruntime/onnxruntime_test.cc
Binary file not shown.
1 change: 1 addition & 0 deletions third_party/opentelemetry_cpp/workspace.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ 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 831216b

Please sign in to comment.