ID
stringlengths
36
36
Language
stringclasses
1 value
Repository Name
stringclasses
13 values
File Name
stringlengths
2
44
File Path in Repository
stringlengths
11
111
File Path for Unit Test
stringlengths
16
116
Code
stringlengths
0
278k
Unit Test - (Ground Truth)
stringlengths
127
663k
Code Url
stringlengths
91
198
Test Code Url
stringlengths
96
203
Commit Hash
stringclasses
13 values
32ba9709-ceb9-419a-9415-2ed32cd72d6a
cpp
google/quiche
rst_stream_payload_decoder
quiche/http2/decoder/payload_decoders/rst_stream_payload_decoder.cc
quiche/http2/decoder/payload_decoders/rst_stream_payload_decoder_test.cc
#include "quiche/http2/decoder/payload_decoders/rst_stream_payload_decoder.h" #include "quiche/http2/decoder/decode_buffer.h" #include "quiche/http2/decoder/http2_frame_decoder_listener.h" #include "quiche/http2/http2_constants.h" #include "quiche/http2/http2_structures.h" #include "quiche/common/platform/api/quiche_lo...
#include "quiche/http2/decoder/payload_decoders/rst_stream_payload_decoder.h" #include <stddef.h> #include "quiche/http2/decoder/http2_frame_decoder_listener.h" #include "quiche/http2/http2_constants.h" #include "quiche/http2/test_tools/frame_parts.h" #include "quiche/http2/test_tools/frame_parts_collector.h" #include ...
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/http2/decoder/payload_decoders/rst_stream_payload_decoder.cc
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/http2/decoder/payload_decoders/rst_stream_payload_decoder_test.cc
6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6
4506e907-c408-4e9e-a9ab-f52b10e03bdf
cpp
tensorflow/tensorflow
kernel_fallback_compat_request_state
tensorflow/core/runtime_fallback/kernel/kernel_fallback_compat_request_state.cc
tensorflow/core/runtime_fallback/test/kernel_fallback_compat_request_state_test.cc
#include "tensorflow/core/runtime_fallback/kernel/kernel_fallback_compat_request_state.h" #include <cstdlib> #include <cstring> #include <functional> #include <memory> #include <optional> #include <string> #include <utility> #include "tensorflow/core/common_runtime/renamed_device.h" #include "tensorflow/core/common_run...
#include "tensorflow/core/runtime_fallback/kernel/kernel_fallback_compat_request_state.h" #include <gtest/gtest.h> #include "tensorflow/core/framework/tensor_testutil.h" namespace tensorflow { namespace tfd { namespace { TEST(FallbackResourceArrayTest, SetAndGetResourceOk) { Tensor tensor_1 = test::AsTensor<flo...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/runtime_fallback/kernel/kernel_fallback_compat_request_state.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/runtime_fallback/test/kernel_fallback_compat_request_state_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
a967d760-b018-42d6-a3dc-cae0cbac31b8
cpp
google/tensorstore
concurrent
tensorstore/internal/testing/concurrent.cc
tensorstore/internal/testing/concurrent_test.cc
#include "tensorstore/internal/testing/concurrent.h" #include "absl/log/absl_check.h" #include "absl/log/absl_log.h" #ifdef _WIN32 #define WIN32_LEAN_AND_MEAN #include <windows.h> #endif namespace tensorstore { namespace internal_testing { #ifdef _WIN32 TestConcurrentLock::TestConcurrentLock() { handle_ = ::C...
#include "tensorstore/internal/testing/concurrent.h" #include <atomic> #include <type_traits> #include <gtest/gtest.h> #include "absl/log/absl_log.h" #include "absl/synchronization/mutex.h" namespace { using ::tensorstore::internal_testing::TestConcurrent; TEST(TestConcurrent, EnsureContentionHappens) { static conste...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/testing/concurrent.cc
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/testing/concurrent_test.cc
4f887a6430414cd6088e1743555015b10f116d50
31ca920e-06dc-41f7-8f63-bf1d9dda7801
cpp
tensorflow/tensorflow
numerical_utils
tensorflow/compiler/mlir/lite/quantization/numerical_utils.cc
tensorflow/compiler/mlir/lite/quantization/numerical_utils_test.cc
#include "tensorflow/compiler/mlir/lite/quantization/numerical_utils.h" #include <assert.h> #include <algorithm> #include <cmath> #include <limits> #include <optional> #include "absl/types/optional.h" namespace mlir { namespace quant { QuantizedMultiplier QuantizeMultiplier(double double_multiplier) { if (double_mult...
#include "tensorflow/compiler/mlir/lite/quantization/numerical_utils.h" #include <cmath> #include <optional> #include <gtest/gtest.h> #include "absl/types/optional.h" namespace mlir { namespace quant { namespace { double ComposeScale(const QuantizedMultiplier& input) { return input.first * exp2(-31 + input.second); }...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/lite/quantization/numerical_utils.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/lite/quantization/numerical_utils_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
db30c870-4a02-4b6c-9779-ea72313933d7
cpp
google/tsl
gcs_throttle
tsl/platform/cloud/gcs_throttle.cc
tsl/platform/cloud/gcs_throttle_test.cc
#include "tsl/platform/cloud/gcs_throttle.h" #include <algorithm> namespace tsl { namespace { EnvTime* get_default_env_time() { static EnvTime* default_env_time = new EnvTime; return default_env_time; } } GcsThrottle::GcsThrottle(EnvTime* env_time) : last_updated_secs_(env_time ? env_time->GetOverridableNowSe...
#include "tsl/platform/cloud/gcs_throttle.h" #include "xla/tsl/lib/core/status_test_util.h" #include "tsl/platform/str_util.h" #include "tsl/platform/test.h" namespace tsl { namespace { class TestTime : public EnvTime { public: uint64 GetOverridableNowNanos() const override { return now_micros_ * kMicrosToNanos;...
https://github.com/google/tsl/blob/6d708fdcdd4f40537b7fa273371215a6fa3d4423/tsl/platform/cloud/gcs_throttle.cc
https://github.com/google/tsl/blob/6d708fdcdd4f40537b7fa273371215a6fa3d4423/tsl/platform/cloud/gcs_throttle_test.cc
6d708fdcdd4f40537b7fa273371215a6fa3d4423
829c19fc-b072-493f-add4-3d8563d80635
cpp
google/libphonenumber
regexp_adapter
cpp/src/phonenumbers/regexp_adapter.h
cpp/test/phonenumbers/regexp_adapter_test.cc
#ifndef I18N_PHONENUMBERS_REGEXP_ADAPTER_H_ #define I18N_PHONENUMBERS_REGEXP_ADAPTER_H_ #include <cstddef> #include <string> namespace i18n { namespace phonenumbers { using std::string; class RegExpInput { public: virtual ~RegExpInput() {} virtual string ToString() const = 0; }; class RegExp { public: virtual ~...
#include "phonenumbers/regexp_adapter.h" #include <string> #include <vector> #include <gtest/gtest.h> #include "phonenumbers/base/memory/scoped_ptr.h" #include "phonenumbers/stl_util.h" #include "phonenumbers/stringutil.h" #ifdef I18N_PHONENUMBERS_USE_RE2 #include "phonenumbers/regexp_adapter_re2.h" #else #include "pho...
https://github.com/google/libphonenumber/blob/9aa9aaa39ad8098aef56071d2df4f6f8d251c98b/cpp/src/phonenumbers/regexp_adapter.h
https://github.com/google/libphonenumber/blob/9aa9aaa39ad8098aef56071d2df4f6f8d251c98b/cpp/test/phonenumbers/regexp_adapter_test.cc
9aa9aaa39ad8098aef56071d2df4f6f8d251c98b
b171af87-ba8d-4846-b355-b1c99330705c
cpp
tensorflow/tensorflow
encapsulate_tpu_computations_pass
tensorflow/core/tpu/graph_rewrite/encapsulate_tpu_computations_pass.cc
tensorflow/core/tpu/graph_rewrite/encapsulate_tpu_computations_pass_test.cc
#include "tensorflow/core/tpu/graph_rewrite/encapsulate_tpu_computations_pass.h" #include <algorithm> #include <cstdint> #include <map> #include <memory> #include <optional> #include <queue> #include <set> #include <string> #include <tuple> #include <unordered_map> #include <unordered_set> #include <utility> #include <...
#include "tensorflow/core/tpu/graph_rewrite/encapsulate_tpu_computations_pass.h" #include <memory> #include "xla/tsl/lib/core/status_test_util.h" #include "tensorflow/core/common_runtime/optimization_registry.h" #include "tensorflow/core/config/flag_defs.h" #include "tensorflow/core/framework/op.h" #include "tensorflow...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/tpu/graph_rewrite/encapsulate_tpu_computations_pass.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/tpu/graph_rewrite/encapsulate_tpu_computations_pass_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
fbc0f9e3-a934-4f25-b2af-dbb74096c5a7
cpp
google/tsl
numa
tsl/platform/numa.h
tsl/platform/numa_test.cc
#ifndef TENSORFLOW_TSL_PLATFORM_NUMA_H_ #define TENSORFLOW_TSL_PLATFORM_NUMA_H_ #include "tsl/platform/platform.h" #include "tsl/platform/types.h" namespace tsl { namespace port { bool NUMAEnabled(); int NUMANumNodes(); static const int kNUMANoAffinity = -1; void NUMASetThreadNodeAffinity(int node); int NUMAGetThreadNo...
#include "tsl/platform/numa.h" #include "tsl/platform/logging.h" #include "tsl/platform/test.h" namespace tsl { namespace internal { TEST(Numa, NumNodes) { if (port::NUMAEnabled()) { EXPECT_GE(port::NUMANumNodes(), 1); } } TEST(Numa, Malloc) { if (port::NUMAEnabled()) { int num_nodes = port::NUMANumNodes(...
https://github.com/google/tsl/blob/6d708fdcdd4f40537b7fa273371215a6fa3d4423/tsl/platform/numa.h
https://github.com/google/tsl/blob/6d708fdcdd4f40537b7fa273371215a6fa3d4423/tsl/platform/numa_test.cc
6d708fdcdd4f40537b7fa273371215a6fa3d4423
f71fad68-e03b-400c-b9ab-ee61e52d3905
cpp
tensorflow/tensorflow
buffer
tensorflow/lite/delegates/gpu/cl/buffer.cc
tensorflow/lite/delegates/gpu/cl/buffer_test.cc
#include "tensorflow/lite/delegates/gpu/cl/buffer.h" #include <string> #include "absl/status/status.h" #include "tensorflow/lite/delegates/gpu/common/data_type.h" #include "tensorflow/lite/delegates/gpu/common/status.h" namespace tflite { namespace gpu { namespace cl { namespace { absl::Status CreateBuffer(size_t size_...
#include "tensorflow/lite/delegates/gpu/cl/buffer.h" #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorflow/lite/delegates/gpu/cl/cl_test.h" #include "tensorflow/lite/delegates/gpu/common/status.h" using ::testing::FloatNear; using ::testing::Pointwise; namespace tflite { namespace gpu...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/delegates/gpu/cl/buffer.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/delegates/gpu/cl/buffer_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
ed05a639-8611-4b50-bf09-f303ce4b0779
cpp
google/tensorstore
index_transform
tensorstore/index_space/index_transform.cc
tensorstore/index_space/index_transform_test.cc
#include "tensorstore/index_space/index_transform.h" #include <algorithm> #include <cassert> #include <cstdlib> #include <limits> #include <numeric> #include <string> #include <string_view> #include <utility> #include "absl/status/status.h" #include "tensorstore/box.h" #include "tensorstore/container_kind.h" #include "...
#include "tensorstore/index_space/index_transform.h" #include <array> #include <string_view> #include <type_traits> #include <utility> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "tensorstore/array.h" #include "tensorstore/container_kind.h" #include "tensorstore/index.h" #...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/index_space/index_transform.cc
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/index_space/index_transform_test.cc
4f887a6430414cd6088e1743555015b10f116d50
d5aa5d03-9969-4c67-b9de-22138d23dbba
cpp
google/cel-cpp
value_factory
common/value_factory.cc
common/value_factory_test.cc
#include "common/value_factory.h" #include <algorithm> #include <cstddef> #include <memory> #include <new> #include <string> #include <utility> #include <vector> #include "absl/base/attributes.h" #include "absl/base/nullability.h" #include "absl/base/optimization.h" #include "absl/functional/overload.h" #include "absl/...
#include "common/value_factory.h" #include <ostream> #include <sstream> #include <string> #include <tuple> #include <utility> #include <vector> #include "absl/strings/cord.h" #include "absl/types/optional.h" #include "common/casting.h" #include "common/json.h" #include "common/memory.h" #include "common/memory_testing....
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/value_factory.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/value_factory_test.cc
4552db5798fb0853b131b783d8875794334fae7f
3ca3fc07-51cc-43e8-9de3-a65284addc16
cpp
tensorflow/tensorflow
quantize_op
tensorflow/core/kernels/quantize_op.cc
tensorflow/core/kernels/quantize_op_test.cc
#define EIGEN_USE_THREADS #include "tensorflow/core/framework/op.h" #include "tensorflow/core/framework/op_kernel.h" #include "tensorflow/core/framework/type_traits.h" #include "tensorflow/core/framework/types.h" #include "tensorflow/core/kernels/cwise_ops.h" #include "tensorflow/core/kernels/meta_support.h" #include "...
#include <random> #include "tensorflow/core/framework/fake_input.h" #include "tensorflow/core/framework/node_def_builder.h" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/kernels/ops_testutil.h" #include "tensorflow/core/kernels/ops_util.h" #include "tensorflow/core/lib/core/status_test_util.h"...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/quantize_op.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/quantize_op_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
2acfe0d1-f7e4-4526-b22b-1e7ab437fdaa
cpp
tensorflow/tensorflow
no_op_cost_measurement
tensorflow/core/common_runtime/no_op_cost_measurement.cc
tensorflow/core/common_runtime/no_op_cost_measurement_test.cc
#include "tensorflow/core/common_runtime/no_op_cost_measurement.h" #include "absl/strings/string_view.h" #include "tensorflow/core/common_runtime/cost_constants.h" namespace tensorflow { absl::Duration NoOpCostMeasurement::GetTotalCost() { return absl::Duration(); } absl::string_view NoOpCostMeasurement::GetCostType() ...
#include "tensorflow/core/common_runtime/no_op_cost_measurement.h" #include "tensorflow/core/common_runtime/cost_measurement.h" #include "tensorflow/core/platform/test.h" namespace tensorflow { namespace { TEST(NoOpCostMeasurementTest, Basic) { CostMeasurement::Context context; NoOpCostMeasurement measurement(conte...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/common_runtime/no_op_cost_measurement.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/common_runtime/no_op_cost_measurement_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
a547991a-c996-49e1-9bda-5e264c5885da
cpp
tensorflow/tensorflow
fallback_state
tensorflow/core/tfrt/fallback/fallback_state.cc
tensorflow/core/tfrt/fallback/fallback_state_test.cc
#include "tensorflow/core/tfrt/fallback/fallback_state.h" #include <cstddef> #include <cstdint> #include <memory> #include <new> #include <utility> #include <variant> #include <vector> #include "absl/base/nullability.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/string_view...
#include "tensorflow/core/tfrt/fallback/fallback_state.h" #include <memory> #include <utility> #include <variant> #include <vector> #include "absl/base/nullability.h" #include "tensorflow/cc/framework/ops.h" #include "tensorflow/cc/framework/scope.h" #include "tensorflow/cc/ops/const_op.h" #include "xla/tsl/lib/core/st...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/tfrt/fallback/fallback_state.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/tfrt/fallback/fallback_state_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
2091f3ec-d32a-44a7-96a0-c83bf61ad3d7
cpp
tensorflow/tensorflow
dequantize
tensorflow/lite/toco/graph_transformations/dequantize.cc
tensorflow/lite/kernels/dequantize_test.cc
#include <memory> #include <string> #include <unordered_map> #include <vector> #include "absl/status/status.h" #include "tensorflow/core/platform/logging.h" #include "tensorflow/core/platform/status.h" #include "tensorflow/lite/toco/graph_transformations/graph_transformations.h" #include "tensorflow/lite/toco/graph_tra...
#include <cstdint> #include <initializer_list> #include <memory> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/memory/memory.h" #include "Eigen/Core" #include "flatbuffers/flatbuffers.h" #include "tensorflow/lite/core/api/op_resolver.h" #include "tensorflow/lite/core/interpreter...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/toco/graph_transformations/dequantize.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/kernels/dequantize_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
eb460c66-7cb9-40e7-b285-95b38d049932
cpp
google/arolla
while_loop
arolla/expr/operators/while_loop/while_loop.cc
arolla/expr/operators/while_loop/while_loop_test.cc
#include "arolla/expr/operators/while_loop/while_loop.h" #include <algorithm> #include <cstddef> #include <cstdint> #include <iterator> #include <memory> #include <string> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/container/flat_hash_map.h" #include "absl/container/flat_h...
#include "arolla/expr/operators/while_loop/while_loop.h" #include <cstdint> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/status/status.h" #include "absl/status/status_matchers.h" #include "arolla/expr/expr.h" #include "arolla/expr/expr_attributes.h" #include "arolla/expr/expr_node.h" #include "aroll...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/expr/operators/while_loop/while_loop.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/expr/operators/while_loop/while_loop_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
007ea024-5d57-428a-86ad-a1f23ced3e5b
cpp
tensorflow/tensorflow
make_deterministic
tensorflow/core/grappler/optimizers/data/make_deterministic.cc
tensorflow/core/grappler/optimizers/data/make_deterministic_test.cc
#include "tensorflow/core/grappler/optimizers/data/make_deterministic.h" #include <algorithm> #include <utility> #include "absl/container/flat_hash_set.h" #include "tensorflow/core/data/dataset_utils.h" #include "tensorflow/core/framework/dataset.h" #include "tensorflow/core/framework/node_def.pb.h" #include "tensorflo...
#include "tensorflow/core/grappler/optimizers/data/make_deterministic.h" #include "tensorflow/core/framework/attr_value_util.h" #include "tensorflow/core/framework/common_shape_fns.h" #include "tensorflow/core/framework/function_testlib.h" #include "tensorflow/core/framework/tensor_testutil.h" #include "tensorflow/core...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/grappler/optimizers/data/make_deterministic.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/grappler/optimizers/data/make_deterministic_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
93707a59-8f29-468f-8a8b-35eca835d93e
cpp
tensorflow/tensorflow
bundle_v2
tensorflow/cc/saved_model/bundle_v2.cc
tensorflow/cc/saved_model/bundle_v2_test.cc
#include "tensorflow/cc/saved_model/bundle_v2.h" #include <memory> #include <string> #include <utility> #include "absl/container/flat_hash_set.h" #include "absl/log/log.h" #include "absl/status/status.h" #include "tensorflow/cc/saved_model/constants.h" #include "tensorflow/cc/saved_model/fingerprinting.h" #include "ten...
#include "tensorflow/cc/saved_model/bundle_v2.h" #include <algorithm> #include <string> #include <tuple> #include <utility> #include <vector> #include "absl/status/status.h" #include "absl/strings/match.h" #include "absl/strings/str_cat.h" #include "json/json.h" #include "json/reader.h" #include "json/value.h" #include...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/cc/saved_model/bundle_v2.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/cc/saved_model/bundle_v2_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
30284e41-2319-4f52-8b80-30cb28be38ab
cpp
tensorflow/tensorflow
dynamic_parameter_binding
third_party/xla/xla/hlo/ir/dynamic_parameter_binding.cc
third_party/xla/xla/service/dynamic_parameter_binding_test.cc
#include "xla/hlo/ir/dynamic_parameter_binding.h" #include <optional> #include <ostream> #include <string> #include <vector> #include "absl/status/status.h" #include "absl/strings/str_format.h" #include "absl/strings/str_join.h" #include "xla/hlo/ir/hlo_computation.h" #include "xla/hlo/ir/hlo_instruction.h" #include "x...
#include "xla/hlo/ir/dynamic_parameter_binding.h" #include <memory> #include <optional> #include <string> #include <gtest/gtest.h> #include "xla/hlo/ir/hlo_computation.h" #include "xla/hlo/ir/hlo_instruction.h" #include "xla/shape_util.h" #include "xla/tests/hlo_test_base.h" #include "xla/tsl/lib/core/status_test_util....
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/ir/dynamic_parameter_binding.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/dynamic_parameter_binding_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
f0e563bc-2bb4-482f-856e-379601a30544
cpp
tensorflow/tensorflow
const_op_size
tensorflow/compiler/mlir/quantization/tensorflow/cc/const_op_size.cc
tensorflow/compiler/mlir/quantization/tensorflow/cc/const_op_size_test.cc
#include "tensorflow/compiler/mlir/quantization/tensorflow/cc/const_op_size.h" #include <climits> #include "mlir/IR/BuiltinAttributeInterfaces.h" #include "mlir/IR/Types.h" #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h" #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h" namespace mlir { namesp...
#include "tensorflow/compiler/mlir/quantization/tensorflow/cc/const_op_size.h" #include "absl/strings/string_view.h" #include "llvm/Support/Casting.h" #include "mlir/IR/AsmState.h" #include "mlir/IR/Block.h" #include "mlir/IR/MLIRContext.h" #include "mlir/IR/OwningOpRef.h" #include "mlir/IR/Types.h" #include ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/quantization/tensorflow/cc/const_op_size.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/quantization/tensorflow/cc/const_op_size_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
834bb1af-cfe3-4222-b0e6-4f6bafc3759b
cpp
tensorflow/tensorflow
move_copy_to_users
third_party/xla/xla/service/gpu/transforms/move_copy_to_users.cc
third_party/xla/xla/service/gpu/transforms/move_copy_to_users_test.cc
#include "xla/service/gpu/transforms/move_copy_to_users.h" #include <vector> #include "absl/container/flat_hash_set.h" #include "absl/status/status.h" #include "absl/strings/string_view.h" #include "absl/types/span.h" #include "xla/hlo/ir/dfs_hlo_visitor_with_default.h" #include "xla/hlo/ir/hlo_instruction.h" #include ...
#include "xla/service/gpu/transforms/move_copy_to_users.h" #include <optional> #include "absl/strings/string_view.h" #include "xla/service/layout_assignment.h" #include "xla/tests/hlo_test_base.h" #include "tsl/platform/test.h" namespace xla { namespace { class MoveCopyToUsersTest : public HloTestBase { public: Move...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/transforms/move_copy_to_users.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/transforms/move_copy_to_users_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
df9c3ca4-5178-49e5-9e5f-3c983d3d5701
cpp
tensorflow/tensorflow
window_util
third_party/xla/xla/window_util.cc
third_party/xla/xla/window_util_test.cc
#include "xla/window_util.h" #include <functional> #include <string> #include <vector> #include "absl/algorithm/container.h" #include "absl/functional/function_ref.h" #include "absl/strings/str_cat.h" #include "xla/xla_data.pb.h" #include "tsl/platform/logging.h" namespace xla { namespace window_util { Window MakeWindo...
#include "xla/window_util.h" #include "xla/test.h" namespace xla { namespace { using ::testing::ElementsAre; TEST(WindowUtilTest, HasOverlappingWindowTest) { EXPECT_FALSE( window_util::HasOverlappingWindow(window_util::MakeWindow({1, 1}))); EXPECT_TRUE( window_util::HasOverlappingWindow(window_util::Mak...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/window_util.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/window_util_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
09cb284c-bf40-4c9c-9f0c-54355ea7ec3e
cpp
google/quiche
quic_stream_priority
quiche/quic/core/quic_stream_priority.cc
quiche/quic/core/quic_stream_priority_test.cc
#include "quiche/quic/core/quic_stream_priority.h" #include <optional> #include <string> #include <vector> #include "quiche/common/platform/api/quiche_bug_tracker.h" #include "quiche/common/structured_headers.h" namespace quic { std::string SerializePriorityFieldValue(HttpStreamPriority priority) { quiche::structured...
#include "quiche/quic/core/quic_stream_priority.h" #include <optional> #include "quiche/quic/core/quic_types.h" #include "quiche/common/platform/api/quiche_test.h" namespace quic::test { TEST(HttpStreamPriority, DefaultConstructed) { HttpStreamPriority priority; EXPECT_EQ(HttpStreamPriority::kDefaultUrgency, priori...
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/core/quic_stream_priority.cc
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/core/quic_stream_priority_test.cc
6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6
db56bb06-7c34-4ecb-b2e3-92e681833f69
cpp
tensorflow/tensorflow
tensor
tensorflow/lite/delegates/gpu/cl/tensor.cc
tensorflow/cc/experimental/base/tests/tensor_test.cc
#include "tensorflow/lite/delegates/gpu/cl/tensor.h" #include <cstdint> #include <cstring> #include <memory> #include <utility> #include <vector> #include "absl/strings/str_cat.h" #include "tensorflow/lite/delegates/gpu/cl/buffer.h" #include "tensorflow/lite/delegates/gpu/cl/cl_image_format.h" #include "tensorflow/lite...
#include "tensorflow/cc/experimental/base/public/tensor.h" #include <stddef.h> #include <stdint.h> #include <gtest/gtest.h> #include "absl/types/span.h" #include "tensorflow/c/tf_datatype.h" #include "tensorflow/cc/experimental/base/public/status.h" #include "tensorflow/cc/experimental/base/tests/tensor_types_test_util...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/delegates/gpu/cl/tensor.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/cc/experimental/base/tests/tensor_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
75a7738d-254a-4171-9083-e75edd0bb8bc
cpp
google/tensorstore
neuroglancer_compressed_segmentation
tensorstore/internal/compression/neuroglancer_compressed_segmentation.cc
tensorstore/internal/compression/neuroglancer_compressed_segmentation_test.cc
#include "tensorstore/internal/compression/neuroglancer_compressed_segmentation.h" #include <stddef.h> #include <stdint.h> #include <algorithm> #include <cassert> #include <string> #include <string_view> #include <vector> #include "absl/base/internal/endian.h" #include "absl/container/flat_hash_map.h" namespace tensors...
#include "tensorstore/internal/compression/neuroglancer_compressed_segmentation.h" #include <cstddef> #include <cstdint> #include <string> #include <string_view> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/random/random.h" namespace { using ::tensorstore::neuroglancer_compressed_s...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/compression/neuroglancer_compressed_segmentation.cc
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/compression/neuroglancer_compressed_segmentation_test.cc
4f887a6430414cd6088e1743555015b10f116d50
020f23af-2962-414a-80bf-392dce42a8cc
cpp
google/arolla
lazy_qtype
arolla/lazy/lazy_qtype.cc
arolla/lazy/lazy_qtype_test.cc
#include "arolla/lazy/lazy_qtype.h" #include <memory> #include <string> #include <utility> #include "absl/base/no_destructor.h" #include "absl/base/thread_annotations.h" #include "absl/container/flat_hash_map.h" #include "absl/log/check.h" #include "absl/status/statusor.h" #include "absl/synchronization/mutex.h" #inclu...
#include "arolla/lazy/lazy_qtype.h" #include <cstdint> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/status/status_matchers.h" #include "arolla/lazy/lazy.h" #include "arolla/qtype/base_types.h" #include "arolla/qtype/qtype.h" #include "arolla/qtype/qtype_traits.h" #include "arolla/qtype/testing/qtype...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/lazy/lazy_qtype.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/lazy/lazy_qtype_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
ed9a82cd-053d-4367-8614-919d3297f750
cpp
tensorflow/tensorflow
unary_elementwise
tensorflow/lite/experimental/shlo/ops/unary_elementwise.h
tensorflow/lite/experimental/shlo/ops/unary_elementwise_test.cc
#ifndef TENSORFLOW_LITE_EXPERIMENTAL_SHLO_OPS_UNARY_ELEMENTWISE_H_ #define TENSORFLOW_LITE_EXPERIMENTAL_SHLO_OPS_UNARY_ELEMENTWISE_H_ #include <cstddef> #include "absl/algorithm/container.h" #include "absl/status/status.h" #include "absl/types/span.h" #include "tensorflow/lite/experimental/shlo/data_type.h" #include "t...
#include "tensorflow/lite/experimental/shlo/ops/unary_elementwise.h" #include <cstddef> #include <cstdint> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/algorithm/container.h" #include "tensorflow/lite/experimental/shlo/data_type.h" #include "tensorflow/lite/experimental/shlo/ops/test_util.h" #includ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/experimental/shlo/ops/unary_elementwise.h
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/experimental/shlo/ops/unary_elementwise_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
e17e7a4e-c44e-407c-9a22-e2ea6b473e56
cpp
tensorflow/tensorflow
atan2
tensorflow/lite/kernels/atan2.cc
tensorflow/lite/kernels/atan2_test.cc
#include <cmath> #include "tensorflow/lite/core/c/common.h" #include "tensorflow/lite/kernels/internal/tensor_ctypes.h" #include "tensorflow/lite/kernels/kernel_util.h" namespace tflite { namespace ops { namespace builtin { namespace atan2 { TfLiteStatus EnsureSameShape( TfLiteContext* context, const TfLiteTens...
#include <cmath> #include <gtest/gtest.h> #include "tensorflow/lite/kernels/test_util.h" #include "tensorflow/lite/schema/schema_generated.h" namespace tflite { namespace { template <typename T> tflite::TensorType GetTTEnum(); template <> tflite::TensorType GetTTEnum<float>() { return tflite::TensorType_FLOAT32; } te...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/kernels/atan2.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/kernels/atan2_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
c9ed0c99-fb9b-460c-b0cb-e6aefe4b7ca8
cpp
tensorflow/tensorflow
range
tensorflow/lite/kernels/range.cc
tensorflow/lite/kernels/range_test.cc
#include <math.h> #include <stdint.h> #include <stdlib.h> #include <functional> #include <type_traits> #include "tensorflow/lite/core/c/common.h" #include "tensorflow/lite/kernels/internal/reference/reference_ops.h" #include "tensorflow/lite/kernels/internal/tensor.h" #include "tensorflow/lite/kernels/internal/tensor_c...
#include <stdint.h> #include <vector> #include <gtest/gtest.h> #include "tensorflow/lite/kernels/test_util.h" #include "tensorflow/lite/schema/schema_generated.h" namespace tflite { namespace { using ::testing::ElementsAre; template <typename T> class RangeOpModel : public SingleOpModel { public: explicit RangeOpMod...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/kernels/range.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/kernels/range_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
944a5e29-2e4e-4401-9e0f-8585788d40e5
cpp
tensorflow/tensorflow
kernel_stats_utils
tensorflow/core/profiler/utils/kernel_stats_utils.cc
tensorflow/core/profiler/utils/kernel_stats_utils_test.cc
#include "tensorflow/core/profiler/utils/kernel_stats_utils.h" #include <algorithm> #include <string> #include <tuple> #include <vector> #include "absl/algorithm/container.h" #include "absl/strings/match.h" #include "absl/strings/numbers.h" #include "absl/strings/str_split.h" #include "absl/strings/string_view.h" #incl...
#include "tensorflow/core/profiler/utils/kernel_stats_utils.h" #include <gmock/gmock.h> #include "xla/backends/profiler/gpu/cupti_collector.h" #include "tensorflow/core/platform/test.h" #include "tensorflow/core/profiler/protobuf/kernel_stats.pb.h" namespace tensorflow { namespace profiler { namespace { using ::testing...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/profiler/utils/kernel_stats_utils.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/profiler/utils/kernel_stats_utils_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
177c49f7-cafe-4e0f-86a9-c448609d3dd8
cpp
google/tensorstore
optional_object
tensorstore/internal/json_binding/optional_object.h
tensorstore/internal/json_binding/optional_object_test.cc
#ifndef TENSORSTORE_INTERNAL_JSON_BINDING_OPTIONAL_OBJECT_H_ #define TENSORSTORE_INTERNAL_JSON_BINDING_OPTIONAL_OBJECT_H_ #include "absl/status/status.h" #include <nlohmann/json.hpp> #include "tensorstore/internal/json/value_as.h" #include "tensorstore/internal/json_binding/json_binding.h" namespace tensorstore { names...
#include "tensorstore/internal/json_binding/optional_object.h" #include <gtest/gtest.h> #include "absl/status/status.h" #include <nlohmann/json.hpp> #include "tensorstore/internal/json_binding/gtest.h" #include "tensorstore/internal/json_binding/json_binding.h" #include "tensorstore/internal/json_gtest.h" #include "ten...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/json_binding/optional_object.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/json_binding/optional_object_test.cc
4f887a6430414cd6088e1743555015b10f116d50
b9800ed6-bc3e-42db-a5d2-71bbee890890
cpp
tensorflow/tensorflow
resize_bicubic_op
tensorflow/core/kernels/image/resize_bicubic_op.cc
tensorflow/core/kernels/image/resize_bicubic_op_test.cc
#define EIGEN_USE_THREADS #include <math.h> #include <algorithm> #include <array> #include "unsupported/Eigen/CXX11/Tensor" #include "tensorflow/core/framework/op_kernel.h" #include "tensorflow/core/framework/register_types.h" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/framework/tensor_sh...
#include "tensorflow/core/common_runtime/kernel_benchmark_testlib.h" #include "tensorflow/core/framework/fake_input.h" #include "tensorflow/core/framework/node_def_builder.h" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/kernels/ops_testutil.h" #include "tensorflow/core/lib/core/status_test_ut...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/image/resize_bicubic_op.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/image/resize_bicubic_op_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
831eba5a-1e8a-4c10-b485-c8cc4caf6274
cpp
tensorflow/tensorflow
task_internal
tensorflow/lite/core/async/task_internal.cc
tensorflow/lite/core/async/task_internal_test.cc
#include "tensorflow/lite/core/async/task_internal.h" #include <cstdint> #include <map> #include <memory> #include <string> #include "tensorflow/lite/core/async/async_kernel_internal.h" #include "tensorflow/lite/core/async/c/types.h" #include "tensorflow/lite/core/async/interop/c/types.h" #include "tensorflow/lite/core...
#include "tensorflow/lite/core/async/task_internal.h" #include <string> #include <gtest/gtest.h> #include "tensorflow/lite/c/c_api_types.h" #include "tensorflow/lite/c/common.h" #include "tensorflow/lite/core/async/c/types.h" #include "tensorflow/lite/core/async/interop/c/types.h" namespace tflite::async { TEST(TfLiteE...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/core/async/task_internal.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/core/async/task_internal_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
59593b95-a75a-4b03-b909-6c7098377862
cpp
google/tensorstore
json_registry
tensorstore/internal/json_registry.h
tensorstore/internal/json_registry_test.cc
#ifndef TENSORSTORE_INTERNAL_JSON_REGISTRY_H_ #define TENSORSTORE_INTERNAL_JSON_REGISTRY_H_ #include <memory> #include <string> #include <string_view> #include <type_traits> #include <typeindex> #include <utility> #include "absl/status/status.h" #include <nlohmann/json.hpp> #include "tensorstore/internal/json_binding/j...
#include "tensorstore/internal/json_registry.h" #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/base/no_destructor.h" #include "absl/status/status.h" #include "tensorstore/internal/intrusive_ptr.h" #include "tensorstore/internal/json_binding/bindable.h" #include "tensorstore/internal/json_binding/json_...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/json_registry.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/json_registry_test.cc
4f887a6430414cd6088e1743555015b10f116d50
6563a9cb-dea9-48ee-bc96-d7524605a677
cpp
tensorflow/tensorflow
replicate_per_replica_nodes
tensorflow/core/common_runtime/replicate_per_replica_nodes.cc
tensorflow/core/common_runtime/replicate_per_replica_nodes_test.cc
#include "tensorflow/core/common_runtime/replicate_per_replica_nodes.h" #include <algorithm> #include <queue> #include "absl/strings/str_cat.h" #include "tensorflow/core/common_runtime/optimize_cross_host_control_deps.h" #include "tensorflow/core/framework/node_def.pb.h" #include "tensorflow/core/framework/node_def_bui...
#include "tensorflow/core/common_runtime/replicate_per_replica_nodes.h" #include <map> #include <vector> #include "absl/strings/match.h" #include "tensorflow/cc/ops/const_op.h" #include "tensorflow/cc/ops/function_ops.h" #include "tensorflow/cc/ops/resource_variable_ops.h" #include "tensorflow/cc/ops/standard_ops.h" #i...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/common_runtime/replicate_per_replica_nodes.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/common_runtime/replicate_per_replica_nodes_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
8f1fc3e6-a0f2-4449-b1a7-b42f92f2e61b
cpp
tensorflow/tensorflow
xent_op
tensorflow/core/kernels/xent_op.cc
tensorflow/core/kernels/xent_op_test.cc
#define EIGEN_USE_THREADS #include "tensorflow/core/kernels/xent_op.h" #include "unsupported/Eigen/CXX11/Tensor" #include "tensorflow/core/framework/op_kernel.h" #include "tensorflow/core/framework/register_types.h" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/framework/tensor_shape.h" #inc...
#include "tensorflow/core/kernels/xent_op.h" #include "tensorflow/core/common_runtime/kernel_benchmark_testlib.h" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/platform/test.h" #include "tensorflow/core/platform/test_benchmark.h" namespace tensorflow { template <class T> static Graph* Xent(int...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/xent_op.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/xent_op_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
40deacba-c32f-4c52-97bb-a950b5905922
cpp
tensorflow/tensorflow
shape_util
tensorflow/compiler/tf2xla/kernels/shape_util.cc
third_party/xla/xla/shape_util_test.cc
#include "tensorflow/compiler/tf2xla/kernels/shape_util.h" #include <limits> #include "absl/status/status.h" #include "tensorflow/core/framework/bounds_check.h" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/framework/tensor_shape.h" #include "tensorflow/core/framework/types.pb.h" #include "ten...
#include "xla/shape_util.h" #include <algorithm> #include <cstdint> #include <numeric> #include <optional> #include <utility> #include <variant> #include <vector> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/strings/str_join.h" #include "absl/types/s...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/tf2xla/kernels/shape_util.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/shape_util_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
472804a5-8f92-4078-b679-b52c4d682391
cpp
tensorflow/tensorflow
mlir_fusion_emitter
third_party/xla/xla/service/gpu/fusions/mlir/mlir_fusion_emitter.cc
third_party/xla/xla/service/gpu/fusions/mlir/mlir_fusion_emitter_test.cc
#include "xla/service/gpu/fusions/mlir/mlir_fusion_emitter.h" #include <cstdint> #include <functional> #include <iterator> #include <memory> #include <optional> #include <string> #include <utility> #include <variant> #include <vector> #include "absl/algorithm/container.h" #include "absl/container/flat_hash_map.h" #incl...
#include "xla/service/gpu/fusions/mlir/mlir_fusion_emitter.h" #include <cstdint> #include <optional> #include <string> #include <gtest/gtest.h> #include "absl/status/status.h" #include "absl/strings/str_replace.h" #include "absl/strings/string_view.h" #include "llvm/IR/LLVMContext.h" #include "llvm/Support/raw_ostream....
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/fusions/mlir/mlir_fusion_emitter.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/fusions/mlir/mlir_fusion_emitter_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
321c5dd0-c284-4e83-8f76-cc62c4ee08b6
cpp
google/tensorstore
http_response
tensorstore/internal/http/http_response.cc
tensorstore/internal/http/http_response_test.cc
#include "tensorstore/internal/http/http_response.h" #include <stddef.h> #include <stdint.h> #include <limits> #include <optional> #include <string> #include <utility> #include "absl/status/status.h" #include "absl/strings/cord.h" #include "absl/strings/str_format.h" #include "re2/re2.h" #include "tensorstore/internal/...
#include "tensorstore/internal/http/http_response.h" #include <set> #include <utility> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/container/flat_hash_set.h" #include "absl/status/status.h" #include "tensorstore/util/status_testutil.h" namespace { using ::tensorstore::IsOkAndHolds; using ::tensorst...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/http/http_response.cc
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/http/http_response_test.cc
4f887a6430414cd6088e1743555015b10f116d50
a9e0d084-df21-48ff-913e-7966d428b431
cpp
google/cel-cpp
cel_function_registry
eval/public/cel_function_registry.cc
eval/public/cel_function_registry_test.cc
#include "eval/public/cel_function_registry.h" #include <algorithm> #include <initializer_list> #include <iterator> #include <memory> #include <utility> #include <vector> #include "absl/status/status.h" #include "absl/strings/string_view.h" #include "absl/synchronization/mutex.h" #include "absl/types/span.h" #include "...
#include "eval/public/cel_function_registry.h" #include <memory> #include <tuple> #include <vector> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "base/kind.h" #include "eval/internal/adapter_activation_impl.h" #include "eval/public/activation.h" #include "eval/public/cel_function.h" #inclu...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/cel_function_registry.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/public/cel_function_registry_test.cc
4552db5798fb0853b131b783d8875794334fae7f
d8539108-120a-419d-853b-1421467cce6e
cpp
abseil/abseil-cpp
has_absl_stringify
absl/strings/has_absl_stringify.h
absl/strings/has_absl_stringify_test.cc
#ifndef ABSL_STRINGS_HAS_ABSL_STRINGIFY_H_ #define ABSL_STRINGS_HAS_ABSL_STRINGIFY_H_ #include <type_traits> #include <utility> #include "absl/base/config.h" #include "absl/strings/string_view.h" namespace absl { ABSL_NAMESPACE_BEGIN namespace strings_internal { class UnimplementedSink { public: void Append(size_t c...
#include "absl/strings/has_absl_stringify.h" #include <string> #include "gtest/gtest.h" #include "absl/types/optional.h" namespace { struct TypeWithoutAbslStringify {}; struct TypeWithAbslStringify { template <typename Sink> friend void AbslStringify(Sink&, const TypeWithAbslStringify&) {} }; TEST(HasAbslStringifyT...
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/strings/has_absl_stringify.h
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/strings/has_absl_stringify_test.cc
03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4
fc5aac15-bf0a-45c4-8f6a-280c6aa505ab
cpp
google/arolla
common_qtype
arolla/qtype/standard_type_properties/common_qtype.cc
arolla/qtype/standard_type_properties/common_qtype_test.cc
#include "arolla/qtype/standard_type_properties/common_qtype.h" #include <algorithm> #include <array> #include <cstdint> #include "absl/algorithm/container.h" #include "absl/types/span.h" #include "arolla/qtype/array_like/array_like_qtype.h" #include "arolla/qtype/base_types.h" #include "arolla/qtype/qtype.h" #include ...
#include "arolla/qtype/standard_type_properties/common_qtype.h" #include <algorithm> #include <cstdint> #include <vector> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "arolla/array/qtype/types.h" #include "arolla/dense_array/qtype/types.h" #include "arolla/qtype/base_types.h" #include "arolla/qtype/option...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/standard_type_properties/common_qtype.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/standard_type_properties/common_qtype_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
9c586ff2-998f-46bb-8cd1-365898f411cf
cpp
tensorflow/tensorflow
triton_fusion_analysis
third_party/xla/xla/service/gpu/triton_fusion_analysis.cc
third_party/xla/xla/service/gpu/triton_fusion_analysis_test.cc
#include "xla/service/gpu/triton_fusion_analysis.h" #include <cstdint> #include <memory> #include <optional> #include <queue> #include <string> #include <utility> #include <variant> #include <vector> #include "absl/container/flat_hash_set.h" #include "absl/log/check.h" #include "absl/log/log.h" #include "absl/status/st...
#include "xla/service/gpu/triton_fusion_analysis.h" #include <memory> #include <string> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/statusor.h" #include "xla/hlo/ir/hlo_instruction.h" #include "xla/hlo/ir/hlo_opcode.h" #include "xla/service/gpu/transforms/gemm_fusion.h" #include "xla/stream_...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/triton_fusion_analysis.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/triton_fusion_analysis_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
ac2af6eb-d6da-4cea-91cc-9358932ac908
cpp
google/tensorstore
transformed_array
tensorstore/index_space/transformed_array.cc
tensorstore/index_space/transformed_array_test.cc
#include "tensorstore/index_space/transformed_array.h" #include <stddef.h> #include <algorithm> #include <array> #include <cassert> #include <string> #include <utility> #include "absl/status/status.h" #include "tensorstore/box.h" #include "tensorstore/data_type.h" #include "tensorstore/data_type_conversion.h" #include ...
#include "tensorstore/index_space/transformed_array.h" #include <stddef.h> #include <stdint.h> #include <random> #include <type_traits> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "tensorstore/array.h" #include "tensorstore/array_testut...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/index_space/transformed_array.cc
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/index_space/transformed_array_test.cc
4f887a6430414cd6088e1743555015b10f116d50
4538cf80-68bd-46c3-8ce6-1a1a490cd832
cpp
google/cel-cpp
flat_expr_builder
eval/compiler/flat_expr_builder.cc
eval/compiler/flat_expr_builder_test.cc
#include "eval/compiler/flat_expr_builder.h" #include <algorithm> #include <cstddef> #include <cstdint> #include <deque> #include <iterator> #include <memory> #include <stack> #include <string> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/base/attributes.h" #include "absl/ba...
#include "eval/compiler/flat_expr_builder.h" #include <functional> #include <memory> #include <string> #include <utility> #include <vector> #include "google/api/expr/v1alpha1/checked.pb.h" #include "google/api/expr/v1alpha1/syntax.pb.h" #include "google/protobuf/field_mask.pb.h" #include "google/protobuf/descriptor.pb....
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/compiler/flat_expr_builder.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/compiler/flat_expr_builder_test.cc
4552db5798fb0853b131b783d8875794334fae7f
241c7c0e-4f18-4489-be6e-d7b6a4d84b49
cpp
tensorflow/tensorflow
builtin_op_data
tensorflow/compiler/mlir/lite/core/c/builtin_op_data.h
tensorflow/lite/core/c/builtin_op_data_test.cc
#ifndef TENSORFLOW_COMPILER_MLIR_LITE_CORE_C_BUILTIN_OP_DATA_H_ #define TENSORFLOW_COMPILER_MLIR_LITE_CORE_C_BUILTIN_OP_DATA_H_ typedef enum { kTfLitePaddingUnknown = 0, kTfLitePaddingSame, kTfLitePaddingValid, } TfLitePadding; typedef enum { kTfLiteActNone = 0, kTfLiteActRelu, kTfLiteActReluN1To1, kTfL...
#include "tensorflow/lite/core/c/builtin_op_data.h" #include <gtest/gtest.h> namespace tflite { TEST(IntArray, CanCompileStructs) { TfLitePadding padding = kTfLitePaddingSame; TfLitePaddingValues padding_values; TfLiteFusedActivation fused_activation = kTfLiteActRelu; TfLiteConvParams conv_params; TfLitePoolP...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/lite/core/c/builtin_op_data.h
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/core/c/builtin_op_data_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
4756e541-df87-49ee-8f7e-723acdc0b81c
cpp
google/quiche
quiche_random
quiche/common/quiche_random.cc
quiche/common/quiche_random_test.cc
#include "quiche/common/quiche_random.h" #include <cstdint> #include <cstring> #include "openssl/rand.h" #include "quiche/common/platform/api/quiche_logging.h" namespace quiche { namespace { inline uint64_t Xoshiro256InitializeRngStateMember() { uint64_t result; RAND_bytes(reinterpret_cast<uint8_t*>(&result), sizeo...
#include "quiche/common/quiche_random.h" #include "quiche/common/platform/api/quiche_test.h" namespace quiche { namespace { TEST(QuicheRandom, RandBytes) { unsigned char buf1[16]; unsigned char buf2[16]; memset(buf1, 0xaf, sizeof(buf1)); memset(buf2, 0xaf, sizeof(buf2)); ASSERT_EQ(0, memcmp(buf1, buf2, sizeof...
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/common/quiche_random.cc
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/common/quiche_random_test.cc
6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6
d44286ee-dc18-4d49-81ae-9830d313d9ec
cpp
tensorflow/tensorflow
fusion_node_indexing_evaluation
third_party/xla/xla/service/fusion_node_indexing_evaluation.cc
third_party/xla/xla/service/fusion_node_indexing_evaluation_test.cc
#include "xla/service/fusion_node_indexing_evaluation.h" #include "absl/container/flat_hash_map.h" #include "absl/container/flat_hash_set.h" #include "xla/hlo/ir/hlo_computation.h" #include "xla/hlo/ir/hlo_instruction.h" #include "xla/service/elemental_ir_emitter.h" #include "xla/types.h" #include "tsl/platform/logging...
#include "xla/service/fusion_node_indexing_evaluation.h" #include "absl/container/flat_hash_map.h" #include "xla/hlo/ir/hlo_instruction.h" #include "xla/hlo/ir/hlo_opcode.h" #include "xla/service/hlo_parser.h" #include "xla/service/instruction_fusion.h" #include "xla/tests/hlo_test_base.h" #include "tsl/platform/test.h...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/fusion_node_indexing_evaluation.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/fusion_node_indexing_evaluation_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
03b2db7f-8707-47be-955c-5eccfd5e8710
cpp
tensorflow/tensorflow
bincount_op
tensorflow/compiler/tf2xla/kernels/bincount_op.cc
tensorflow/core/kernels/bincount_op_test.cc
#include <memory> #include <vector> #include "tensorflow/compiler/tf2xla/type_util.h" #include "tensorflow/compiler/tf2xla/xla_helpers.h" #include "tensorflow/compiler/tf2xla/xla_op_kernel.h" #include "tensorflow/compiler/tf2xla/xla_op_registry.h" #include "xla/hlo/builder/lib/arithmetic.h" #include "xla/hlo/builder/li...
#include "tensorflow/core/common_runtime/kernel_benchmark_testlib.h" #include "tensorflow/core/framework/fake_input.h" #include "tensorflow/core/framework/node_def_builder.h" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/graph/node_builder.h" #include "tensorflow/core/kernels/ops_testutil.h" #...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/tf2xla/kernels/bincount_op.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/bincount_op_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
8d39f7fb-274f-498c-acfb-4154cac83495
cpp
tensorflow/tensorflow
stream_pool
third_party/xla/xla/service/stream_pool.cc
third_party/xla/xla/service/stream_pool_test.cc
#include "xla/service/stream_pool.h" #include <memory> #include <utility> #include "absl/strings/str_format.h" namespace xla { StreamPool::Ptr StreamPool::BorrowStream(se::StreamPriority priority) { std::unique_ptr<se::Stream> stream; { absl::MutexLock lock(&mu_); if (streams_with_pri_.find(priority) == str...
#include "xla/service/stream_pool.h" #include <memory> #include "xla/stream_executor/platform_manager.h" #include "xla/stream_executor/stream_executor.h" #include "xla/test_helpers.h" namespace xla { namespace { class StreamPoolTest : public ::testing::Test { protected: se::StreamExecutor* NewStreamExecutor() { ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/stream_pool.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/stream_pool_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
d840c5d5-dfe8-4ccf-a118-82e261fecd8b
cpp
google/tensorstore
utf8_string
tensorstore/util/utf8_string.cc
tensorstore/util/utf8_string_test.cc
#include "tensorstore/util/utf8_string.h" #include "tensorstore/internal/riegeli/delimited.h" #include "tensorstore/internal/utf8.h" #include "tensorstore/serialization/serialization.h" #include "tensorstore/util/quote_string.h" #include "tensorstore/util/status.h" #include "tensorstore/util/str_cat.h" namespace tensor...
#include "tensorstore/util/utf8_string.h" #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorstore/serialization/serialization.h" #include "tensorstore/serialization/test_util.h" #include "tensorstore/util/status_testutil.h" namespace { using ::tensorstore::MatchesStatus; using ::tensorstore::Utf8String;...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/utf8_string.cc
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/utf8_string_test.cc
4f887a6430414cd6088e1743555015b10f116d50
8a284c9a-cb16-42f0-bc10-a7d4c1d598ae
cpp
tensorflow/tensorflow
str_util
third_party/xla/third_party/tsl/tsl/platform/str_util.cc
third_party/xla/third_party/tsl/tsl/platform/str_util_test.cc
#include "tsl/platform/str_util.h" #include <cctype> #include <cstdint> #include <string> #include "absl/strings/ascii.h" #include "tsl/platform/logging.h" #include "tsl/platform/stringpiece.h" namespace tsl { namespace str_util { size_t RemoveLeadingWhitespace(absl::string_view* text) { absl::string_view new_text = ...
#include "tsl/platform/str_util.h" #include <vector> #include "tsl/platform/test.h" namespace tsl { TEST(CEscape, Basic) { EXPECT_EQ(absl::CEscape("hello"), "hello"); EXPECT_EQ(absl::CEscape("hello\n"), "hello\\n"); EXPECT_EQ(absl::CEscape("hello\r"), "hello\\r"); EXPECT_EQ(absl::CEscape("\t\r\"'"), "\\t\\r\\\"...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/third_party/tsl/tsl/platform/str_util.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/third_party/tsl/tsl/platform/str_util_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
f22e62fc-1f6e-4485-be68-31adc5cae6ff
cpp
tensorflow/tensorflow
time
tensorflow/lite/profiling/time.cc
tensorflow/lite/profiling/time_test.cc
#include "tensorflow/lite/profiling/time.h" #if defined(_MSC_VER) #include <chrono> #include <thread> #else #include <sys/time.h> #include <time.h> #endif namespace tflite { namespace profiling { namespace time { #if defined(_MSC_VER) uint64_t NowMicros() { return static_cast<uint64_t>( std::chrono::duratio...
#include "tensorflow/lite/profiling/time.h" #include <gtest/gtest.h> namespace tflite { namespace profiling { namespace time { TEST(TimeTest, NowMicros) { auto now0 = NowMicros(); EXPECT_GT(now0, 0); auto now1 = NowMicros(); EXPECT_GE(now1, now0); } TEST(TimeTest, SleepForMicros) { SleepForMicros(0); auto n...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/profiling/time.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/profiling/time_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
fe75d615-573a-4be2-9609-b996505d1261
cpp
google/tensorstore
memory_key_value_store
tensorstore/kvstore/memory/memory_key_value_store.cc
tensorstore/kvstore/memory/memory_key_value_store_test.cc
#include "tensorstore/kvstore/memory/memory_key_value_store.h" #include <stddef.h> #include <stdint.h> #include <algorithm> #include <atomic> #include <cassert> #include <optional> #include <string> #include <string_view> #include <utility> #include <vector> #include "absl/base/thread_annotations.h" #include "absl/cont...
#include "tensorstore/kvstore/memory/memory_key_value_store.h" #include <string> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "absl/strings/cord.h" #include <nlohmann/json.hpp> #include "tensorstore/context.h" #include "tensorstore/internal/cache_key/cache_key.h" #include "...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/kvstore/memory/memory_key_value_store.cc
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/kvstore/memory/memory_key_value_store_test.cc
4f887a6430414cd6088e1743555015b10f116d50
0d24ce96-9a8f-48fc-a5df-5aaec4cdd83a
cpp
google/cel-cpp
source
common/source.cc
common/source_test.cc
#include "common/source.h" #include <algorithm> #include <cstddef> #include <cstdint> #include <limits> #include <memory> #include <string> #include <tuple> #include <utility> #include <vector> #include "absl/base/nullability.h" #include "absl/base/optimization.h" #include "absl/container/inlined_vector.h" #include "ab...
#include "common/source.h" #include "absl/strings/cord.h" #include "absl/types/optional.h" #include "internal/testing.h" namespace cel { namespace { using ::testing::ElementsAre; using ::testing::Eq; using ::testing::Ne; using ::testing::Optional; TEST(SourceRange, Default) { SourceRange range; EXPECT_EQ(range.begi...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/source.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/source_test.cc
4552db5798fb0853b131b783d8875794334fae7f
a035bbb0-9445-464c-9174-e02ca7f9ceaa
cpp
tensorflow/tensorflow
quantize_weights
tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_weights.cc
tensorflow/compiler/mlir/lite/quantization/lite/toco_legacy/quantize_weights_test.cc
#include <memory> #include <optional> #include <utility> #include "llvm/Support/Casting.h" #include "mlir/Dialect/Func/IR/FuncOps.h" #include "mlir/Dialect/Quant/IR/Quant.h" #include "mlir/Dialect/Quant/IR/QuantTypes.h" #include "mlir/IR/BuiltinAttributes.h" #include "mlir/IR/BuiltinOps.h" #include "mlir/IR/B...
#include "tensorflow/compiler/mlir/lite/quantization/lite/toco_legacy/quantize_weights.h" #include <cstddef> #include <cstdint> #include <cstdlib> #include <iostream> #include <memory> #include <string> #include <vector> #include <gtest/gtest.h> #include "flatbuffers/flatbuffer_builder.h" #include "flatbuffers/vector...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_weights.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/lite/quantization/lite/toco_legacy/quantize_weights_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
2ca9acea-9d42-468d-b041-88b5b74e6f47
cpp
tensorflow/tensorflow
semaphore
third_party/xla/xla/pjrt/semaphore.cc
third_party/xla/xla/pjrt/semaphore_test.cc
#include "xla/pjrt/semaphore.h" #include <cstdint> #include "absl/synchronization/mutex.h" #include "tsl/platform/logging.h" namespace xla { Semaphore::Semaphore(int64_t capacity) : value_(capacity), max_capacity_(capacity) { CHECK_GE(capacity, 0); } bool Semaphore::CanAcquire(CanAcquireArgs* args) { return arg...
#include "xla/pjrt/semaphore.h" #include <gtest/gtest.h> #include "absl/synchronization/notification.h" #include "xla/test.h" #include "tsl/platform/env.h" #include "tsl/platform/threadpool.h" namespace xla { namespace { TEST(SemaphoreTest, UnthreadedTests) { Semaphore semaphore(2); EXPECT_EQ(semaphore.capacity(), ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/semaphore.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/semaphore_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
8e5fed20-1d82-45b2-a25a-4ceb840b9908
cpp
abseil/abseil-cpp
node_hash_map
absl/container/node_hash_map.h
absl/container/node_hash_map_test.cc
#ifndef ABSL_CONTAINER_NODE_HASH_MAP_H_ #define ABSL_CONTAINER_NODE_HASH_MAP_H_ #include <cstddef> #include <memory> #include <type_traits> #include <utility> #include "absl/algorithm/container.h" #include "absl/base/attributes.h" #include "absl/container/hash_container_defaults.h" #include "absl/container/internal/con...
#include "absl/container/node_hash_map.h" #include <cstddef> #include <new> #include <string> #include <tuple> #include <type_traits> #include <utility> #include <vector> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/base/config.h" #include "absl/container/internal/hash_policy_testing.h" #include "ab...
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/container/node_hash_map.h
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/container/node_hash_map_test.cc
03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4
fa345464-a4cd-4aaa-9072-1bca6967a7b8
cpp
tensorflow/tensorflow
gradients
tensorflow/c/eager/gradients.cc
tensorflow/c/eager/gradients_test.cc
#include "tensorflow/c/eager/gradients.h" #include "absl/strings/str_cat.h" #include "tensorflow/c/eager/abstract_tensor_handle.h" #include "tensorflow/c/eager/c_api_unified_experimental_internal.h" #include "tensorflow/c/eager/gradients_internal.h" #include "tensorflow/core/common_runtime/eager/attr_builder.h" #includ...
#include "tensorflow/c/eager/gradients.h" #include <memory> #include "absl/container/flat_hash_set.h" #include "absl/types/span.h" #include "tensorflow/c/eager/abstract_context.h" #include "tensorflow/c/eager/abstract_tensor_handle.h" #include "tensorflow/c/eager/c_api_experimental.h" #include "tensorflow/c/eager/c_api...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/c/eager/gradients.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/c/eager/gradients_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
22542dd5-4db0-4aa6-a96e-2d2b524faeed
cpp
tensorflow/tensorflow
graph_def
tensorflow/compiler/mlir/quantization/stablehlo/cc/graph_def.h
tensorflow/compiler/mlir/quantization/stablehlo/cc/graph_def_test.cc
#ifndef TENSORFLOW_COMPILER_MLIR_QUANTIZATION_STABLEHLO_CC_GRAPH_DEF_H_ #define TENSORFLOW_COMPILER_MLIR_QUANTIZATION_STABLEHLO_CC_GRAPH_DEF_H_ #include <type_traits> #include "tensorflow/core/framework/function.pb.h" #include "tensorflow/core/framework/graph.pb.h" #include "tensorflow/core/framework/node_def.pb.h" nam...
#include "tensorflow/compiler/mlir/quantization/stablehlo/cc/graph_def.h" #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorflow/core/framework/graph.pb.h" #include "tensorflow/core/framework/node_def.pb.h" #include "tsl/platform/protobuf.h" namespace stablehlo::quantization { namespace { using ::tens...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/quantization/stablehlo/cc/graph_def.h
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/quantization/stablehlo/cc/graph_def_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
f912456d-8bbf-4712-ae1d-caa5d3675f31
cpp
tensorflow/tensorflow
spmd_partitioner_util
third_party/xla/xla/service/spmd/spmd_partitioner_util.cc
third_party/xla/xla/service/spmd/spmd_partitioner_util_test.cc
#include "xla/service/spmd/spmd_partitioner_util.h" #include <algorithm> #include <cstdint> #include <limits> #include <map> #include <memory> #include <numeric> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/container/flat_hash_map.h" #in...
#include "xla/service/spmd/spmd_partitioner_util.h" #include <cstdint> #include <optional> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "xla/hlo/ir/collective_device_list.h" #include "xla/hlo/ir/hlo_sharding.h" #include "xla/hlo/ir/tile_assignment.h" namespace xla { namespace spmd { name...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/spmd/spmd_partitioner_util.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/spmd/spmd_partitioner_util_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
02e32eea-6457-4f34-9a05-e15a3b90742b
cpp
tensorflow/tensorflow
func
tensorflow/compiler/mlir/quantization/common/func.cc
tensorflow/compiler/mlir/quantization/common/func_test.cc
#include "tensorflow/compiler/mlir/quantization/common/func.h" #include "mlir/Dialect/Func/IR/FuncOps.h" #include "mlir/IR/BuiltinOps.h" #include "mlir/IR/SymbolTable.h" #include "mlir/Support/LLVM.h" #include "tensorflow/cc/saved_model/signature_constants.h" #include "tensorflow/compiler/mlir/tensorflow/transl...
#include "tensorflow/compiler/mlir/quantization/common/func.h" #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/strings/string_view.h" #include "mlir/Dialect/Func/IR/FuncOps.h" #include "mlir/IR/BuiltinOps.h" #include "mlir/IR/OwningOpRef.h" #include "tensorflow/compiler/mlir/quantization/common/t...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/quantization/common/func.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/quantization/common/func_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
ca383435-df24-445b-95ff-5b14437f8c41
cpp
abseil/abseil-cpp
overload
absl/functional/overload.h
absl/functional/overload_test.cc
#ifndef ABSL_FUNCTIONAL_OVERLOAD_H_ #define ABSL_FUNCTIONAL_OVERLOAD_H_ #include "absl/base/config.h" #include "absl/meta/type_traits.h" namespace absl { ABSL_NAMESPACE_BEGIN #if defined(ABSL_INTERNAL_CPLUSPLUS_LANG) && \ ABSL_INTERNAL_CPLUSPLUS_LANG >= 201703L template <typename... T> struct Overload final : T... ...
#include "absl/functional/overload.h" #include <cstdint> #include <string> #include <type_traits> #include "absl/base/config.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #include "absl/types/variant.h" #if defined(ABSL_INTERNAL_CPLUSPLUS_LANG) && \ ABSL_INTERNAL_CPLUSPLUS_LANG >= 20170...
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/functional/overload.h
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/functional/overload_test.cc
03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4
7e1f6c5e-90d3-42ee-80fe-610b0813dc09
cpp
abseil/abseil-cpp
mocking_bit_gen
absl/random/mocking_bit_gen.h
absl/random/mocking_bit_gen_test.cc
#ifndef ABSL_RANDOM_MOCKING_BIT_GEN_H_ #define ABSL_RANDOM_MOCKING_BIT_GEN_H_ #include <memory> #include <tuple> #include <type_traits> #include <utility> #include "gmock/gmock.h" #include "absl/base/attributes.h" #include "absl/base/config.h" #include "absl/base/internal/fast_type_id.h" #include "absl/container/flat_h...
#include "absl/random/mocking_bit_gen.h" #include <cmath> #include <cstddef> #include <cstdint> #include <iterator> #include <numeric> #include <vector> #include "gmock/gmock.h" #include "gtest/gtest-spi.h" #include "gtest/gtest.h" #include "absl/random/bit_gen_ref.h" #include "absl/random/mock_distributions.h" #includ...
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/random/mocking_bit_gen.h
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/random/mocking_bit_gen_test.cc
03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4
213a7c82-6f11-4429-9428-dd1bc9636c7c
cpp
google/quiche
certificate_view
quiche/quic/core/crypto/certificate_view.cc
quiche/quic/core/crypto/certificate_view_test.cc
#include "quiche/quic/core/crypto/certificate_view.h" #include <algorithm> #include <cstdint> #include <istream> #include <memory> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/strings/escaping.h" #include "absl/strings/match.h" #include "absl/strings/str_cat.h" #include "abs...
#include "quiche/quic/core/crypto/certificate_view.h" #include <limits> #include <memory> #include <sstream> #include <string> #include <vector> #include "absl/algorithm/container.h" #include "absl/strings/escaping.h" #include "absl/strings/string_view.h" #include "openssl/base.h" #include "openssl/bytestring.h" #inclu...
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/core/crypto/certificate_view.cc
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/core/crypto/certificate_view_test.cc
6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6
862e5cf8-a705-43d3-a4f0-b68033bd09fe
cpp
tensorflow/tensorflow
tensor_matcher
tensorflow/core/framework/tensor_matcher.cc
tensorflow/lite/experimental/shlo/tensor_matcher_test.cc
#include "tensorflow/core/framework/tensor_matcher.h" #include <stdint.h> #include <complex> #include <ostream> #include <string> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/log/log.h" #include "absl/types/span.h" #include "Eigen/Core" #include "tensorflow/core/framework/numeric_types.h" #include...
#include "tensorflow/lite/experimental/shlo/tensor_matcher.h" #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorflow/lite/experimental/shlo/data_type.h" #include "tensorflow/lite/experimental/shlo/shape.h" #include "tensorflow/lite/experimental/shlo/tensor_with_data.h" namespace shlo_ref { namespace { u...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/framework/tensor_matcher.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/experimental/shlo/tensor_matcher_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
397218b9-d790-4fc3-b0cd-29f95b4e35f6
cpp
tensorflow/tensorflow
custom_graph_optimizer_registry
tensorflow/core/grappler/optimizers/custom_graph_optimizer_registry.cc
tensorflow/core/grappler/optimizers/custom_graph_optimizer_registry_test.cc
#include "tensorflow/core/grappler/optimizers/custom_graph_optimizer_registry.h" #include <string> #include <unordered_map> #include "absl/base/call_once.h" #include "tensorflow/core/platform/logging.h" namespace tensorflow { namespace grappler { namespace { typedef std::unordered_map<string, CustomGraphOptimizerRegist...
#include "tensorflow/core/grappler/optimizers/custom_graph_optimizer_registry.h" #include <algorithm> #include <memory> #include <string> #include <vector> #include "tensorflow/core/grappler/optimizers/custom_graph_optimizer.h" #include "tensorflow/core/lib/core/status.h" #include "tensorflow/core/platform/test.h" name...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/grappler/optimizers/custom_graph_optimizer_registry.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/grappler/optimizers/custom_graph_optimizer_registry_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
64f4977d-b4ee-450d-b8ec-812ee549e6e9
cpp
tensorflow/tensorflow
resolve_constant_concatenation
tensorflow/lite/toco/graph_transformations/resolve_constant_concatenation.cc
tensorflow/lite/toco/graph_transformations/tests/resolve_constant_concatenation_test.cc
#include <algorithm> #include <memory> #include <string> #include <unordered_map> #include <vector> #include "absl/status/status.h" #include "absl/strings/str_join.h" #include "tensorflow/core/platform/logging.h" #include "tensorflow/core/platform/status.h" #include "tensorflow/lite/toco/graph_transformations/graph_tra...
#include <algorithm> #include <string> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorflow/lite/toco/graph_transformations/graph_transformations.h" #include "tensorflow/lite/toco/model.h" namespace toco { namespace { std::vector<testing::Matcher<float>> ArrayFloatNear( const std...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/toco/graph_transformations/resolve_constant_concatenation.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/toco/graph_transformations/tests/resolve_constant_concatenation_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
668bf81b-a8db-4ed7-ae62-1dee10fb1e5c
cpp
google/quiche
tun_device_packet_exchanger
quiche/quic/qbone/bonnet/tun_device_packet_exchanger.cc
quiche/quic/qbone/bonnet/tun_device_packet_exchanger_test.cc
#include "quiche/quic/qbone/bonnet/tun_device_packet_exchanger.h" #include <netinet/icmp6.h> #include <netinet/ip6.h> #include <memory> #include <string> #include <utility> #include "absl/strings/str_cat.h" #include "quiche/quic/qbone/platform/icmp_packet.h" #include "quiche/quic/qbone/platform/netlink_interface.h" #in...
#include "quiche/quic/qbone/bonnet/tun_device_packet_exchanger.h" #include <string> #include "absl/status/status.h" #include "absl/strings/string_view.h" #include "quiche/quic/platform/api/quic_test.h" #include "quiche/quic/qbone/bonnet/mock_packet_exchanger_stats_interface.h" #include "quiche/quic/qbone/mock_qbone_cli...
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/qbone/bonnet/tun_device_packet_exchanger.cc
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/qbone/bonnet/tun_device_packet_exchanger_test.cc
6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6
934c29ae-afea-4099-b759-9b5f96655cef
cpp
tensorflow/tensorflow
stat_summarizer
tensorflow/core/util/stat_summarizer.cc
tensorflow/core/util/stat_summarizer_test.cc
#include "tensorflow/core/util/stat_summarizer.h" #include <iomanip> #include <map> #include <queue> #include <sstream> #include <string> #include <utility> #include <vector> #include "absl/strings/match.h" #include "tensorflow/core/framework/step_stats.pb.h" #include "tensorflow/core/framework/tensor_description.pb.h"...
#include "tensorflow/core/util/stat_summarizer.h" #include <memory> #include <string> #include <vector> #include "absl/strings/match.h" #include "tensorflow/core/framework/graph.pb.h" #include "tensorflow/core/framework/step_stats.pb.h" #include "tensorflow/core/lib/core/status.h" #include "tensorflow/core/lib/core/sta...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/util/stat_summarizer.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/util/stat_summarizer_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
03fd3fca-6046-4159-b19f-540a358fdd4f
cpp
abseil/abseil-cpp
stacktrace
absl/debugging/stacktrace.cc
absl/debugging/stacktrace_test.cc
#include "absl/debugging/stacktrace.h" #include <atomic> #include "absl/base/attributes.h" #include "absl/base/port.h" #include "absl/debugging/internal/stacktrace_config.h" #if defined(ABSL_STACKTRACE_INL_HEADER) #include ABSL_STACKTRACE_INL_HEADER #else # error Cannot calculate stack trace: will need to write for you...
#include "absl/debugging/stacktrace.h" #include "gtest/gtest.h" #include "absl/base/macros.h" #include "absl/base/optimization.h" namespace { #if defined(__linux__) && (defined(__x86_64__) || defined(__aarch64__)) ABSL_ATTRIBUTE_NOINLINE void Unwind(void* p) { ABSL_ATTRIBUTE_UNUSED static void* volatile sink = p; c...
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/debugging/stacktrace.cc
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/debugging/stacktrace_test.cc
03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4
ed9a3fba-817e-4f60-bc20-9c5d849e2c26
cpp
tensorflow/tensorflow
ifrt_serving_executable
tensorflow/core/tfrt/ifrt/ifrt_serving_executable.cc
tensorflow/core/tfrt/ifrt/ifrt_serving_executable_test.cc
#include "tensorflow/core/tfrt/ifrt/ifrt_serving_executable.h" #include <cstdint> #include <functional> #include <memory> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/container/flat_hash_set.h" #include "absl/log/check.h" #include "a...
#include "tensorflow/core/tfrt/ifrt/ifrt_serving_executable.h" #include <cstdint> #include <memory> #include <string> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/string...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/tfrt/ifrt/ifrt_serving_executable.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/tfrt/ifrt/ifrt_serving_executable_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
b22a5836-c249-40c3-848e-f8cb6f761433
cpp
tensorflow/tensorflow
random
tensorflow/compiler/tf2xla/lib/random.cc
third_party/xla/third_party/tsl/tsl/platform/random_test.cc
#include "tensorflow/compiler/tf2xla/lib/random.h" #include <cmath> #include <limits> #include "xla/client/lib/constants.h" #include "xla/client/lib/math.h" #include "xla/client/xla_builder.h" #include "xla/xla_data.pb.h" namespace tensorflow { xla::XlaOp TruncatedNormal(xla::XlaOp uniform) { const double kA = -2.0; ...
#include "tsl/platform/random.h" #include <set> #include "tsl/platform/test.h" #include "tsl/platform/types.h" namespace tsl { namespace random { namespace { TEST(New64Test, SanityCheck) { std::set<uint64> values; for (int i = 0; i < 1000000; i++) { uint64 x = New64(); EXPECT_TRUE(values.insert(x).second) <...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/tf2xla/lib/random.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/third_party/tsl/tsl/platform/random_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
cbb3b921-f947-46ca-b80d-a3cd1c02ea80
cpp
tensorflow/tensorflow
dynamic_slice_fusion_rewriter
third_party/xla/xla/service/gpu/transforms/dynamic_slice_fusion_rewriter.cc
third_party/xla/xla/service/gpu/transforms/dynamic_slice_fusion_rewriter_test.cc
#include "xla/service/gpu/transforms/dynamic_slice_fusion_rewriter.h" #include <cstddef> #include <cstdint> #include <functional> #include <iterator> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/container/flat_hash_map.h" #include "absl/...
#include "xla/service/gpu/transforms/dynamic_slice_fusion_rewriter.h" #include <cstddef> #include <optional> #include "absl/status/status.h" #include "xla/client/lib/constants.h" #include "xla/client/xla_builder.h" #include "xla/ffi/ffi.h" #include "xla/ffi/ffi_api.h" #include "xla/hlo/ir/hlo_module.h" #include "xla/hl...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/transforms/dynamic_slice_fusion_rewriter.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/transforms/dynamic_slice_fusion_rewriter_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
aa2137ae-9b6f-4c3e-b411-fc2113fca95c
cpp
tensorflow/tensorflow
save_dataset_op
tensorflow/core/kernels/data/experimental/save_dataset_op.cc
tensorflow/core/kernels/data/experimental/save_dataset_op_test.cc
#include "tensorflow/core/kernels/data/experimental/save_dataset_op.h" #include <algorithm> #include <memory> #include <string> #include <utility> #include <vector> #include "tensorflow/core/data/captured_function.h" #include "tensorflow/core/data/dataset_utils.h" #include "tensorflow/core/data/hash_utils.h" #include "...
#include "tensorflow/core/kernels/data/experimental/save_dataset_op.h" #include <memory> #include <string> #include <utility> #include <vector> #include "tensorflow/core/data/dataset_test_base.h" #include "tensorflow/core/data/serialization_utils.h" #include "tensorflow/core/framework/function_testlib.h" #include "tens...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/data/experimental/save_dataset_op.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/data/experimental/save_dataset_op_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
fad28bcd-2f8e-4dd8-b982-85cf806a6dab
cpp
google/libaddressinput
address_input_helper
cpp/src/address_input_helper.cc
cpp/test/address_input_helper_test.cc
#include <libaddressinput/address_input_helper.h> #include <libaddressinput/address_data.h> #include <libaddressinput/address_field.h> #include <libaddressinput/address_metadata.h> #include <libaddressinput/preload_supplier.h> #include <cassert> #include <cstddef> #include <string> #include <vector> #include <re2/re2.h...
#include <libaddressinput/address_input_helper.h> #include <libaddressinput/address_data.h> #include <libaddressinput/callback.h> #include <libaddressinput/null_storage.h> #include <libaddressinput/preload_supplier.h> #include <memory> #include <string> #include <gtest/gtest.h> #include "mock_source.h" #include "testda...
https://github.com/google/libaddressinput/blob/2610f7b1043d6784ada41392fc9392d1ea09ea07/cpp/src/address_input_helper.cc
https://github.com/google/libaddressinput/blob/2610f7b1043d6784ada41392fc9392d1ea09ea07/cpp/test/address_input_helper_test.cc
2610f7b1043d6784ada41392fc9392d1ea09ea07
2a963f4b-b152-42b3-a38d-8c8eef877309
cpp
google/arolla
protopath_id
arolla/naming/protopath_id.cc
arolla/naming/protopath_id_test.cc
#include "arolla/naming/protopath_id.h" #include <cstddef> #include <string> #include <utility> #include <vector> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/strings/str_format.h" #include "absl/strings/str_join.h" #include "absl/strings/string_view...
#include "arolla/naming/protopath_id.h" #include <vector> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "arolla/naming/table.h" #include "arolla/util/status_macros_backport.h" namespace arolla::naming { namespace { TEST(Formatter, Format) { TablePath root; EXPECT_EQ(TablePathToProtopathId(root), "");...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/naming/protopath_id.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/naming/protopath_id_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
ae4651cb-fc9e-4e95-b1e1-69875c74e05a
cpp
google/tensorstore
client_credentials
tensorstore/internal/grpc/client_credentials.cc
tensorstore/internal/grpc/client_credentials_test.cc
#include "tensorstore/internal/grpc/client_credentials.h" #include <memory> #include <utility> #include "absl/base/attributes.h" #include "absl/base/const_init.h" #include "absl/synchronization/mutex.h" #include "grpcpp/security/credentials.h" #include "tensorstore/context.h" #include "tensorstore/context_resource_pr...
#include "tensorstore/internal/grpc/client_credentials.h" #include <memory> #include <gtest/gtest.h> #include "grpcpp/security/credentials.h" #include "tensorstore/context.h" #include "tensorstore/util/result.h" namespace { using ::tensorstore::GrpcClientCredentials; TEST(GrpcClientCredentials, Use) { auto use = gr...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/grpc/client_credentials.cc
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/grpc/client_credentials_test.cc
4f887a6430414cd6088e1743555015b10f116d50
0c69dc71-9b09-41e8-9d9b-4d75be731448
cpp
tensorflow/tensorflow
sparse_tensor
tensorflow/core/util/sparse/sparse_tensor.cc
tensorflow/core/util/sparse/sparse_tensor_test.cc
#include "tensorflow/core/util/sparse/sparse_tensor.h" #include "tensorflow/core/lib/strings/strcat.h" namespace tensorflow { namespace sparse { namespace { int UnsafeGetDimsFromIx(const Tensor& ix) { DCHECK(TensorShapeUtils::IsMatrix(ix.shape())); return ix.dim_size(1); } Status GetDimsFromIx(const Tensor& ix, int...
#include "tensorflow/core/util/sparse/sparse_tensor.h" #include <string> #include <vector> #include "unsupported/Eigen/CXX11/Tensor" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/framework/tensor_types.h" #include "tensorflow/core/lib/core/status_test_util.h" #include "tensorflow/core/lib/ra...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/util/sparse/sparse_tensor.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/util/sparse/sparse_tensor_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
98f4b3b6-d6bd-46a5-be18-068ea7853607
cpp
tensorflow/tensorflow
function_api_info
tensorflow/core/grappler/optimizers/function_api_info.cc
tensorflow/core/grappler/optimizers/function_api_info_test.cc
#include "tensorflow/core/grappler/optimizers/function_api_info.h" #include <string> #include "tensorflow/core/framework/attr_value.pb.h" #include "tensorflow/core/framework/op_def.pb.h" #include "tensorflow/core/lib/core/errors.h" #include "tensorflow/core/lib/core/status.h" namespace tensorflow { namespace grappler {...
#include "tensorflow/core/grappler/optimizers/function_api_info.h" #include <string> #include <unordered_set> #include <vector> #include "tensorflow/core/framework/attr_value.pb.h" #include "tensorflow/core/framework/function.pb.h" #include "tensorflow/core/framework/op_def.pb.h" #include "tensorflow/core/lib/core/stat...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/grappler/optimizers/function_api_info.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/grappler/optimizers/function_api_info_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
49a0b7e1-3c93-45c7-a6f6-1ca098732f77
cpp
tensorflow/tensorflow
nnapi_handler
tensorflow/lite/nnapi/nnapi_handler.cc
tensorflow/lite/nnapi/nnapi_handler_test.cc
#include "tensorflow/lite/nnapi/nnapi_handler.h" #include <cstdio> #include <string> #include "tensorflow/lite/nnapi/nnapi_implementation.h" namespace tflite { namespace nnapi { const char NnApiHandler::kNnapiReferenceDeviceName[] = "nnapi-reference"; const int NnApiHandler::kNnapiReferenceDevice = 1; const int NnApiHa...
#include "tensorflow/lite/nnapi/nnapi_handler.h" #include <cstdint> #include <cstdio> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorflow/lite/nnapi/nnapi_implementation.h" namespace tflite { namespace nnapi { using testing::Eq; using testing::Ne; using testing::NotNull; void ExpectEquals(const NnApi...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/nnapi/nnapi_handler.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/nnapi/nnapi_handler_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
915c18f8-e578-43d6-8287-09d0e320b63d
cpp
tensorflow/tensorflow
transpose_utils
tensorflow/lite/kernels/internal/transpose_utils.cc
tensorflow/lite/kernels/internal/transpose_utils_test.cc
#include "tensorflow/lite/kernels/internal/transpose_utils.h" namespace tflite { namespace transpose_utils { bool IsTranspose2DApplicable(const TransposeParams& params, const RuntimeShape& input_shape, int* dim0, int* dim1) { const int dims_cnt = input_shape.D...
#include "tensorflow/lite/kernels/internal/transpose_utils.h" #include <gmock/gmock.h> #include <gtest/gtest.h> namespace tflite { namespace { TEST(TransposeUtilsTest, RemoveOneSizeDimensions_1DNoChanges) { RuntimeShape input_shape({9}); RuntimeShape output_shape({9}); TransposeParams params; params.perm_count ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/kernels/internal/transpose_utils.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/kernels/internal/transpose_utils_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
3bc61d67-4a76-418b-a671-c9c315c7a6bd
cpp
tensorflow/tensorflow
change_op_data_type
third_party/xla/xla/service/change_op_data_type.cc
third_party/xla/xla/service/change_op_data_type_test.cc
#include "xla/service/change_op_data_type.h" #include <optional> #include "xla/service/hlo_creation_utils.h" #if defined(INTEL_MKL) && defined(ENABLE_ONEDNN_V3) #include "xla/service/cpu/onednn_contraction_rewriter.h" #endif namespace xla { namespace { std::optional<PrimitiveType> GetUniformOperandType( const Hlo...
#include "xla/service/change_op_data_type.h" #include <string> #include <tuple> #include <vector> #include "absl/types/span.h" #include "xla/service/pattern_matcher.h" #include "xla/service/pattern_matcher_gmock.h" #include "xla/tests/hlo_test_base.h" namespace xla { namespace { namespace m = ::xla::match; class Change...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/change_op_data_type.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/change_op_data_type_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
f7da06ba-53b8-4515-bc96-3129eeae5a96
cpp
google/cel-cpp
bytes_value
common/values/bytes_value.cc
common/values/bytes_value_test.cc
#include <cstddef> #include <string> #include <utility> #include "absl/functional/overload.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/cord.h" #include "absl/strings/string_view.h" #include "common/any.h" #include "common/casting.h" #include "common/json.h" #include "comm...
#include <sstream> #include <string> #include "absl/strings/cord.h" #include "absl/strings/cord_test_helpers.h" #include "absl/types/optional.h" #include "common/any.h" #include "common/casting.h" #include "common/json.h" #include "common/native_type.h" #include "common/value.h" #include "common/value_testing.h" #inclu...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/values/bytes_value.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/values/bytes_value_test.cc
4552db5798fb0853b131b783d8875794334fae7f
f8652a50-48a4-49b0-8ae4-073028700611
cpp
tensorflow/tensorflow
gpu_fusion
tensorflow/compiler/mlir/tensorflow/transforms/gpu_fusion.cc
third_party/xla/xla/service/gpu/tests/gpu_fusion_test.cc
#include "llvm/ADT/STLExtras.h" #include "mlir/Dialect/Func/IR/FuncOps.h" #include "mlir/IR/Attributes.h" #include "mlir/IR/Builders.h" #include "mlir/IR/BuiltinOps.h" #include "mlir/IR/PatternMatch.h" #include "mlir/Pass/Pass.h" #include "mlir/Pass/PassManager.h" #include "mlir/Pass/PassRegistry.h" #in...
#include <cstdint> #include <optional> #include <vector> #include <gtest/gtest.h> #include "absl/strings/string_view.h" #include "xla/hlo/ir/hlo_computation.h" #include "xla/hlo/ir/hlo_instruction.h" #include "xla/hlo/ir/hlo_opcode.h" #include "xla/service/gpu/gpu_device_info_for_tests.h" #include "xla/service/gpu/gpu_...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/tensorflow/transforms/gpu_fusion.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/tests/gpu_fusion_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
9ea45c4e-ae1e-40a8-ad15-5bdd8477954e
cpp
tensorflow/tensorflow
popcnt
tensorflow/lite/experimental/shlo/ops/popcnt.cc
tensorflow/lite/experimental/shlo/ops/popcnt_test.cc
#include "tensorflow/lite/experimental/shlo/ops/popcnt.h" #include <cstdint> #include <type_traits> #include "absl/numeric/bits.h" #include "absl/status/status.h" #include "tensorflow/lite/experimental/shlo/dispatch.h" #include "tensorflow/lite/experimental/shlo/i4.h" #include "tensorflow/lite/experimental/shlo/ops/una...
#include "tensorflow/lite/experimental/shlo/ops/popcnt.h" #include <cstdint> #include <limits> #include <string> #include <type_traits> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/numeric/bits.h" #include "tensorflow/lite/experimental/shlo/data_type.h" #include "tensorflow/lite/experimental/shlo/i4...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/experimental/shlo/ops/popcnt.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/experimental/shlo/ops/popcnt_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
c74a6817-3eb7-4344-996d-e523ce4fc6bf
cpp
google/libphonenumber
shortnumberinfo
cpp/src/phonenumbers/shortnumberinfo.cc
cpp/test/phonenumbers/shortnumberinfo_test.cc
#include "phonenumbers/shortnumberinfo.h" #include <algorithm> #include <string.h> #include <iterator> #include <map> #include "phonenumbers/default_logger.h" #include "phonenumbers/matcher_api.h" #include "phonenumbers/phonemetadata.pb.h" #include "phonenumbers/phonenumberutil.h" #include "phonenumbers/regex_based_mat...
#include "phonenumbers/shortnumberinfo.h" #include <gtest/gtest.h> #include "phonenumbers/base/logging.h" #include "phonenumbers/default_logger.h" #include "phonenumbers/phonenumberutil.h" #include "phonenumbers/stringutil.h" #include "phonenumbers/test_util.h" namespace i18n { namespace phonenumbers { class ShortNumbe...
https://github.com/google/libphonenumber/blob/9aa9aaa39ad8098aef56071d2df4f6f8d251c98b/cpp/src/phonenumbers/shortnumberinfo.cc
https://github.com/google/libphonenumber/blob/9aa9aaa39ad8098aef56071d2df4f6f8d251c98b/cpp/test/phonenumbers/shortnumberinfo_test.cc
9aa9aaa39ad8098aef56071d2df4f6f8d251c98b
4851473d-8a48-4b60-bc60-b61715739037
cpp
tensorflow/tensorflow
stablehlo_pad
tensorflow/lite/kernels/stablehlo_pad.cc
tensorflow/lite/kernels/stablehlo_pad_test.cc
#include <algorithm> #include <cassert> #include <cstddef> #include <cstdint> #include <cstring> #include <functional> #include <numeric> #include "tensorflow/lite/c/c_api_types.h" #include "tensorflow/lite/core/c/builtin_op_data.h" #include "tensorflow/lite/core/c/common.h" #include "tensorflow/lite/kernels/kernel_uti...
#include <cstddef> #include <cstdint> #include <functional> #include <ostream> #include <string> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/algorithm/container.h" #include "absl/random/bit_gen_ref.h" #include "absl/random/random.h" #include "absl/status/status....
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/kernels/stablehlo_pad.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/kernels/stablehlo_pad_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
45a0f00c-97a3-4a6b-a58a-8ad1ecc2fa36
cpp
google/cel-cpp
navigable_ast
tools/navigable_ast.cc
tools/navigable_ast_test.cc
#include "tools/navigable_ast.h" #include <cstddef> #include <memory> #include <string> #include <utility> #include <vector> #include "google/api/expr/v1alpha1/checked.pb.h" #include "absl/container/flat_hash_map.h" #include "absl/log/absl_check.h" #include "absl/memory/memory.h" #include "absl/strings/str_cat.h" #incl...
#include "tools/navigable_ast.h" #include <utility> #include <vector> #include "google/api/expr/v1alpha1/syntax.pb.h" #include "absl/base/casts.h" #include "absl/strings/str_cat.h" #include "base/builtins.h" #include "internal/testing.h" #include "parser/parser.h" namespace cel { namespace { using ::google::api::expr::...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/tools/navigable_ast.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/tools/navigable_ast_test.cc
4552db5798fb0853b131b783d8875794334fae7f
b97172ce-bd0b-4d5c-b376-b2377221647b
cpp
tensorflow/tensorflow
statusor
tensorflow/core/platform/statusor.h
third_party/xla/third_party/tsl/tsl/platform/statusor_test.cc
#ifndef TENSORFLOW_CORE_PLATFORM_STATUSOR_H_ #define TENSORFLOW_CORE_PLATFORM_STATUSOR_H_ #include "tensorflow/core/platform/macros.h" #include "tensorflow/core/platform/status.h" #include "tsl/platform/statusor.h" namespace tensorflow { using tsl::StatusOr; } #endif
#include "tsl/platform/statusor.h" #include <memory> #include <type_traits> #include <utility> #include <vector> #include "absl/base/config.h" #include "tsl/platform/errors.h" #include "tsl/platform/macros.h" #include "tsl/platform/test.h" #include "tsl/platform/test_benchmark.h" namespace tsl { namespace { class Base1...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/platform/statusor.h
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/third_party/tsl/tsl/platform/statusor_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
cba17e35-f5cf-4369-abac-57976f000bab
cpp
tensorflow/tensorflow
pin_to_host_optimizer
tensorflow/core/grappler/optimizers/pin_to_host_optimizer.cc
tensorflow/core/grappler/optimizers/pin_to_host_optimizer_test.cc
#include "tensorflow/core/grappler/optimizers/pin_to_host_optimizer.h" #include "tensorflow/core/framework/op.h" #include "tensorflow/core/framework/tensor_shape.pb.h" #include "tensorflow/core/framework/types.h" #include "tensorflow/core/grappler/graph_view.h" #include "tensorflow/core/grappler/grappler_item.h" #inclu...
#include "tensorflow/core/grappler/optimizers/pin_to_host_optimizer.h" #include "tensorflow/cc/ops/standard_ops.h" #include "tensorflow/core/framework/node_def.pb.h" #include "tensorflow/core/framework/tensor_testutil.h" #include "tensorflow/core/grappler/grappler_item.h" #include "tensorflow/core/grappler/utils/grappl...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/grappler/optimizers/pin_to_host_optimizer.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/grappler/optimizers/pin_to_host_optimizer_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
13d35957-77ef-4355-a5a8-1cecf402d99c
cpp
tensorflow/tensorflow
spectrogram
tensorflow/lite/kernels/internal/spectrogram.cc
tensorflow/core/kernels/spectrogram_test.cc
#include "tensorflow/lite/kernels/internal/spectrogram.h" #include <assert.h> #include <math.h> #include <stdint.h> #include "third_party/fft2d/fft.h" namespace tflite { namespace internal { using std::complex; namespace { void GetPeriodicHann(int window_length, std::vector<double>* window) { const double pi = std::a...
#include "tensorflow/core/kernels/spectrogram.h" #include <complex> #include <vector> #include "tensorflow/core/kernels/spectrogram_test_utils.h" #include "tensorflow/core/lib/core/status_test_util.h" #include "tensorflow/core/lib/io/path.h" #include "tensorflow/core/platform/path.h" #include "tensorflow/core/platform/...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/kernels/internal/spectrogram.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/spectrogram_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
dd964e63-6f3d-4030-987b-827743b1f564
cpp
tensorflow/tensorflow
tf_quantize_op
tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_quantize_op.cc
tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_quantize_op_test.cc
#include "tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_quantize_op.h" #include <functional> #include <optional> #include "absl/strings/str_cat.h" #include "absl/strings/str_join.h" #include "absl/types/optional.h" #include "mlir/Dialect/Func/IR/FuncOps.h" #include "mlir/Dialect/Quant/IR/QuantTypes.h" #in...
#include "tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_quantize_op.h" #include <optional> #include <gtest/gtest.h> #include "mlir/Dialect/Func/IR/FuncOps.h" #include "mlir/Dialect/Quant/IR/Quant.h" #include "mlir/IR/Builders.h" #include "mlir/IR/BuiltinOps.h" #include "mlir/IR/MLIRContext.h" #inclu...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_quantize_op.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_quantize_op_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
5f0bf610-f23a-4dd6-9bfb-f1d3f2b30cc9
cpp
tensorflow/tensorflow
uniform_quant_ops_params
tensorflow/core/util/quantization/uniform_quant_ops_params.cc
tensorflow/core/util/quantization/uniform_quant_ops_params_test.cc
#include "tensorflow/core/util/quantization/uniform_quant_ops_params.h" #include <algorithm> #include <cmath> #include <cstdint> #include <string> #include <vector> #include "absl/algorithm/container.h" namespace tensorflow { namespace { using tensorflow::errors::InvalidArgument; Status ValidDim(int64_t dims, int64_t d...
#include "tensorflow/core/util/quantization/uniform_quant_ops_params.h" #include <gmock/gmock.h> #include <gtest/gtest.h> #include "xla/tsl/lib/core/status_test_util.h" #include "tensorflow/core/framework/tensor_shape.h" #include "tensorflow/core/util/quantization/uniform_quant_ops_attr.pb.h" namespace tensorflow { nam...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/util/quantization/uniform_quant_ops_params.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/util/quantization/uniform_quant_ops_params_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
650091b6-2adc-4acd-a30c-698f8f8cc66e
cpp
tensorflow/tensorflow
xla_legalize_targets
tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_targets.cc
tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_targets_test.cc
#include "tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_targets.h" #include "mlir/Dialect/Arith/IR/Arith.h" #include "mlir/Dialect/Func/IR/FuncOps.h" #include "mlir/Dialect/Shape/IR/Shape.h" #include "mlir/Dialect/Tensor/IR/Tensor.h" #include "mlir/Transforms/DialectConversion.h" #include "stablehlo...
#include "tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_targets.h" #include <gmock/gmock.h> #include <gtest/gtest.h> #include "mlir/Dialect/Arith/IR/Arith.h" #include "mlir/Dialect/Func/IR/FuncOps.h" #include "mlir/Dialect/Shape/IR/Shape.h" #include "mlir/Dialect/Tensor/IR/Tensor.h" #include "mlir/IR/...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_targets.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_targets_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
e75402be-4462-469a-b7e4-f4278767815f
cpp
tensorflow/tensorflow
pjrt_cpu_client_registration
tensorflow/core/tfrt/common/pjrt_cpu_client_registration.cc
tensorflow/core/tfrt/common/pjrt_cpu_client_registration_test.cc
#include <memory> #include <utility> #include "absl/status/statusor.h" #include "xla/pjrt/cpu/cpu_client.h" #include "xla/pjrt/pjrt_client.h" #include "tensorflow/core/framework/types.h" #include "tensorflow/core/tfrt/common/pjrt_client_factory_options.h" #include "tensorflow/core/tfrt/common/pjrt_client_factory_regist...
#include <gtest/gtest.h> #include "xla/tsl/framework/device_type.h" #include "tensorflow/core/framework/types.h" #include "tensorflow/core/tfrt/common/pjrt_client_factory_options.h" #include "tensorflow/core/tfrt/common/pjrt_client_factory_registry.h" #include "tsl/platform/statusor.h" namespace xla { namespace { TEST(...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/tfrt/common/pjrt_cpu_client_registration.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/tfrt/common/pjrt_cpu_client_registration_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
2dcebcc7-6c69-44ba-9f86-9cae5f936ef9
cpp
google/tensorstore
deep_copy_transform_rep_ptr
tensorstore/index_space/internal/deep_copy_transform_rep_ptr.h
tensorstore/index_space/deep_copy_transform_rep_ptr_test.cc
#ifndef TENSORSTORE_INDEX_SPACE_INTERNAL_DEEP_COPY_TRANSFORM_REP_PTR_H_ #define TENSORSTORE_INDEX_SPACE_INTERNAL_DEEP_COPY_TRANSFORM_REP_PTR_H_ #include <utility> #include "tensorstore/index_space/internal/transform_rep.h" namespace tensorstore { namespace internal_index_space { class DeepCopyTransformRepPtr { public:...
#include "tensorstore/index_space/internal/deep_copy_transform_rep_ptr.h" #include <gmock/gmock.h> #include <gtest/gtest.h> namespace { using ::tensorstore::internal::acquire_object_ref; using ::tensorstore::internal::adopt_object_ref; using ::tensorstore::internal_index_space::DeepCopyTransformRepPtr; using ::tensorst...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/index_space/internal/deep_copy_transform_rep_ptr.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/index_space/deep_copy_transform_rep_ptr_test.cc
4f887a6430414cd6088e1743555015b10f116d50
94107fc2-df0d-4834-b084-1a8bd6d86636
cpp
tensorflow/tensorflow
resize_nearest_neighbor_op
tensorflow/core/kernels/image/resize_nearest_neighbor_op.cc
tensorflow/core/kernels/image/resize_nearest_neighbor_op_test.cc
#define EIGEN_USE_THREADS #include "tensorflow/core/kernels/image/resize_nearest_neighbor_op.h" #include <memory> #include "unsupported/Eigen/CXX11/Tensor" #include "tensorflow/core/framework/op_kernel.h" #include "tensorflow/core/framework/register_types.h" #include "tensorflow/core/framework/tensor.h" #include "ten...
#include "tensorflow/core/common_runtime/device_factory.h" #include "tensorflow/core/framework/allocator.h" #include "tensorflow/core/framework/fake_input.h" #include "tensorflow/core/framework/node_def_builder.h" #include "tensorflow/core/framework/op_kernel.h" #include "tensorflow/core/framework/tensor.h" #include "t...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/image/resize_nearest_neighbor_op.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/image/resize_nearest_neighbor_op_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
972db8a3-1645-43d4-94a7-46408a04c7bc
cpp
tensorflow/tensorflow
tflite_tensor_view
tensorflow/lite/kernels/shim/tflite_tensor_view.cc
tensorflow/lite/kernels/shim/tflite_tensor_view_test.cc
#include "tensorflow/lite/kernels/shim/tflite_tensor_view.h" #include <utility> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/types/variant.h" #include "tensorflow/lite/core/c/common.h" #include "tensorflow/lite/kernels/shim/tensor_view.h" #include "tensorflow/lite/string_util.h" #inc...
#include "tensorflow/lite/kernels/shim/tflite_tensor_view.h" #include <cstdint> #include <string> #include <utility> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorflow/lite/core/interpreter.h" #include "tensorflow/lite/kernels/shim/test_util.h" #include "tensorflow/lite/string_util.h" namespace tfli...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/kernels/shim/tflite_tensor_view.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/kernels/shim/tflite_tensor_view_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
7e021945-fa0a-45dd-bdad-66d1e9d09bc0
cpp
google/quiche
quic_data_writer
quiche/quic/core/quic_data_writer.cc
quiche/quic/core/quic_data_writer_test.cc
#include "quiche/quic/core/quic_data_writer.h" #include <algorithm> #include <limits> #include "absl/strings/string_view.h" #include "quiche/quic/core/crypto/quic_random.h" #include "quiche/quic/core/quic_constants.h" #include "quiche/quic/platform/api/quic_bug_tracker.h" #include "quiche/quic/platform/api/quic_flags.h...
#include "quiche/quic/core/quic_data_writer.h" #include <cstdint> #include <cstring> #include <string> #include <vector> #include "absl/base/macros.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #include "quiche/quic/core/quic_connection_id.h" #include "quiche/quic/core/quic_data_reader.h" #...
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/core/quic_data_writer.cc
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/core/quic_data_writer_test.cc
6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6