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
e87f703b-9ab7-41f0-a6af-71cbc58cb452
cpp
google/libaddressinput
address_data
cpp/src/address_data.cc
cpp/test/address_data_test.cc
#include <libaddressinput/address_data.h> #include <libaddressinput/address_field.h> #include <algorithm> #include <cassert> #include <cstddef> #include <ostream> #include <string> #include <vector> #include <re2/re2.h> #include "util/size.h" namespace i18n { namespace addressinput { namespace { std::string AddressData...
#include <libaddressinput/address_data.h> #include <libaddressinput/address_field.h> #include <sstream> #include <gtest/gtest.h> namespace { using i18n::addressinput::AddressData; using i18n::addressinput::AddressField; using i18n::addressinput::COUNTRY; using i18n::addressinput::ADMIN_AREA; using i18n::addressinput::L...
https://github.com/google/libaddressinput/blob/2610f7b1043d6784ada41392fc9392d1ea09ea07/cpp/src/address_data.cc
https://github.com/google/libaddressinput/blob/2610f7b1043d6784ada41392fc9392d1ea09ea07/cpp/test/address_data_test.cc
2610f7b1043d6784ada41392fc9392d1ea09ea07
372fea3a-ecdc-4712-95c9-436ca07dd10c
cpp
tensorflow/tensorflow
winograd_util
tensorflow/lite/delegates/gpu/common/winograd_util.cc
tensorflow/lite/delegates/gpu/common/winograd_util_test.cc
#include "tensorflow/lite/delegates/gpu/common/winograd_util.h" #include <cmath> #include <vector> #include "tensorflow/lite/delegates/gpu/common/data_type.h" #include "tensorflow/lite/delegates/gpu/common/operations.h" #include "tensorflow/lite/delegates/gpu/common/shape.h" #include "tensorflow/lite/delegates/gpu/comm...
#include "tensorflow/lite/delegates/gpu/common/winograd_util.h" #include <gtest/gtest.h> #include "tensorflow/lite/delegates/gpu/common/operations.h" #include "tensorflow/lite/delegates/gpu/common/shape.h" namespace tflite { namespace gpu { TEST(Winograd, CorrectAttributesFor4x4To6x6) { Convolution2DAttributes attr; ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/delegates/gpu/common/winograd_util.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/delegates/gpu/common/winograd_util_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
aa4eaeed-d89a-44ac-8a40-cbeca40aa15a
cpp
tensorflow/tensorflow
resource_variable_grad
tensorflow/cc/gradients/resource_variable_grad.cc
tensorflow/cc/gradients/resource_variable_grad_test.cc
#include <vector> #include "tensorflow/cc/framework/grad_op_registry.h" #include "tensorflow/cc/framework/gradients.h" #include "tensorflow/cc/ops/array_ops.h" namespace tensorflow { namespace ops { namespace { Status ReadVariableOpGrad(const Scope& scope, const Operation& op, const std::vecto...
#include <iostream> #include "tensorflow/cc/client/client_session.h" #include "tensorflow/cc/framework/grad_op_registry.h" #include "tensorflow/cc/framework/gradient_checker.h" #include "tensorflow/cc/framework/gradients.h" #include "tensorflow/cc/framework/ops.h" #include "tensorflow/cc/framework/testutil.h" #include ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/cc/gradients/resource_variable_grad.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/cc/gradients/resource_variable_grad_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
c0e9b00c-577d-4692-b0de-b284f166c3d1
cpp
tensorflow/tensorflow
sampler
third_party/xla/xla/tsl/lib/monitoring/sampler.cc
tensorflow/core/lib/monitoring/sampler_test.cc
#include "xla/tsl/lib/monitoring/sampler.h" #include "absl/log/check.h" #ifdef IS_MOBILE_PLATFORM #else namespace tsl { namespace monitoring { namespace { class ExplicitBuckets : public Buckets { public: ~ExplicitBuckets() override = default; explicit ExplicitBuckets(std::vector<double> bucket_limits) : buck...
#include "tensorflow/core/lib/monitoring/sampler.h" #include "tensorflow/core/platform/test.h" namespace tensorflow { namespace monitoring { namespace { using histogram::Histogram; void EqHistograms(const Histogram& expected, const HistogramProto& actual_proto) { Histogram actual; ASSERT_TRUE(actu...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/monitoring/sampler.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/lib/monitoring/sampler_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
61928d7e-efb0-4f2c-8acc-2f59f7b04420
cpp
google/tensorstore
key
tensorstore/kvstore/zarr3_sharding_indexed/key.cc
tensorstore/kvstore/zarr3_sharding_indexed/key_test.cc
#include "tensorstore/kvstore/zarr3_sharding_indexed/key.h" #include <stddef.h> #include <stdint.h> #include <algorithm> #include <cassert> #include <cstring> #include <optional> #include <string> #include <string_view> #include <utility> #include "absl/base/internal/endian.h" #include "absl/status/status.h" #include "...
#include "tensorstore/kvstore/zarr3_sharding_indexed/key.h" #include <optional> #include <string> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorstore/index.h" #include "tensorstore/kvstore/key_range.h" namespace { using ::tensorstore::Index; using ::tensorstore::KeyRange; using ::tensorstore::zarr3_...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/kvstore/zarr3_sharding_indexed/key.cc
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/kvstore/zarr3_sharding_indexed/key_test.cc
4f887a6430414cd6088e1743555015b10f116d50
40874743-137f-4d51-be46-efd8d9dcd11c
cpp
tensorflow/tensorflow
unidirectional_sequence_lstm
tensorflow/lite/kernels/unidirectional_sequence_lstm.cc
tensorflow/lite/kernels/unidirectional_sequence_lstm_test.cc
#include <math.h> #include <algorithm> #include <cstddef> #include "tensorflow/lite/core/c/builtin_op_data.h" #include "tensorflow/lite/core/c/common.h" #include "tensorflow/lite/kernels/cpu_backend_context.h" #include "tensorflow/lite/kernels/internal/compatibility.h" #include "tensorflow/lite/kernels/internal/kernel_...
#include <tuple> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "benchmark/benchmark.h" #include "flatbuffers/flatbuffers.h" #include "tensorflow/lite/kernels/test_util.h" #include "tensorflow/lite/kernels/unidirectional_sequence_lstm_test_util.h" #include "tensorflow/lite/schema/schem...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/kernels/unidirectional_sequence_lstm.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/kernels/unidirectional_sequence_lstm_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
d3449137-bd0a-42dc-b8f7-95502deb4561
cpp
google/quiche
uber_quic_stream_id_manager
quiche/quic/core/uber_quic_stream_id_manager.cc
quiche/quic/core/uber_quic_stream_id_manager_test.cc
#include "quiche/quic/core/uber_quic_stream_id_manager.h" #include <string> #include "quiche/quic/core/quic_session.h" #include "quiche/quic/core/quic_utils.h" namespace quic { UberQuicStreamIdManager::UberQuicStreamIdManager( Perspective perspective, ParsedQuicVersion version, QuicStreamIdManager::DelegateInte...
#include "quiche/quic/core/uber_quic_stream_id_manager.h" #include <string> #include <vector> #include "quiche/quic/core/quic_utils.h" #include "quiche/quic/core/quic_versions.h" #include "quiche/quic/platform/api/quic_test.h" #include "quiche/quic/test_tools/quic_stream_id_manager_peer.h" #include "quiche/quic/test_to...
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/core/uber_quic_stream_id_manager.cc
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/core/uber_quic_stream_id_manager_test.cc
6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6
73972d77-4a96-4dd2-9317-ea35ef86c645
cpp
google/libaddressinput
supplier
cpp/include/libaddressinput/supplier.h
cpp/test/supplier_test.cc
#ifndef I18N_ADDRESSINPUT_SUPPLIER_H_ #define I18N_ADDRESSINPUT_SUPPLIER_H_ #include <libaddressinput/callback.h> #include <string> namespace i18n { namespace addressinput { class LookupKey; class Rule; class Supplier { public: struct RuleHierarchy; using Callback = i18n::addressinput::Callback<const LookupK...
#include <libaddressinput/supplier.h> #include <libaddressinput/address_data.h> #include <libaddressinput/callback.h> #include <libaddressinput/null_storage.h> #include <libaddressinput/ondemand_supplier.h> #include <libaddressinput/preload_supplier.h> #include <cstddef> #include <cstring> #include <memory> #include <s...
https://github.com/google/libaddressinput/blob/2610f7b1043d6784ada41392fc9392d1ea09ea07/cpp/include/libaddressinput/supplier.h
https://github.com/google/libaddressinput/blob/2610f7b1043d6784ada41392fc9392d1ea09ea07/cpp/test/supplier_test.cc
2610f7b1043d6784ada41392fc9392d1ea09ea07
2f120f00-d9e2-4867-8061-62cad0e7bc44
cpp
tensorflow/tensorflow
neg
tensorflow/lite/kernels/neg.cc
tensorflow/lite/delegates/xnnpack/neg_test.cc
#include "tensorflow/lite/kernels/internal/reference/neg.h" #include <stdint.h> #include "tensorflow/lite/core/c/common.h" #include "tensorflow/lite/kernels/internal/optimized/optimized_ops.h" #include "tensorflow/lite/kernels/internal/tensor.h" #include "tensorflow/lite/kernels/internal/tensor_ctypes.h" #include "tens...
#include <cstdint> #include <functional> #include <memory> #include <random> #include <gtest/gtest.h> #include "tensorflow/lite/c/c_api_types.h" #include "tensorflow/lite/delegates/xnnpack/unary_elementwise_tester.h" #include "tensorflow/lite/delegates/xnnpack/xnnpack_delegate.h" #include "tensorflow/lite/schema/schema...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/kernels/neg.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/delegates/xnnpack/neg_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
55da78bf-faae-4166-88d4-884db9fc1158
cpp
abseil/abseil-cpp
str_cat
absl/strings/str_cat.cc
absl/strings/str_cat_test.cc
#include "absl/strings/str_cat.h" #include <assert.h> #include <cstddef> #include <cstdint> #include <cstring> #include <initializer_list> #include <limits> #include <string> #include "absl/base/config.h" #include "absl/base/internal/raw_logging.h" #include "absl/base/nullability.h" #include "absl/strings/internal/resi...
#include "absl/strings/str_cat.h" #include <cstddef> #include <cstdint> #include <cstdlib> #include <limits> #include <string> #include <vector> #include "gtest/gtest.h" #include "absl/strings/str_format.h" #include "absl/strings/string_view.h" #ifdef __ANDROID__ #define ABSL_EXPECT_DEBUG_DEATH(statement, regex) \ EX...
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/strings/str_cat.cc
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/strings/str_cat_test.cc
03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4
af8f681c-9589-46e6-9745-f5b0612bf4d2
cpp
google/quiche
moqt_messages
quiche/quic/moqt/moqt_messages.cc
quiche/quic/moqt/moqt_messages_test.cc
#include "quiche/quic/moqt/moqt_messages.h" #include <cstdint> #include <string> #include <vector> #include "absl/algorithm/container.h" #include "absl/strings/escaping.h" #include "absl/strings/str_cat.h" #include "absl/strings/str_join.h" #include "absl/strings/string_view.h" #include "absl/types/span.h" #include "qu...
#include "quiche/quic/moqt/moqt_messages.h" #include <vector> #include "absl/hash/hash.h" #include "absl/strings/string_view.h" #include "quiche/common/platform/api/quiche_test.h" namespace moqt::test { namespace { TEST(MoqtMessagesTest, FullTrackNameConstructors) { FullTrackName name1({"foo", "bar"}); std::vector<...
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/moqt/moqt_messages.cc
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/moqt/moqt_messages_test.cc
6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6
ca502529-5b2d-41f7-a2a5-93772bdad653
cpp
google/arolla
eval
arolla/expr/eval/eval.cc
arolla/expr/eval/eval_test.cc
#include "arolla/expr/eval/eval.h" #include <algorithm> #include <cstddef> #include <memory> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_format.h" #includ...
#include "arolla/expr/eval/eval.h" #include <cstdint> #include <memory> #include <optional> #include <string> #include <utility> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/container/flat_hash_map.h" #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/status/status_matchers.h...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/expr/eval/eval.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/expr/eval/eval_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
d13a71f9-9641-49d4-9959-d13d8a3bdbf0
cpp
google/tensorstore
bfloat16
tensorstore/util/bfloat16.h
tensorstore/util/bfloat16_test.cc
#ifndef TENSORSTORE_UTIL_BFLOAT16_H_ #define TENSORSTORE_UTIL_BFLOAT16_H_ #include <cassert> #include <cmath> #include <cstdint> #include <cstring> #include <limits> #include <type_traits> #include "absl/base/casts.h" #include <nlohmann/json_fwd.hpp> namespace tensorstore { class BFloat16; } namespace std { template ...
#include "tensorstore/util/bfloat16.h" #include <cmath> #include <cstdint> #include <cstring> #include <limits> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/base/casts.h" #include "tensorstore/internal/json_gtest.h" namespace { using ::tensorstore::internal::Float32ToBfloat16RoundNearestEven; using ...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/bfloat16.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/bfloat16_test.cc
4f887a6430414cd6088e1743555015b10f116d50
b9c06777-8747-4fb4-8b7a-eda275f5c353
cpp
tensorflow/tensorflow
hlo_graph_dumper
third_party/xla/xla/service/hlo_graph_dumper.cc
third_party/xla/xla/service/hlo_graph_dumper_test.cc
#include "xla/service/hlo_graph_dumper.h" #include <cstdint> #include <unordered_map> #include "absl/base/const_init.h" #include "absl/base/thread_annotations.h" #include "absl/hash/hash.h" #include "absl/log/check.h" #include "absl/log/log.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "...
#include "xla/service/hlo_graph_dumper.h" #include "absl/container/flat_hash_map.h" #include "absl/strings/str_cat.h" #include "absl/strings/str_format.h" #include "xla/hlo/ir/hlo_computation.h" #include "xla/hlo/ir/hlo_instruction.h" #include "xla/hlo/ir/hlo_module.h" #include "xla/hlo/ir/hlo_opcode.h" #include "xla/l...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/hlo_graph_dumper.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/hlo_graph_dumper_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
71217517-bd22-4e54-9891-4344e5585a1c
cpp
tensorflow/tensorflow
uniform_quantized_types
tensorflow/compiler/mlir/quantization/common/uniform_quantized_types.cc
tensorflow/compiler/mlir/quantization/common/uniform_quantized_types_test.cc
#include "tensorflow/compiler/mlir/quantization/common/uniform_quantized_types.h" #include <cstdint> #include "llvm/ADT/STLExtras.h" #include "llvm/Support/Debug.h" #include "llvm/Support/MathExtras.h" #include "mlir/Dialect/Quant/IR/QuantTypes.h" #include "mlir/IR/BuiltinTypes.h" #include "mlir/IR/Location.h" #i...
#include "tensorflow/compiler/mlir/quantization/common/uniform_quantized_types.h" #include <cstdint> #include <limits> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/strings/string_view.h" #include "mlir/Dialect/Func/IR/FuncOps.h" #include "mlir/Dialect/Quant/IR/Quant.h" #include "mlir/Dialect/Qua...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/quantization/common/uniform_quantized_types.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/quantization/common/uniform_quantized_types_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
94996556-fc86-4b9e-8614-170ea8e383c5
cpp
tensorflow/tensorflow
tensor_id
tensorflow/core/graph/tensor_id.cc
tensorflow/core/graph/tensor_id_test.cc
#include "tensorflow/core/graph/tensor_id.h" #include <string> #include "tensorflow/core/lib/core/stringpiece.h" #include "tensorflow/core/lib/strings/str_util.h" namespace tensorflow { TensorId::TensorId(const SafeTensorId& id) : TensorId(id.first, id.second) {} SafeTensorId::SafeTensorId(const TensorId& id) : Saf...
#include "tensorflow/core/graph/tensor_id.h" #include <vector> #include "tensorflow/core/lib/random/simple_philox.h" #include "tensorflow/core/platform/logging.h" #include "tensorflow/core/platform/test.h" #include "tensorflow/core/platform/test_benchmark.h" namespace tensorflow { namespace { string ParseHelper(const s...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/graph/tensor_id.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/graph/tensor_id_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
9f641e69-b766-49cc-9efc-fb43469c2b28
cpp
abseil/abseil-cpp
globals
absl/log/internal/globals.cc
absl/log/globals_test.cc
#include "absl/log/internal/globals.h" #include <atomic> #include <cstdio> #if defined(__EMSCRIPTEN__) #include <emscripten/console.h> #endif #include "absl/base/attributes.h" #include "absl/base/config.h" #include "absl/base/internal/raw_logging.h" #include "absl/base/log_severity.h" #include "absl/strings/string_view...
#include "absl/log/globals.h" #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/base/attributes.h" #include "absl/base/log_severity.h" #include "absl/log/internal/globals.h" #include "absl/log/internal/test_helpers.h" #include "absl/log/log.h" #include "absl/log/scoped_mock_log.h" namespace { using ::tes...
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/log/internal/globals.cc
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/log/globals_test.cc
03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4
19afc211-8c06-4f02-9ab1-ee2b82b6cba1
cpp
tensorflow/tensorflow
strcat
third_party/xla/third_party/tsl/tsl/platform/strcat.cc
third_party/xla/third_party/tsl/tsl/platform/strcat_test.cc
#include "tsl/platform/strcat.h" #include <stdarg.h> #include <stdint.h> #include <stdio.h> #include <string.h> #include <algorithm> #include "absl/meta/type_traits.h" #include "tsl/platform/logging.h" namespace tsl { namespace strings { AlphaNum::AlphaNum(Hex hex) { char *const end = &digits_[kFastToBufferSize]; c...
#include "tsl/platform/strcat.h" #include <string> #include "absl/strings/string_view.h" #include "tsl/platform/stringprintf.h" #include "tsl/platform/test.h" #include "tsl/platform/types.h" #ifdef _MSC_VER typedef ptrdiff_t ssize_t; #endif namespace tsl { namespace strings { TEST(StrCat, Ints) { const int16_t s = -1...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/third_party/tsl/tsl/platform/strcat.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/third_party/tsl/tsl/platform/strcat_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
ef1402fc-707f-440d-bf71-7892e6bea482
cpp
google/libaddressinput
string_util
cpp/src/util/string_util.cc
cpp/test/util/string_util_test.cc
#include "string_util.h" #include <cassert> #include <cstddef> #include <stdint.h> #include <string> #include <vector> namespace i18n { namespace addressinput { std::string DoReplaceStringPlaceholders(const std::string& format_string, const std::vector<std::string>& subst) { si...
#include "util/string_util.h" #include <string> #include <vector> #include <gtest/gtest.h> namespace { using i18n::addressinput::DoReplaceStringPlaceholders; TEST(StringUtilTest, Ok) { const std::vector<std::string> subst{ "A", "B", "C", }; EXPECT_EQ("aA,bB,cC", DoReplaceStringPlaceholders("a$1,...
https://github.com/google/libaddressinput/blob/2610f7b1043d6784ada41392fc9392d1ea09ea07/cpp/src/util/string_util.cc
https://github.com/google/libaddressinput/blob/2610f7b1043d6784ada41392fc9392d1ea09ea07/cpp/test/util/string_util_test.cc
2610f7b1043d6784ada41392fc9392d1ea09ea07
62bf0644-5132-4e87-bff3-4b0982acdd07
cpp
tensorflow/tensorflow
infeed_token_propagation
third_party/xla/xla/service/infeed_token_propagation.cc
third_party/xla/xla/service/infeed_token_propagation_test.cc
#include "xla/service/infeed_token_propagation.h" #include <cstdint> #include <string_view> #include <vector> #include "absl/container/flat_hash_set.h" #include "absl/log/check.h" #include "absl/log/log.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/types/span.h" #include "xla/hlo/i...
#include "xla/service/infeed_token_propagation.h" #include <string_view> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "xla/hlo/ir/hlo_instruction.h" #include "xla/hlo/utils/hlo_matchers.h" #include "xla/tests/hlo_test_base.h" #include "tsl/platform/statusor.h" namespace op = xla::testing...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/infeed_token_propagation.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/infeed_token_propagation_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
58e77cc6-ed69-45d3-b6b2-27bf9c79df8e
cpp
google/tensorstore
future_sender
tensorstore/util/execution/future_sender.h
tensorstore/util/execution/future_sender_test.cc
#ifndef TENSORSTORE_UTIL_EXECUTION_FUTURE_SENDER_H_ #define TENSORSTORE_UTIL_EXECUTION_FUTURE_SENDER_H_ #include <functional> #include <type_traits> #include <utility> #include "absl/status/status.h" #include "tensorstore/util/execution/execution.h" #include "tensorstore/util/future.h" namespace tensorstore { namespace...
#include "tensorstore/util/execution/future_sender.h" #include <string> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "tensorstore/util/execution/any_receiver.h" #include "tensorstore/util/execution/any_sender.h" #include "tensorstore/util/execution/executi...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/execution/future_sender.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/execution/future_sender_test.cc
4f887a6430414cd6088e1743555015b10f116d50
d3fa6f16-f4b2-4a17-85df-c9db628b7db2
cpp
tensorflow/tensorflow
tensor_slice_dataset_op
tensorflow/core/kernels/data/tensor_slice_dataset_op.cc
tensorflow/core/kernels/data/tensor_slice_dataset_op_test.cc
#include "tensorflow/core/kernels/data/tensor_slice_dataset_op.h" #include <string> #include <utility> #include "absl/status/status.h" #include "tensorflow/core/data/dataset_utils.h" #include "tensorflow/core/data/global_shuffle_utils.h" #include "tensorflow/core/data/name_utils.h" #include "tensorflow/core/data/split_...
#include "tensorflow/core/kernels/data/tensor_slice_dataset_op.h" #include <string> #include <utility> #include "tensorflow/core/data/dataset_test_base.h" #include "tensorflow/core/data/dataset_utils.h" #include "tensorflow/core/data/serialization_utils.h" namespace tensorflow { namespace data { namespace { constexpr c...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/data/tensor_slice_dataset_op.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/data/tensor_slice_dataset_op_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
f845cd84-f662-46bb-a6e6-300d4c18375b
cpp
google/quiche
quic_lru_cache
quiche/quic/core/quic_lru_cache.h
quiche/quic/core/quic_lru_cache_test.cc
#ifndef QUICHE_QUIC_CORE_QUIC_LRU_CACHE_H_ #define QUICHE_QUIC_CORE_QUIC_LRU_CACHE_H_ #include <memory> #include "quiche/quic/platform/api/quic_export.h" #include "quiche/quic/platform/api/quic_flag_utils.h" #include "quiche/quic/platform/api/quic_flags.h" #include "quiche/quic/platform/api/quic_logging.h" #include "qu...
#include "quiche/quic/core/quic_lru_cache.h" #include <memory> #include <utility> #include "quiche/quic/platform/api/quic_test.h" namespace quic { namespace test { namespace { struct CachedItem { explicit CachedItem(uint32_t new_value) : value(new_value) {} uint32_t value; }; TEST(QuicLRUCacheTest, InsertAndLookup)...
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/core/quic_lru_cache.h
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/core/quic_lru_cache_test.cc
6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6
1e57cfe2-0c5a-4707-a50b-7bf3a0666fa5
cpp
abseil/abseil-cpp
uniform_helper
absl/random/internal/uniform_helper.h
absl/random/internal/uniform_helper_test.cc
#ifndef ABSL_RANDOM_INTERNAL_UNIFORM_HELPER_H_ #define ABSL_RANDOM_INTERNAL_UNIFORM_HELPER_H_ #include <cmath> #include <limits> #include <type_traits> #include "absl/base/config.h" #include "absl/meta/type_traits.h" #include "absl/random/internal/traits.h" namespace absl { ABSL_NAMESPACE_BEGIN template <typename IntTy...
#include "absl/random/internal/uniform_helper.h" #include <cmath> #include <cstdint> #include <random> #include "gtest/gtest.h" namespace { using absl::IntervalClosedClosedTag; using absl::IntervalClosedOpenTag; using absl::IntervalOpenClosedTag; using absl::IntervalOpenOpenTag; using absl::random_internal::uniform_inf...
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/random/internal/uniform_helper.h
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/random/internal/uniform_helper_test.cc
03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4
d9e7938a-62ab-44dd-9d1c-26c951320ef7
cpp
abseil/abseil-cpp
crc32c
absl/crc/crc32c.cc
absl/crc/crc32c_test.cc
#include "absl/crc/crc32c.h" #include <cstdint> #include "absl/crc/internal/crc.h" #include "absl/crc/internal/crc32c.h" #include "absl/crc/internal/crc_memcpy.h" #include "absl/strings/string_view.h" namespace absl { ABSL_NAMESPACE_BEGIN namespace { const crc_internal::CRC* CrcEngine() { static const crc_internal::C...
#include "absl/crc/crc32c.h" #include <algorithm> #include <cstddef> #include <cstdint> #include <cstring> #include <sstream> #include <string> #include "gtest/gtest.h" #include "absl/crc/internal/crc32c.h" #include "absl/strings/str_cat.h" #include "absl/strings/str_format.h" #include "absl/strings/string_view.h" name...
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/crc/crc32c.cc
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/crc/crc32c_test.cc
03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4
ffc07e61-07c7-4b48-aa1e-c9a582db6910
cpp
google/cel-cpp
standard_library
checker/standard_library.cc
checker/standard_library_test.cc
#include "checker/standard_library.h" #include <string> #include <utility> #include "absl/base/no_destructor.h" #include "absl/status/status.h" #include "base/builtins.h" #include "checker/internal/builtins_arena.h" #include "checker/type_checker_builder.h" #include "common/constant.h" #include "common/decl.h" #include...
#include "checker/standard_library.h" #include <memory> #include <string> #include <utility> #include "absl/status/status.h" #include "absl/status/status_matchers.h" #include "base/ast_internal/ast_impl.h" #include "base/ast_internal/expr.h" #include "checker/internal/test_ast_helpers.h" #include "checker/type_checker....
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/checker/standard_library.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/checker/standard_library_test.cc
4552db5798fb0853b131b783d8875794334fae7f
c51d0205-c7bd-4898-90c7-d1f12f00a9d1
cpp
tensorflow/tensorflow
non_max_suppression_op
tensorflow/core/kernels/image/non_max_suppression_op.cc
tensorflow/core/kernels/image/non_max_suppression_op_test.cc
#define EIGEN_USE_THREADS #include "tensorflow/core/kernels/image/non_max_suppression_op.h" #include <cmath> #include <functional> #include <limits> #include <queue> #include <vector> #include "unsupported/Eigen/CXX11/Tensor" #include "tensorflow/core/framework/bounds_check.h" #include "tensorflow/core/framework/op_k...
#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 "tensorflow/core/framework/tensor_testutil.h" #include "tenso...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/image/non_max_suppression_op.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/image/non_max_suppression_op_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
c3e707eb-aa99-42f0-8beb-c5644b98862f
cpp
tensorflow/tensorflow
device_propagation
tensorflow/core/common_runtime/device_propagation.cc
tensorflow/core/common_runtime/device_propagation_test.cc
#include "tensorflow/core/common_runtime/device_propagation.h" #include <string> #include <utility> #include "absl/container/flat_hash_set.h" #include "tensorflow/core/framework/types.h" #include "tensorflow/core/graph/algorithm.h" #include "tensorflow/core/graph/graph.h" namespace tensorflow { namespace { const std::s...
#include "tensorflow/core/common_runtime/device_propagation.h" #include <string> #include "absl/container/flat_hash_map.h" #include "absl/container/flat_hash_set.h" #include "absl/strings/match.h" #include "tensorflow/cc/framework/scope.h" #include "tensorflow/cc/ops/array_ops.h" #include "tensorflow/cc/ops/control_flo...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/common_runtime/device_propagation.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/common_runtime/device_propagation_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
7a493795-3ee7-4cb2-a7b7-639d43aba311
cpp
tensorflow/tensorflow
softmax
tensorflow/compiler/tf2tensorrt/convert/ops/softmax.cc
tensorflow/lite/delegates/xnnpack/softmax_test.cc
#if GOOGLE_CUDA && GOOGLE_TENSORRT #include "tensorflow/compiler/tf2tensorrt/convert/convert_nodes.h" #include "tensorflow/compiler/tf2tensorrt/convert/op_converter_registry.h" #include "tensorflow/compiler/tf2tensorrt/convert/ops/layer_utils.h" namespace tensorflow { namespace tensorrt { namespace convert { class Conv...
#include <cstdint> #include <functional> #include <memory> #include <random> #include <gtest/gtest.h> #include "tensorflow/lite/c/c_api_types.h" #include "tensorflow/lite/delegates/xnnpack/softmax_tester.h" #include "tensorflow/lite/delegates/xnnpack/xnnpack_delegate.h" namespace tflite { namespace xnnpack { TEST(Softm...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/tf2tensorrt/convert/ops/softmax.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/delegates/xnnpack/softmax_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
f03a3830-3544-489a-837c-11b8e6cc9e8f
cpp
google/quiche
load_balancer_server_id
quiche/quic/load_balancer/load_balancer_server_id.cc
quiche/quic/load_balancer/load_balancer_server_id_test.cc
#include "quiche/quic/load_balancer/load_balancer_server_id.h" #include <array> #include <cstdint> #include <cstring> #include <string> #include "absl/strings/escaping.h" #include "absl/strings/string_view.h" #include "absl/types/span.h" #include "quiche/quic/platform/api/quic_bug_tracker.h" namespace quic { LoadBalanc...
#include "quiche/quic/load_balancer/load_balancer_server_id.h" #include <cstdint> #include <cstring> #include "absl/hash/hash_testing.h" #include "absl/types/span.h" #include "quiche/quic/platform/api/quic_expect_bug.h" #include "quiche/quic/platform/api/quic_test.h" namespace quic { namespace test { namespace { class ...
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/load_balancer/load_balancer_server_id.cc
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/load_balancer/load_balancer_server_id_test.cc
6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6
642de5a1-8571-42ec-86b3-0c039e9b3c62
cpp
tensorflow/tensorflow
device_compilation_profiler
tensorflow/compiler/jit/device_compilation_profiler.cc
tensorflow/compiler/jit/device_compilation_profiler_test.cc
#include "tensorflow/compiler/jit/device_compilation_profiler.h" #include <cstdint> #include <optional> #include <string> #include <utility> #include "absl/strings/str_cat.h" #include "tensorflow/compiler/jit/xla_activity.pb.h" #include "tensorflow/compiler/jit/xla_activity_listener.h" #include "tensorflow/core/framewo...
#include "tensorflow/compiler/jit/device_compilation_profiler.h" #include <memory> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorflow/compiler/jit/tests/device_compiler_test_helper.h" #include "tensorflow/compiler/jit/xla_activity.pb.h" #include "tensorflow/core/...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/jit/device_compilation_profiler.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/jit/device_compilation_profiler_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
24bb0006-b05f-484b-99d7-4f82b5dc15ee
cpp
google/tensorstore
executor
tensorstore/util/executor.h
tensorstore/util/executor_test.cc
#ifndef TENSORSTORE_UTIL_EXECUTOR_H_ #define TENSORSTORE_UTIL_EXECUTOR_H_ #include <functional> #include <type_traits> #include <utility> #include "absl/base/attributes.h" #include "absl/functional/any_invocable.h" #include "absl/meta/type_traits.h" #include "tensorstore/internal/poly/poly.h" #include "tensorstore/inte...
#include "tensorstore/util/executor.h" #include <functional> #include <memory> #include <gtest/gtest.h> namespace { using ::tensorstore::Executor; using ::tensorstore::InlineExecutor; using ::tensorstore::WithExecutor; TEST(InlineExecutorTest, Basic) { Executor executor = InlineExecutor{}; bool invoked = false; e...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/executor.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/executor_test.cc
4f887a6430414cd6088e1743555015b10f116d50
e5eb671c-fe51-4224-9402-beab750cbaee
cpp
tensorflow/tensorflow
float8
tensorflow/core/platform/float8.h
third_party/xla/xla/tests/float8_test.cc
#ifndef TENSORFLOW_CORE_PLATFORM_FLOAT8_H_ #define TENSORFLOW_CORE_PLATFORM_FLOAT8_H_ #include "tsl/platform/ml_dtypes.h" namespace tensorflow { typedef tsl::float8_e4m3fn float8_e4m3fn; typedef tsl::float8_e5m2 float8_e5m2; } #endif
#include <cmath> #include <memory> #include <vector> #include <gtest/gtest.h> #include "xla/hlo/builder/xla_builder.h" #include "xla/test.h" #include "xla/tests/client_library_test_base.h" #include "xla/tests/test_macros.h" #include "tsl/platform/ml_dtypes.h" namespace xla { namespace { template <typename T> class Floa...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/platform/float8.h
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tests/float8_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
2c0d47c7-2213-4e44-90ad-237902404512
cpp
google/cel-cpp
timestamp_type
common/types/timestamp_type.h
common/types/timestamp_type_test.cc
#ifndef THIRD_PARTY_CEL_CPP_COMMON_TYPES_TIMESTAMP_TYPE_H_ #define THIRD_PARTY_CEL_CPP_COMMON_TYPES_TIMESTAMP_TYPE_H_ #include <ostream> #include <string> #include <utility> #include "absl/strings/string_view.h" #include "common/type_kind.h" namespace cel { class Type; class TypeParameters; class TimestampType final { ...
#include <sstream> #include "absl/hash/hash.h" #include "common/type.h" #include "internal/testing.h" namespace cel { namespace { TEST(TimestampType, Kind) { EXPECT_EQ(TimestampType().kind(), TimestampType::kKind); EXPECT_EQ(Type(TimestampType()).kind(), TimestampType::kKind); } TEST(TimestampType, Name) { EXPECT...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/timestamp_type.h
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/types/timestamp_type_test.cc
4552db5798fb0853b131b783d8875794334fae7f
34e66ece-9ff8-4b9c-9545-dcb0094f4b53
cpp
tensorflow/tensorflow
partitioning_utils
tensorflow/core/common_runtime/partitioning_utils.cc
tensorflow/core/common_runtime/partitioning_utils_test.cc
#include "tensorflow/core/common_runtime/partitioning_utils.h" #include <algorithm> #include <functional> #include <memory> #include <optional> #include <string> #include <unordered_map> #include <utility> #include "tensorflow/core/common_runtime/arg_ret_placement.h" #include "tensorflow/core/common_runtime/graph_const...
#include "tensorflow/core/common_runtime/partitioning_utils.h" #include <map> #include <memory> #include <string> #include <unordered_map> #include <vector> #include "tensorflow/cc/ops/array_ops.h" #include "tensorflow/cc/ops/function_ops.h" #include "tensorflow/core/common_runtime/device_factory.h" #include "tensorflo...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/common_runtime/partitioning_utils.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/common_runtime/partitioning_utils_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
908bf121-508e-4c4a-9d0d-8904854bb57f
cpp
tensorflow/tensorflow
ifrt_ops_kernel
tensorflow/core/tfrt/mlrt/kernel/ifrt_ops_kernel.cc
tensorflow/core/tfrt/mlrt/kernel/ifrt_ops_kernel_test.cc
#include <cstdint> #include <memory> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/log/check.h" #include "absl/log/log.h" #include "absl/status/status.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #include "xla/python/ifrt/future.h" #include "xla/...
#include <cstdint> #include <functional> #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/strings/str_cat.h" #include "absl/strings/string_view.h" #include "absl/strings/s...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/tfrt/mlrt/kernel/ifrt_ops_kernel.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/tfrt/mlrt/kernel/ifrt_ops_kernel_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
9fb23443-70bb-4a1a-b176-8ffde412eac7
cpp
tensorflow/tensorflow
clamp
tensorflow/lite/experimental/shlo/legacy/src/clamp.cc
tensorflow/lite/experimental/shlo/legacy/test/clamp_test.cc
#include <algorithm> #include <cstddef> #include <type_traits> #include "absl/status/status.h" #include "tensorflow/lite/experimental/shlo/legacy/include/shlo.h" #include "tensorflow/lite/experimental/shlo/legacy/src/dispatch.h" #include "tensorflow/lite/experimental/shlo/legacy/src/storage.h" #include "tensorflow/lite...
#include <initializer_list> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorflow/lite/experimental/shlo/legacy/include/shlo.h" #include "tensorflow/lite/experimental/shlo/legacy/src/debug.h" #include "tensorflow/lite/experimental/shlo/legacy/src/storage.h" #inclu...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/experimental/shlo/legacy/src/clamp.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/experimental/shlo/legacy/test/clamp_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
d760ed97-1225-41c7-86ae-6346991c7cf1
cpp
tensorflow/tensorflow
validator
tensorflow/lite/experimental/acceleration/mini_benchmark/validator.cc
tensorflow/lite/experimental/acceleration/mini_benchmark/validator_test.cc
#include "tensorflow/lite/experimental/acceleration/mini_benchmark/validator.h" #include <stdint.h> #include <string.h> #include <time.h> #include <unistd.h> #include <functional> #include <map> #include <memory> #include <string> #include <utility> #include <vector> #include "absl/container/flat_hash_set.h" #include "...
#include "tensorflow/lite/experimental/acceleration/mini_benchmark/validator.h" #include <iostream> #include <map> #include <memory> #include <string> #include <utility> #include <vector> #include <gtest/gtest.h> #include "flatbuffers/flatbuffers.h" #if FLATBUFFERS_LITTLEENDIAN == 0 #include "tensorflow/lite/core/mod...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/experimental/acceleration/mini_benchmark/validator.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/experimental/acceleration/mini_benchmark/validator_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
ab1f52e5-859f-4781-a52a-c1677ca42465
cpp
tensorflow/tensorflow
parallel_map_dataset_op
tensorflow/core/kernels/data/parallel_map_dataset_op.cc
tensorflow/core/kernels/data/parallel_map_dataset_op_test.cc
#include "tensorflow/core/kernels/data/parallel_map_dataset_op.h" #include <cstddef> #include <deque> #include <functional> #include <limits> #include <memory> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/base/call_once.h" #include "absl/status/status.h" #include "absl/strin...
#include "tensorflow/core/kernels/data/parallel_map_dataset_op.h" #include <gtest/gtest.h> #include "xla/tsl/lib/core/status_test_util.h" #include "tensorflow/core/data/dataset_test_base.h" #include "tensorflow/core/data/name_utils.h" #include "tensorflow/core/framework/tensor_shape.h" namespace tensorflow { namespace ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/data/parallel_map_dataset_op.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/data/parallel_map_dataset_op_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
1da53164-e7c9-403c-8625-eaec6fdf5874
cpp
tensorflow/tensorflow
wav_to_spectrogram
tensorflow/examples/wav_to_spectrogram/wav_to_spectrogram.cc
tensorflow/examples/wav_to_spectrogram/wav_to_spectrogram_test.cc
#include "tensorflow/examples/wav_to_spectrogram/wav_to_spectrogram.h" #include <vector> #include "tensorflow/cc/ops/audio_ops.h" #include "tensorflow/cc/ops/const_op.h" #include "tensorflow/cc/ops/image_ops.h" #include "tensorflow/cc/ops/standard_ops.h" #include "tensorflow/core/framework/graph.pb.h" #include "tensorf...
#include "tensorflow/examples/wav_to_spectrogram/wav_to_spectrogram.h" #include "tensorflow/core/lib/core/status_test_util.h" #include "tensorflow/core/lib/io/path.h" #include "tensorflow/core/lib/wav/wav_io.h" #include "tensorflow/core/platform/env.h" #include "tensorflow/core/platform/test.h" TEST(WavToSpectrogramTes...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/examples/wav_to_spectrogram/wav_to_spectrogram.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/examples/wav_to_spectrogram/wav_to_spectrogram_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
52916fe4-bde7-4bfd-a579-9931b007d93f
cpp
tensorflow/tensorflow
math
third_party/xla/xla/hlo/builder/lib/math.cc
third_party/xla/xla/hlo/builder/lib/math_test.cc
#include "xla/hlo/builder/lib/math.h" #include <algorithm> #include <array> #include <cmath> #include <functional> #include <limits> #include <vector> #include "absl/algorithm/container.h" #include "absl/log/log.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/string_view.h" #...
#include "xla/hlo/builder/lib/math.h" #include <cmath> #include <complex> #include <functional> #include <limits> #include <memory> #include <string> #include <utility> #include <vector> #include <gtest/gtest.h> #include "xla/array3d.h" #include "xla/error_spec.h" #include "xla/hlo/builder/lib/constants.h" #include "xl...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/builder/lib/math.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/builder/lib/math_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
5ac1b344-4708-4ddf-93cf-5d8ed5df8d87
cpp
tensorflow/tensorflow
reader
tensorflow/cc/saved_model/reader.cc
tensorflow/cc/saved_model/reader_test.cc
#include "tensorflow/cc/saved_model/reader.h" #include <memory> #include <string> #include <unordered_set> #include <utility> #include "absl/memory/memory.h" #include "absl/status/statusor.h" #include "tensorflow/cc/saved_model/constants.h" #include "tensorflow/cc/saved_model/metrics.h" #include "tensorflow/cc/saved_mo...
#include "tensorflow/cc/saved_model/reader.h" #include <gmock/gmock.h> #include "tensorflow/cc/saved_model/constants.h" #include "tensorflow/cc/saved_model/metrics.h" #include "tensorflow/cc/saved_model/tag_constants.h" #include "tensorflow/core/lib/core/status.h" #include "tensorflow/core/lib/core/status_test_util.h" ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/cc/saved_model/reader.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/cc/saved_model/reader_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
60b3f1ce-5ea1-464a-9c6d-070957e277da
cpp
tensorflow/tensorflow
hlo_bisect_state
third_party/xla/xla/tools/hlo_bisect/hlo_bisect_state.cc
third_party/xla/xla/tools/hlo_bisect/hlo_bisect_state_test.cc
#include "xla/tools/hlo_bisect/hlo_bisect_state.h" #include <iterator> #include <memory> #include <string> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/container/flat_hash_map.h" #include "absl/types/span.h" #include "xla/hlo/ir/hlo_computation.h" #include "xla/hlo/ir/hlo_in...
#include "xla/tools/hlo_bisect/hlo_bisect_state.h" #include <initializer_list> #include <string> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/status/statusor.h" #include "xla/hlo/ir/hlo_module.h" #include "xla/hlo/ir/hlo_opcode.h" #include "xla/literal.h" #include "xla/servi...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tools/hlo_bisect/hlo_bisect_state.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tools/hlo_bisect/hlo_bisect_state_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
01655d2e-ef4c-487f-b26b-7a6ff14cd974
cpp
tensorflow/tensorflow
hlo_expand
third_party/xla/xla/tools/hlo_expand.cc
third_party/xla/xla/tools/tests/hlo_expand_test.cc
#include "xla/tools/hlo_expand.h" #include <vector> #include "xla/hlo/pass/hlo_pass_pipeline.h" #include "xla/service/batchnorm_expander.h" #include "xla/service/cholesky_expander.h" #include "xla/service/hlo.pb.h" #include "xla/service/hlo_verifier.h" #include "xla/service/rng_bit_generator_expander.h" #include "xla/s...
#include <string> #include <vector> #include <gmock/gmock.h> #include "tsl/platform/path.h" #include "tsl/platform/subprocess.h" #include "tsl/platform/test.h" namespace xla { namespace { class HloExpandTest : public ::testing::Test { protected: void HloOpt(std::vector<std::string>& additional_flags) { std::stri...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tools/hlo_expand.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tools/tests/hlo_expand_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
079d69b0-65c5-4dbf-b05a-cfe05100b0de
cpp
tensorflow/tensorflow
stable_delegate_plugin
tensorflow/lite/acceleration/configuration/stable_delegate_plugin.cc
tensorflow/lite/acceleration/configuration/stable_delegate_plugin_test.cc
#include "tensorflow/lite/acceleration/configuration/stable_delegate_plugin.h" namespace tflite { namespace delegates { TFLITE_REGISTER_DELEGATE_FACTORY_FUNCTION(StableDelegatePlugin, StableDelegatePlugin::New); } }
#include <memory> #include <gtest/gtest.h> #include "pthreadpool.h" #include "tensorflow/lite/acceleration/configuration/configuration_generated.h" #include "tensorflow/lite/core/acceleration/configuration/delegate_registry.h" #include "tensorflow/lite/delegates/xnnpack/xnnpack_delegate.h" namespace tflite { class St...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/acceleration/configuration/stable_delegate_plugin.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/acceleration/configuration/stable_delegate_plugin_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
c396709c-ef47-4f4e-8cf4-224ba0257c00
cpp
tensorflow/tensorflow
composite_device
tensorflow/core/common_runtime/composite_device.cc
tensorflow/core/common_runtime/composite_device_test.cc
#include "tensorflow/core/common_runtime/composite_device.h" #include "absl/strings/str_join.h" #include "tensorflow/core/util/device_name_utils.h" namespace tensorflow { const char* const kCompositeDeviceType = "COMPOSITE"; std::unique_ptr<CompositeDevice> CompositeDevice::MakeDevice( const std::vector<string>& un...
#include "tensorflow/core/common_runtime/composite_device.h" #include "tensorflow/core/lib/core/status_test_util.h" namespace tensorflow { TEST(CompositeDeviceTest, Basic) { const string host_name = "/job:localhost/replica:0/task:0/device:CPU:0"; DeviceNameUtils::ParsedName parsed_host_name; EXPECT_TRUE(DeviceNam...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/common_runtime/composite_device.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/common_runtime/composite_device_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
53602328-c7cf-4c6d-8ee9-b9779b3bed8b
cpp
tensorflow/tensorflow
ar_crs_combiner
third_party/xla/xla/service/ar_crs_combiner.cc
third_party/xla/xla/service/ar_crs_combiner_test.cc
#include "xla/service/ar_crs_combiner.h" #include <algorithm> #include <cstdint> #include <optional> #include <utility> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/container/flat_hash_set.h" #include "absl/log/check.h" #include "absl/log/log.h" #include "absl/status/status.h" #include "ab...
#include "xla/service/ar_crs_combiner.h" #include <cstdint> #include <memory> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/statusor.h" #include "absl/types/span.h" #include "xla/hlo/ir/hlo_module.h" #include "xla/hlo/utils/hlo_matchers.h" #include "xla/tests/hlo_test_base.h"...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/ar_crs_combiner.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/ar_crs_combiner_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
ff6e614c-d7f4-4756-bc9e-cd60d9819967
cpp
tensorflow/tensorflow
data_transfer
tensorflow/core/data/service/data_transfer.cc
tensorflow/core/data/service/data_transfer_test.cc
#include "tensorflow/core/data/service/data_transfer.h" #include <functional> #include <memory> #include <string> #include <unordered_map> #include <vector> #include "absl/strings/str_join.h" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/framework/types.pb.h" #include "tensorflow/core/framewor...
#include "tensorflow/core/data/service/data_transfer.h" #include <memory> #include <string> #include <utility> #include <vector> #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/framework/tensor_shape.h" #include "tensorflow/core/framework/tensor_testutil.h" #include "tensorflow/core/framework/ty...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/data/service/data_transfer.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/data/service/data_transfer_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
fca111e8-154f-4c10-bf20-b92bba5d67bb
cpp
google/arolla
while_loop_impl
arolla/expr/operators/while_loop/while_loop_impl.cc
arolla/expr/operators/while_loop/while_loop_impl_test.cc
#include "arolla/expr/operators/while_loop/while_loop_impl.h" #include <algorithm> #include <functional> #include <string> #include <utility> #include <vector> #include "absl/log/check.h" #include "absl/status/statusor.h" #include "absl/types/span.h" #include "arolla/expr/expr.h" #include "arolla/expr/expr_node.h" #inc...
#include "arolla/expr/operators/while_loop/while_loop_impl.h" #include <cstdint> #include <string> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/container/flat_hash_map.h" #include "absl/status/status_matchers.h" #include "absl/strings/str_format.h" #include "arolla/expr/expr.h" #include "arolla/expr...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/expr/operators/while_loop/while_loop_impl.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/expr/operators/while_loop/while_loop_impl_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
8e9734e8-2cbe-4ac0-bf10-2ea388d9cbf8
cpp
tensorflow/tensorflow
gather_nd
tensorflow/lite/kernels/gather_nd.cc
tensorflow/lite/kernels/gather_nd_test.cc
#include <stdint.h> #include "tensorflow/lite/core/c/c_api_types.h" #include "tensorflow/lite/core/c/common.h" #include "tensorflow/lite/kernels/internal/optimized/optimized_ops.h" #include "tensorflow/lite/kernels/internal/reference/reference_ops.h" #include "tensorflow/lite/kernels/internal/tensor.h" #include "tensor...
#include <stdint.h> #include <initializer_list> #include <string> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "flatbuffers/flatbuffers.h" #include "tensorflow/lite/kernels/test_util.h" #include "tensorflow/lite/schema/schema_generated.h" #include "tensorflow/lite/string_type.h" namesp...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/kernels/gather_nd.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/kernels/gather_nd_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
e580d97c-eae2-4a33-ad5b-e764f270b769
cpp
abseil/abseil-cpp
raw_logging
absl/base/internal/raw_logging.cc
absl/base/raw_logging_test.cc
#include "absl/base/internal/raw_logging.h" #include <cstdarg> #include <cstddef> #include <cstdio> #include <cstdlib> #include <cstring> #include <string> #ifdef __EMSCRIPTEN__ #include <emscripten/console.h> #endif #include "absl/base/attributes.h" #include "absl/base/config.h" #include "absl/base/internal/atomic_hoo...
#include "absl/base/internal/raw_logging.h" #include <tuple> #include "gtest/gtest.h" #include "absl/strings/str_cat.h" namespace { TEST(RawLoggingCompilationTest, Log) { ABSL_RAW_LOG(INFO, "RAW INFO: %d", 1); ABSL_RAW_LOG(INFO, "RAW INFO: %d %d", 1, 2); ABSL_RAW_LOG(INFO, "RAW INFO: %d %d %d", 1, 2, 3); ABSL_R...
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/base/internal/raw_logging.cc
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/base/raw_logging_test.cc
03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4
18f87e2e-9b1a-444a-9ef9-eca87df828f3
cpp
google/tensorstore
stop_token
tensorstore/util/stop_token.h
tensorstore/util/stop_token_test.cc
#ifndef TENSORSTORE_UTIL_STOP_TOKEN_H_ #define TENSORSTORE_UTIL_STOP_TOKEN_H_ #include <atomic> #include <cstddef> #include <type_traits> #include <utility> #include "absl/base/attributes.h" #include "tensorstore/internal/intrusive_ptr.h" #include "tensorstore/util/stop_token_impl.h" namespace tensorstore { class StopS...
#include "tensorstore/util/stop_token.h" #include <functional> #include <optional> #include <utility> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorstore/internal/testing/concurrent.h" namespace { TEST(StopTokenTest, Invariants) { tensorstore::StopSource source; EXPECT_TRUE(source.stop_possible(...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/stop_token.h
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/util/stop_token_test.cc
4f887a6430414cd6088e1743555015b10f116d50
1c5201c2-01d4-4a96-b235-4a452e3fa598
cpp
tensorflow/tensorflow
semantic_version
third_party/xla/xla/stream_executor/semantic_version.cc
third_party/xla/xla/stream_executor/semantic_version_test.cc
#include "xla/stream_executor/semantic_version.h" #include <string> #include <vector> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/numbers.h" #include "absl/strings/str_format.h" #include "absl/strings/str_split.h" #include "absl/strings/string_view.h" #include "tsl/platform/...
#include "xla/stream_executor/semantic_version.h" #include <algorithm> #include <array> #include <sstream> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/hash/hash_testing.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/strings/stri...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/stream_executor/semantic_version.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/stream_executor/semantic_version_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
8ff2a112-c796-41ea-bcf0-13b123b8378b
cpp
tensorflow/tensorflow
device_name_utils
third_party/xla/xla/tsl/util/device_name_utils.cc
third_party/xla/xla/tsl/util/device_name_utils_test.cc
#include "xla/tsl/util/device_name_utils.h" #include <algorithm> #include "tsl/platform/errors.h" namespace tsl { static bool IsAlpha(char c) { return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'); } static bool IsAlphaNumOrUnderscore(char c) { return IsAlpha(c) || (c >= '0' && c <= '9') || c == '_'; } static bo...
#include "xla/tsl/util/device_name_utils.h" #include <vector> #include "xla/tsl/lib/core/status_test_util.h" #include "tsl/platform/errors.h" #include "tsl/platform/strcat.h" #include "tsl/platform/test.h" #include "tsl/platform/test_benchmark.h" namespace tsl { namespace { bool RoundTripParsedName(const string& origin...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/util/device_name_utils.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/util/device_name_utils_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
2cd5293f-5da0-4198-a703-16efdd40591a
cpp
tensorflow/tensorflow
collective_permute_motion
third_party/xla/xla/service/spmd/collective_permute_motion.cc
third_party/xla/xla/service/spmd/collective_permute_motion_test.cc
#include "xla/service/spmd/collective_permute_motion.h" #include <cstdint> #include <deque> #include <optional> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/container/flat_hash_map.h" #include "absl/container/flat_hash_set.h" #include "absl/log/check.h" #include "absl/log/lo...
#include "xla/service/spmd/collective_permute_motion.h" #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/log/log.h" #include "absl/strings/string_view.h" #include "xla/hlo/ir/hlo_instruction.h" #include "xla/hlo/utils/hlo_matchers.h" #include "xla/tests/hlo_test_base.h" #include "xla/xla_data.pb.h" name...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/spmd/collective_permute_motion.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/spmd/collective_permute_motion_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
ed71d17b-19eb-4298-88f0-ac7a9381d1f5
cpp
abseil/abseil-cpp
str_split
absl/strings/str_split.cc
absl/strings/str_split_test.cc
#include "absl/strings/str_split.h" #include <algorithm> #include <cstddef> #include <cstdlib> #include <cstring> #include "absl/base/config.h" #include "absl/base/internal/raw_logging.h" #include "absl/strings/string_view.h" namespace absl { ABSL_NAMESPACE_BEGIN namespace { template <typename FindPolicy> absl::string_...
#include "absl/strings/str_split.h" #include <cstddef> #include <cstdint> #include <deque> #include <initializer_list> #include <list> #include <map> #include <memory> #include <set> #include <string> #include <unordered_map> #include <unordered_set> #include <utility> #include <vector> #include "gmock/gmock.h" #includ...
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/strings/str_split.cc
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/strings/str_split_test.cc
03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4
22062a52-3ab1-495e-b0d6-3265e90401e0
cpp
abseil/abseil-cpp
memutil
absl/strings/internal/memutil.cc
absl/strings/internal/memutil_test.cc
#include "absl/strings/internal/memutil.h" #include <cstdlib> #include "absl/strings/ascii.h" namespace absl { ABSL_NAMESPACE_BEGIN namespace strings_internal { int memcasecmp(const char* s1, const char* s2, size_t len) { const unsigned char* us1 = reinterpret_cast<const unsigned char*>(s1); const unsigned char* us...
#include "absl/strings/internal/memutil.h" #include <cstdlib> #include "gtest/gtest.h" namespace { TEST(MemUtil, memcasecmp) { const char a[] = "hello there"; EXPECT_EQ(absl::strings_internal::memcasecmp(a, "heLLO there", sizeof("hello there") - 1), 0); E...
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/strings/internal/memutil.cc
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/strings/internal/memutil_test.cc
03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4
fcc9cb62-4002-4ced-aa88-1c3431b4b183
cpp
tensorflow/tensorflow
unbounded_thread_pool
tensorflow/core/data/unbounded_thread_pool.cc
tensorflow/core/data/unbounded_thread_pool_test.cc
#include "tensorflow/core/data/unbounded_thread_pool.h" #include <functional> #include <memory> #include <utility> #include "absl/memory/memory.h" #include "tensorflow/core/framework/dataset.h" #include "tensorflow/core/lib/core/notification.h" #include "tensorflow/core/platform/env.h" #include "tensorflow/core/platfor...
#include "tensorflow/core/data/unbounded_thread_pool.h" #include <atomic> #include <memory> #include <vector> #include "tensorflow/core/lib/random/random.h" #include "tensorflow/core/platform/blocking_counter.h" #include "tensorflow/core/platform/test.h" namespace tensorflow { namespace data { namespace { TEST(Unbounde...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/data/unbounded_thread_pool.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/data/unbounded_thread_pool_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
3bb57b45-0742-480e-8a24-200b67ed49fa
cpp
tensorflow/tensorflow
hlo_element_type_converter
third_party/xla/xla/service/hlo_element_type_converter.cc
third_party/xla/xla/service/hlo_element_type_converter_test.cc
#include "xla/service/hlo_element_type_converter.h" #include <memory> #include <string> #include <utility> #include <vector> #include "xla/hlo/evaluator/hlo_evaluator.h" #include "xla/hlo/ir/dfs_hlo_visitor_with_default.h" #include "xla/hlo/ir/hlo_computation.h" #include "xla/hlo/ir/hlo_instruction.h" #include "xla/hlo...
#include "xla/service/hlo_element_type_converter.h" #include "xla/hlo/utils/hlo_matchers.h" #include "xla/tests/hlo_test_base.h" namespace xla { namespace { namespace op = xla::testing::opcode_matchers; using ::testing::Contains; using ::testing::ElementsAre; using ::testing::Eq; using ::testing::Not; using ::testing::...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/hlo_element_type_converter.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/hlo_element_type_converter_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
59953132-5105-4aa4-93e8-9e703673d57a
cpp
tensorflow/tensorflow
flat_map_dataset_op
tensorflow/core/kernels/data/flat_map_dataset_op.cc
tensorflow/core/kernels/data/flat_map_dataset_op_test.cc
#include "tensorflow/core/kernels/data/flat_map_dataset_op.h" #include <algorithm> #include <cstdint> #include <cstdlib> #include <string> #include <utility> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "tensorflow/core/common_runtime/function.h" #include ...
#include "tensorflow/core/kernels/data/flat_map_dataset_op.h" #include "tensorflow/core/data/dataset_test_base.h" namespace tensorflow { namespace data { namespace { constexpr char kNodeName[] = "flat_map_dataset"; class FlatMapDatasetParams : public DatasetParams { public: template <typename T> FlatMapDatasetPara...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/data/flat_map_dataset_op.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/data/flat_map_dataset_op_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
2f0470b6-f9db-44fe-a6aa-ed8d231c295a
cpp
tensorflow/tensorflow
validate
tensorflow/core/graph/validate.cc
tensorflow/core/graph/validate_test.cc
#include "tensorflow/core/graph/validate.h" #include "absl/container/flat_hash_set.h" #include "absl/strings/string_view.h" #include "tensorflow/core/framework/graph_def_util.h" #include "tensorflow/core/framework/node_def.pb.h" #include "tensorflow/core/framework/node_def_util.h" #include "tensorflow/core/framework/op...
#include "tensorflow/core/graph/validate.h" #include <string> #include "tensorflow/core/common_runtime/graph_constructor.h" #include "tensorflow/core/framework/graph.pb.h" #include "tensorflow/core/framework/graph_def_util.h" #include "tensorflow/core/framework/op_def_builder.h" #include "tensorflow/core/graph/graph.h"...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/graph/validate.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/graph/validate_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
4df1949d-aa72-4d9a-8547-771218cf3f33
cpp
google/cel-cpp
resolver
eval/compiler/resolver.cc
eval/compiler/resolver_test.cc
#include "eval/compiler/resolver.h" #include <cstdint> #include <memory> #include <string> #include <utility> #include <vector> #include "absl/base/nullability.h" #include "absl/container/flat_hash_map.h" #include "absl/status/statusor.h" #include "absl/strings/match.h" #include "absl/strings/str_cat.h" #include "absl/...
#include "eval/compiler/resolver.h" #include <memory> #include <string> #include <vector> #include "absl/status/status.h" #include "absl/types/optional.h" #include "base/type_provider.h" #include "common/memory.h" #include "common/type_factory.h" #include "common/type_manager.h" #include "common/value.h" #include "comm...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/compiler/resolver.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/eval/compiler/resolver_test.cc
4552db5798fb0853b131b783d8875794334fae7f
9f47e9a6-3306-4f59-a171-c8655f57841a
cpp
tensorflow/tensorflow
exponential_minus_one
tensorflow/lite/experimental/shlo/ops/exponential_minus_one.cc
tensorflow/lite/experimental/shlo/ops/exponential_minus_one_test.cc
#include "tensorflow/lite/experimental/shlo/ops/exponential_minus_one.h" #include <cmath> #include "absl/status/status.h" #include "tensorflow/lite/experimental/shlo/bf16.h" #include "tensorflow/lite/experimental/shlo/dispatch.h" #include "tensorflow/lite/experimental/shlo/f16.h" #include "tensorflow/lite/experimental/...
#include "tensorflow/lite/experimental/shlo/ops/exponential_minus_one.h" #include <cmath> #include <string> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorflow/lite/experimental/shlo/bf16.h" #include "tensorflow/lite/experimental/shlo/f16.h" #include "tensorflow/lite/experimental/shlo/ops/test_util.h...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/experimental/shlo/ops/exponential_minus_one.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/experimental/shlo/ops/exponential_minus_one_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
535afe38-1169-49f7-af7c-0d9f4af30529
cpp
google/quiche
chacha20_poly1305_decrypter
quiche/quic/core/crypto/chacha20_poly1305_decrypter.cc
quiche/quic/core/crypto/chacha20_poly1305_decrypter_test.cc
#include "quiche/quic/core/crypto/chacha20_poly1305_decrypter.h" #include "openssl/aead.h" #include "openssl/tls1.h" namespace quic { namespace { const size_t kKeySize = 32; const size_t kNonceSize = 12; } ChaCha20Poly1305Decrypter::ChaCha20Poly1305Decrypter() : ChaChaBaseDecrypter(EVP_aead_chacha20_poly1305, kKe...
#include "quiche/quic/core/crypto/chacha20_poly1305_decrypter.h" #include <memory> #include <string> #include "absl/strings/escaping.h" #include "absl/strings/string_view.h" #include "quiche/quic/core/quic_utils.h" #include "quiche/quic/platform/api/quic_test.h" #include "quiche/quic/test_tools/quic_test_utils.h" #incl...
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/core/crypto/chacha20_poly1305_decrypter.cc
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/core/crypto/chacha20_poly1305_decrypter_test.cc
6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6
13bd3235-e3de-4413-be34-c4c9024651b4
cpp
google/libaddressinput
address_problem
cpp/src/address_problem.cc
cpp/test/address_problem_test.cc
#include <libaddressinput/address_problem.h> #include <cstddef> #include <ostream> #include "util/size.h" using i18n::addressinput::AddressProblem; using i18n::addressinput::size; using i18n::addressinput::UNEXPECTED_FIELD; using i18n::addressinput::UNSUPPORTED_FIELD; std::ostream& operator<<(std::ostream& o, AddressPr...
#include <libaddressinput/address_problem.h> #include <sstream> #include <gtest/gtest.h> namespace { using i18n::addressinput::UNKNOWN_VALUE; TEST(AddressProblemTest, ValidEnumValue) { std::ostringstream oss; oss << UNKNOWN_VALUE; EXPECT_EQ("UNKNOWN_VALUE", oss.str()); } }
https://github.com/google/libaddressinput/blob/2610f7b1043d6784ada41392fc9392d1ea09ea07/cpp/src/address_problem.cc
https://github.com/google/libaddressinput/blob/2610f7b1043d6784ada41392fc9392d1ea09ea07/cpp/test/address_problem_test.cc
2610f7b1043d6784ada41392fc9392d1ea09ea07
54ac5196-c078-4979-b2bd-62baf3bb4e06
cpp
tensorflow/tensorflow
fake_clock_env
tensorflow/core/util/fake_clock_env.cc
tensorflow/core/util/fake_clock_env_test.cc
#include "tensorflow/core/util/fake_clock_env.h" #include <string> namespace tensorflow { FakeClockEnv::FakeClockEnv(Env* wrapped) : EnvWrapper(wrapped) {} void FakeClockEnv::AdvanceByMicroseconds(int64_t micros) { { mutex_lock l(mu_); current_time_ += micros; } } uint64 FakeClockEnv::NowMicros() const { ...
#include "tensorflow/core/util/fake_clock_env.h" #include <memory> #include <gtest/gtest.h> #include "tensorflow/core/platform/env.h" namespace tensorflow { namespace { class FakeClockEnvTest : public ::testing::Test { protected: void SetUp() override { fake_clock_env_ = std::make_unique<FakeClockEnv>(Env::Defau...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/util/fake_clock_env.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/util/fake_clock_env_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
eef8dca3-7df6-482a-8512-d6ab41154110
cpp
tensorflow/tensorflow
tensor_testutil
tensorflow/core/framework/tensor_testutil.cc
tensorflow/core/framework/tensor_testutil_test.cc
#include "tensorflow/core/framework/tensor_testutil.h" #include <cmath> #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/platform/types.h" namespace tensorflow { namespace test { ::testing::AssertionResult IsSameType(const Tensor& x, const Tensor& y) { if (x.dtype() != y.dtype()) { return :...
#include "tensorflow/core/framework/tensor_testutil.h" #include "tensorflow/core/platform/test.h" namespace tensorflow { namespace test { namespace { using internal_test::IsClose; template <typename T> void TestEdgeCasesNear() { EXPECT_TRUE(IsClose(Eigen::NumTraits<T>::infinity(), Eigen::NumTrai...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/framework/tensor_testutil.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/framework/tensor_testutil_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
5c396182-72ac-466f-b33e-1ce61dd04742
cpp
google/quiche
nghttp2
quiche/http2/adapter/nghttp2.h
quiche/http2/adapter/nghttp2_test.cc
#ifndef QUICHE_HTTP2_ADAPTER_NGHTTP2_H_ #define QUICHE_HTTP2_ADAPTER_NGHTTP2_H_ #include <cstddef> using ssize_t = ptrdiff_t; #include "nghttp2/nghttp2.h" #endif
#include "quiche/http2/adapter/nghttp2.h" #include <string> #include <utility> #include <vector> #include "absl/strings/str_cat.h" #include "quiche/http2/adapter/mock_nghttp2_callbacks.h" #include "quiche/http2/adapter/nghttp2_test_utils.h" #include "quiche/http2/adapter/nghttp2_util.h" #include "quiche/http2/adapter/t...
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/http2/adapter/nghttp2.h
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/http2/adapter/nghttp2_test.cc
6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6
17e0abbc-0854-4ec0-a080-901466566b64
cpp
tensorflow/tensorflow
snapshot_manager
tensorflow/core/data/service/snapshot/snapshot_manager.cc
tensorflow/core/data/service/snapshot/snapshot_manager_test.cc
#include "tensorflow/core/data/service/snapshot/snapshot_manager.h" #include <algorithm> #include <cstddef> #include <cstdint> #include <memory> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/container/btree_map.h" #include "absl/container...
#include "tensorflow/core/data/service/snapshot/snapshot_manager.h" #include <memory> #include <string> #include "xla/tsl/lib/core/status_test_util.h" #include "xla/tsl/protobuf/status.pb.h" #include "tensorflow/core/data/service/common.pb.h" #include "tensorflow/core/data/service/dispatcher.pb.h" #include "tensorflow/...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/data/service/snapshot/snapshot_manager.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/data/service/snapshot/snapshot_manager_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
6fdff665-ed54-4a1b-8aa2-c0280a997a05
cpp
tensorflow/tensorflow
tf_threadpool_concurrent_work_queue
tensorflow/core/tfrt/runtime/tf_threadpool_concurrent_work_queue.cc
tensorflow/core/tfrt/runtime/tf_threadpool_concurrent_work_queue_test.cc
#include "tensorflow/core/tfrt/runtime/tf_threadpool_concurrent_work_queue.h" #include <memory> #include <optional> #include <utility> #include "tensorflow/core/platform/errors.h" #include "tensorflow/core/platform/status.h" #include "tensorflow/core/platform/threadpool.h" #include "tensorflow/core/platform/threadpool_...
#include "tensorflow/core/tfrt/runtime/tf_threadpool_concurrent_work_queue.h" #include <memory> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorflow/core/lib/core/status_test_util.h" #include "tensorflow/core/platform/errors.h" #include "tensorflow/core/platform/status_matchers.h" #include "tensorflow...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/tfrt/runtime/tf_threadpool_concurrent_work_queue.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/tfrt/runtime/tf_threadpool_concurrent_work_queue_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
0ceab836-2f6f-4d6c-85b5-579dbed57ba0
cpp
tensorflow/tensorflow
dot_dimension_merger
third_party/xla/xla/service/dot_dimension_merger.cc
third_party/xla/xla/service/dot_dimension_merger_test.cc
#include "xla/service/dot_dimension_merger.h" #include <cstdint> #include <memory> #include <utility> #include <vector> #include "absl/algorithm/container.h" #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/...
#include "xla/service/dot_dimension_merger.h" #include <memory> #include <string> #include <gtest/gtest.h> #include "xla/service/hlo_parser.h" #include "xla/tests/hlo_test_base.h" #include "tsl/platform/statusor.h" namespace xla { namespace { using DotDimensionMergerTest = HloTestBase; TEST_F(DotDimensionMergerTest, Me...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/dot_dimension_merger.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/dot_dimension_merger_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
974b7765-e143-439c-bdc2-2ea618027569
cpp
tensorflow/tensorflow
cache
third_party/xla/xla/tsl/lib/io/cache.cc
third_party/xla/xla/tsl/lib/io/cache_test.cc
#include "xla/tsl/lib/io/cache.h" #include <assert.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "tsl/platform/mutex.h" #include "tsl/platform/raw_coding.h" namespace tsl { namespace table { Cache::~Cache() {} namespace { struct LRUHandle { void* value; void (*deleter)(const Slice&, void* v...
#include "xla/tsl/lib/io/cache.h" #include <string> #include <vector> #include "tsl/platform/coding.h" #include "tsl/platform/raw_coding.h" #include "tsl/platform/test.h" namespace tsl { namespace table { static std::string EncodeKey(int k) { std::string result; core::PutFixed32(&result, k); return result; } stat...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/io/cache.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/io/cache_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
0f77a7a9-b07e-42da-9f2a-f6b620f364f6
cpp
google/arolla
frame
arolla/memory/frame.cc
arolla/memory/frame_test.cc
#include "arolla/memory/frame.h" #include <algorithm> #include <cstddef> #include <cstring> #include <tuple> #include <typeindex> #include <typeinfo> #include <utility> #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/strings/str_cat.h" #include "arolla/util/algorithms.h" #include "arolla/util...
#include "arolla/memory/frame.h" #include <array> #include <cstddef> #include <cstdint> #include <memory> #include <sstream> #include <string> #include <type_traits> #include <utility> #include <variant> #include <vector> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/base/dynamic_annotations.h" #incl...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/memory/frame.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/memory/frame_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
93ddf3a3-54f7-4d52-9e60-c7a46d275e27
cpp
google/tensorstore
codec_chain_spec
tensorstore/driver/zarr3/codec/codec_chain_spec.cc
tensorstore/driver/zarr3/codec/codec_chain_spec_test.cc
#include "tensorstore/driver/zarr3/codec/codec_chain_spec.h" #include <stddef.h> #include <cassert> #include <optional> #include <string> #include <string_view> #include <type_traits> #include <utility> #include <vector> #include "absl/container/fixed_array.h" #include "absl/status/status.h" #include "absl/strings/str_...
#include "tensorstore/driver/zarr3/codec/codec_chain_spec.h" #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "tensorstore/codec_spec.h" #include "tensorstore/driver/zarr3/codec/codec_test_util.h" #include "tensorstore/internal/json_gtest.h" #include "tensorstore/util/status_te...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/driver/zarr3/codec/codec_chain_spec.cc
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/driver/zarr3/codec/codec_chain_spec_test.cc
4f887a6430414cd6088e1743555015b10f116d50
b0a5d668-8561-4789-820f-0d628bfa1730
cpp
tensorflow/tensorflow
journal
tensorflow/core/data/service/journal.cc
tensorflow/core/data/service/journal_test.cc
#include "tensorflow/core/data/service/journal.h" #include <algorithm> #include <memory> #include <string> #include <vector> #include "absl/memory/memory.h" #include "absl/status/status.h" #include "tensorflow/core/data/service/journal.pb.h" #include "tensorflow/core/lib/io/record_reader.h" #include "tensorflow/core/li...
#include "tensorflow/core/data/service/journal.h" #include <memory> #include <string> #include <vector> #include "absl/memory/memory.h" #include "absl/status/status.h" #include "tensorflow/core/data/service/common.pb.h" #include "tensorflow/core/data/service/journal.pb.h" #include "tensorflow/core/lib/core/status_test_...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/data/service/journal.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/data/service/journal_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
9023f77c-6d2f-4bb9-b69d-4e2e666b234d
cpp
tensorflow/tensorflow
stream
tensorflow/core/tfrt/runtime/stream.cc
tensorflow/core/tfrt/runtime/stream_test.cc
#include "tensorflow/core/tfrt/runtime/stream.h" #include <cstdint> #include <memory> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/base/thread_annotations.h" #include "absl/container/flat_hash_map.h" #include "absl/functional/any_invocable.h" #include "absl/log/check.h" #inc...
#include "tensorflow/core/tfrt/runtime/stream.h" #include <cstdint> #include <functional> #include <memory> #include <string> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/container/flat_hash_map.h" #include "absl/log/check.h" #include "absl/log/log.h" #include "a...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/tfrt/runtime/stream.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/tfrt/runtime/stream_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
748cb136-f55b-4f82-b4cb-af329ea655c6
cpp
tensorflow/tensorflow
sharding_propagation
third_party/xla/xla/service/sharding_propagation.cc
third_party/xla/xla/service/sharding_propagation_test.cc
#include "xla/service/sharding_propagation.h" #include <algorithm> #include <cstdint> #include <functional> #include <iterator> #include <list> #include <map> #include <memory> #include <optional> #include <string> #include <tuple> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "abs...
#include "xla/service/sharding_propagation.h" #include <ostream> #include <string> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/log/check.h" #include "absl/log/log.h" #include "absl/strings/str_cat.h" #include "absl/strings/str_join.h" #include "absl/strings/stri...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/sharding_propagation.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/sharding_propagation_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
4a0d1112-f66c-4f43-aa09-131a59dde473
cpp
tensorflow/tensorflow
save
tensorflow/cc/experimental/libexport/save.cc
tensorflow/cc/experimental/libexport/save_test.cc
#include "tensorflow/cc/experimental/libexport/save.h" #include "tensorflow/core/platform/env.h" namespace tensorflow { namespace libexport { Status Save(const std::string& export_dir) { TF_RETURN_IF_ERROR(Env::Default()->RecursivelyCreateDir(export_dir)); return absl::OkStatus(); } } }
#include "tensorflow/cc/experimental/libexport/save.h" #include "tensorflow/core/lib/core/status_test_util.h" #include "tensorflow/core/platform/env.h" #include "tensorflow/core/platform/path.h" #include "tensorflow/core/platform/test.h" namespace tensorflow { namespace libexport { namespace { TEST(SaveTest, TestDirect...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/cc/experimental/libexport/save.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/cc/experimental/libexport/save_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
10b07a94-816f-47d6-ab5a-942410b3ce6e
cpp
tensorflow/tensorflow
fuse_auto_input
tensorflow/lite/delegates/gpu/gl/compiler/fuse_auto_input.cc
tensorflow/lite/delegates/gpu/gl/compiler/fuse_auto_input_test.cc
#include "tensorflow/lite/delegates/gpu/gl/compiler/fuse_auto_input.h" #include <any> #include <string> #include <vector> #include "absl/container/flat_hash_set.h" #include "absl/strings/str_cat.h" #include "absl/strings/str_replace.h" #include "absl/types/any.h" #include "tensorflow/lite/delegates/gpu/common/model.h" ...
#include "tensorflow/lite/delegates/gpu/gl/compiler/fuse_auto_input.h" #include <utility> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/types/any.h" #include "tensorflow/lite/delegates/gpu/common/model.h" #include "tensorflow/lite/delegates/gpu/common/model_transformer.h" #include "tensorflow/lite/de...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/delegates/gpu/gl/compiler/fuse_auto_input.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/delegates/gpu/gl/compiler/fuse_auto_input_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
2e05ec21-ce2b-4ad2-803e-f2288754db8c
cpp
google/arolla
backend_operator
arolla/expr/operator_loader/backend_operator.cc
arolla/expr/operator_loader/backend_operator_test.cc
#include "arolla/expr/operator_loader/backend_operator.h" #include <memory> #include <set> #include <string> #include <utility> #include <vector> #include "absl/container/flat_hash_set.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_join.h" #include "absl/strings/string_v...
#include "arolla/expr/operator_loader/backend_operator.h" #include <memory> #include <optional> #include <utility> #include <vector> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/status/status.h" #include "absl/status/status_matchers.h" #include "absl/status/statusor.h" #include "arolla/array/array.h...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/expr/operator_loader/backend_operator.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/expr/operator_loader/backend_operator_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
74a88cec-4e14-40d9-854d-624c46d9da7a
cpp
google/arolla
regex
arolla/qtype/strings/regex.cc
arolla/qtype/strings/regex_test.cc
#include "arolla/qtype/strings/regex.h" #include <memory> #include <string> #include "absl/base/nullability.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #include "arolla/qtype/simple_qtype.h" #include "arolla/util/fingerprin...
#include "arolla/qtype/strings/regex.h" #include <string> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/status/status.h" #include "absl/status/status_matchers.h" #include "arolla/qtype/qtype_traits.h" #include "arolla/qtype/typed_value.h" #include "arolla/util/fingerprint.h" #include "arolla/util/rep...
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/strings/regex.cc
https://github.com/google/arolla/blob/1ca990dbeca224035efdabffecc7f3738df6b52c/arolla/qtype/strings/regex_test.cc
1ca990dbeca224035efdabffecc7f3738df6b52c
16498d21-1d10-4b45-ae7a-9b43a041a5b6
cpp
tensorflow/tensorflow
memory_space_propagation
third_party/xla/xla/service/memory_space_propagation.cc
third_party/xla/xla/service/memory_space_propagation_test.cc
#include "xla/service/memory_space_propagation.h" #include <cstdint> #include "xla/shape.h" #include "xla/shape_util.h" namespace xla { absl::StatusOr<bool> MemorySpacePropagation::Run( HloModule* module, const absl::flat_hash_set<absl::string_view>& execution_threads) { bool modified = false; TF_ASSIGN_OR_...
#include "xla/service/memory_space_propagation.h" #include "xla/service/hlo_parser.h" #include "xla/tests/hlo_test_base.h" #include "xla/tsl/lib/core/status_test_util.h" namespace xla { namespace { class MemorySpacePropagationTest : public HloTestBase { public: MemorySpacePropagationTest() : HloTestBase(), ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/memory_space_propagation.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/memory_space_propagation_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
9cb97eb8-0ab8-44ff-92e5-3ba9b6eeb3a6
cpp
tensorflow/tensorflow
cudnn_vectorize_convolutions
third_party/xla/xla/service/gpu/transforms/cudnn_vectorize_convolutions.cc
third_party/xla/xla/service/gpu/transforms/cudnn_vectorize_convolutions_test.cc
#include "xla/service/gpu/transforms/cudnn_vectorize_convolutions.h" #include <cstdint> #include <optional> #include <string> #include <tuple> #include <vector> #include "absl/algorithm/container.h" #include "absl/container/flat_hash_set.h" #include "absl/container/inlined_vector.h" #include "absl/status/status.h" #inc...
#include "xla/service/gpu/transforms/cudnn_vectorize_convolutions.h" #include <cstdint> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/algorithm/container.h" #include "absl/status/statusor.h" #include "xla/service/call_inliner.h" #include "xla/service/gpu/backend_c...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/transforms/cudnn_vectorize_convolutions.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/transforms/cudnn_vectorize_convolutions_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
376cd3aa-a22b-41e5-b02a-66981383442d
cpp
tensorflow/tensorflow
quantize_nodes
tensorflow/tools/graph_transforms/quantize_nodes.cc
tensorflow/tools/graph_transforms/quantize_nodes_test.cc
#define EIGEN_USE_THREADS #include "tensorflow/core/common_runtime/constant_folding.h" #include "tensorflow/core/common_runtime/graph_constructor.h" #include "tensorflow/core/common_runtime/threadpool_device.h" #include "tensorflow/core/graph/node_builder.h" #include "tensorflow/core/graph/subgraph.h" #include "tensorf...
#define EIGEN_USE_THREADS #include "tensorflow/cc/ops/const_op.h" #include "tensorflow/cc/ops/image_ops.h" #include "tensorflow/cc/ops/nn_ops.h" #include "tensorflow/cc/ops/sendrecv_ops.h" #include "tensorflow/cc/ops/standard_ops.h" #include "tensorflow/core/framework/tensor_testutil.h" #include "tensorflow/core/kernel...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/tools/graph_transforms/quantize_nodes.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/tools/graph_transforms/quantize_nodes_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
2d10528f-a1a6-4888-a5d3-6ca40943cf7b
cpp
google/quiche
quiche_lower_case_string
quiche/common/platform/api/quiche_lower_case_string.h
quiche/common/platform/api/quiche_lower_case_string_test.cc
#ifndef QUICHE_COMMON_PLATFORM_API_QUICHE_LOWER_CASE_STRING_H_ #define QUICHE_COMMON_PLATFORM_API_QUICHE_LOWER_CASE_STRING_H_ #include "quiche_platform_impl/quiche_lower_case_string_impl.h" namespace quiche { using QuicheLowerCaseString = QuicheLowerCaseStringImpl; } #endif
#include "quiche/common/platform/api/quiche_lower_case_string.h" #include "absl/strings/string_view.h" #include "quiche/common/platform/api/quiche_test.h" namespace quiche::test { namespace { TEST(QuicheLowerCaseString, Basic) { QuicheLowerCaseString empty(""); EXPECT_EQ("", empty.get()); QuicheLowerCaseString fr...
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/common/platform/api/quiche_lower_case_string.h
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/common/platform/api/quiche_lower_case_string_test.cc
6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6
476923f3-b0e5-4116-ab25-59dc056d648d
cpp
tensorflow/tensorflow
grpc_dispatcher_impl
tensorflow/core/data/service/grpc_dispatcher_impl.cc
tensorflow/core/data/service/grpc_dispatcher_impl_test.cc
#include "tensorflow/core/data/service/grpc_dispatcher_impl.h" #include "grpcpp/server_context.h" #include "tensorflow/core/data/service/export.pb.h" #include "tensorflow/core/distributed_runtime/rpc/grpc_util.h" #include "tensorflow/core/protobuf/service_config.pb.h" namespace tensorflow { namespace data { using ::grp...
#include "tensorflow/core/data/service/grpc_dispatcher_impl.h" #include <limits> #include <memory> #include <string> #include <utility> #include "grpcpp/channel.h" #include "grpcpp/client_context.h" #include "grpcpp/create_channel.h" #include "grpcpp/security/credentials.h" #include "grpcpp/support/channel_arguments.h"...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/data/service/grpc_dispatcher_impl.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/data/service/grpc_dispatcher_impl_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
145e02f9-e296-4fae-91d2-7cfe3e2ddd1e
cpp
tensorflow/tensorflow
mkl_conv_ops
tensorflow/core/kernels/mkl/mkl_conv_ops.cc
tensorflow/core/kernels/mkl/mkl_conv_ops_test.cc
#ifdef INTEL_MKL #include "tensorflow/core/kernels/mkl/mkl_conv_ops.h" #include <algorithm> #include <map> #include <string> #include <unordered_map> #include "absl/strings/str_join.h" #include "tensorflow/core/kernels/mkl/mkl_kernel_util.h" #include "tensorflow/core/kernels/mkl/mkl_quantized_conv_ops.h" #include "tens...
#include "tensorflow/cc/ops/const_op.h" #include "tensorflow/cc/ops/nn_ops.h" #include "tensorflow/cc/ops/standard_ops.h" #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/co...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/mkl/mkl_conv_ops.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/kernels/mkl/mkl_conv_ops_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
beb94efe-689c-4864-a58d-c462f72b8745
cpp
google/leveldb
filter_block
table/filter_block.cc
table/filter_block_test.cc
#include "table/filter_block.h" #include "leveldb/filter_policy.h" #include "util/coding.h" namespace leveldb { static const size_t kFilterBaseLg = 11; static const size_t kFilterBase = 1 << kFilterBaseLg; FilterBlockBuilder::FilterBlockBuilder(const FilterPolicy* policy) : policy_(policy) {} void FilterBlockBuilde...
#include "table/filter_block.h" #include "gtest/gtest.h" #include "leveldb/filter_policy.h" #include "util/coding.h" #include "util/hash.h" #include "util/logging.h" #include "util/testutil.h" namespace leveldb { class TestHashFilter : public FilterPolicy { public: const char* Name() const override { return "TestHas...
https://github.com/google/leveldb/blob/23e35d792b9154f922b8b575b12596a4d8664c65/table/filter_block.cc
https://github.com/google/leveldb/blob/23e35d792b9154f922b8b575b12596a4d8664c65/table/filter_block_test.cc
23e35d792b9154f922b8b575b12596a4d8664c65
464b7a60-847b-4ac6-bf92-ce88e1c0c36b
cpp
tensorflow/tensorflow
conditional_canonicalizer
third_party/xla/xla/service/conditional_canonicalizer.cc
third_party/xla/xla/service/conditional_canonicalizer_test.cc
#include "xla/service/conditional_canonicalizer.h" #include "xla/hlo/ir/hlo_instruction.h" #include "xla/hlo/ir/hlo_opcode.h" #include "xla/status_macros.h" namespace xla { namespace { absl::Status CanonicalizeNonTupleConditional(HloInstruction* conditional) { TF_RET_CHECK(conditional->opcode() == HloOpcode::kConditi...
#include "xla/service/conditional_canonicalizer.h" #include "xla/hlo/ir/hlo_computation.h" #include "xla/hlo/ir/hlo_instruction.h" #include "xla/hlo/ir/hlo_module.h" #include "xla/hlo/ir/hlo_opcode.h" #include "xla/hlo/utils/hlo_matchers.h" #include "xla/service/hlo_parser.h" #include "xla/shape_util.h" #include "xla/t...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/conditional_canonicalizer.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/conditional_canonicalizer_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
cf805915-470c-4ec5-9114-22bba8f23da3
cpp
tensorflow/tensorflow
io
tensorflow/compiler/mlir/quantization/stablehlo/cc/io.cc
tensorflow/compiler/mlir/quantization/stablehlo/cc/io_test.cc
#include "tensorflow/compiler/mlir/quantization/stablehlo/cc/io.h" #include <string> #include <vector> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_format.h" #include "absl/strings/string_view.h" #include "tsl/platform/env.h" #include "tsl/platform/errors.h" #include "tsl...
#include "tensorflow/compiler/mlir/quantization/stablehlo/cc/io.h" #include <cstdint> #include <fstream> #include <string> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/functional/any_invocable.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strin...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/quantization/stablehlo/cc/io.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/quantization/stablehlo/cc/io_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
7aae7bdd-3782-4a7a-a22a-065ac38df147
cpp
google/quiche
quic_unacked_packet_map
quiche/quic/core/quic_unacked_packet_map.cc
quiche/quic/core/quic_unacked_packet_map_test.cc
#include "quiche/quic/core/quic_unacked_packet_map.h" #include <cstddef> #include <limits> #include <type_traits> #include <utility> #include "absl/container/inlined_vector.h" #include "quiche/quic/core/quic_connection_stats.h" #include "quiche/quic/core/quic_packet_number.h" #include "quiche/quic/core/quic_types.h" #i...
#include "quiche/quic/core/quic_unacked_packet_map.h" #include <cstddef> #include <limits> #include <vector> #include "absl/base/macros.h" #include "quiche/quic/core/frames/quic_stream_frame.h" #include "quiche/quic/core/quic_packet_number.h" #include "quiche/quic/core/quic_transmission_info.h" #include "quiche/quic/co...
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/core/quic_unacked_packet_map.cc
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/core/quic_unacked_packet_map_test.cc
6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6
0a1cf107-125e-40dd-85f7-591c64563636
cpp
tensorflow/tensorflow
python_op_gen_annotator
tensorflow/python/framework/python_op_gen_annotator.cc
tensorflow/python/framework/python_op_gen_annotator_test.cc
#include "tensorflow/python/framework/python_op_gen_annotator.h" #include <cstdint> #include <memory> #include <string> #include <unordered_map> #include <vector> #include "absl/strings/escaping.h" #include "absl/strings/str_format.h" #include "absl/strings/string_view.h" #include "tensorflow/python/framework/kythe_met...
#include "tensorflow/python/framework/python_op_gen_annotator.h" #include <utility> #include "absl/strings/escaping.h" #include "absl/strings/str_format.h" #include "absl/strings/str_split.h" #include "tensorflow/core/platform/protobuf.h" #include "tensorflow/core/platform/test.h" #include "tensorflow/python/framework/...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/python/framework/python_op_gen_annotator.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/python/framework/python_op_gen_annotator_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
70f4d2fa-0102-416a-8f90-3068250b5d23
cpp
google/tensorstore
nditerable_transformed_array
tensorstore/internal/nditerable_transformed_array.cc
tensorstore/internal/nditerable_transformed_array_test.cc
#include "tensorstore/internal/nditerable_transformed_array.h" #include <cassert> #include <cstddef> #include <memory> #include <utility> #include <vector> #include "absl/status/status.h" #include "tensorstore/array.h" #include "tensorstore/data_type.h" #include "tensorstore/index.h" #include "tensorstore/index_space/i...
#include "tensorstore/internal/nditerable_transformed_array.h" #include <stddef.h> #include <array> #include <memory> #include <tuple> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "tensorstore/array.h" #include "tensorstore/array_testuti...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/nditerable_transformed_array.cc
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/internal/nditerable_transformed_array_test.cc
4f887a6430414cd6088e1743555015b10f116d50
03d1f556-a605-4615-a23e-2c5adb2cbce3
cpp
google/quiche
quic_idle_network_detector
quiche/quic/core/quic_idle_network_detector.cc
quiche/quic/core/quic_idle_network_detector_test.cc
#include "quiche/quic/core/quic_idle_network_detector.h" #include <algorithm> #include "quiche/quic/core/quic_constants.h" #include "quiche/quic/core/quic_time.h" #include "quiche/quic/platform/api/quic_flag_utils.h" #include "quiche/quic/platform/api/quic_flags.h" #include "quiche/common/platform/api/quiche_logging.h"...
#include "quiche/quic/core/quic_idle_network_detector.h" #include "quiche/quic/core/quic_connection_alarms.h" #include "quiche/quic/core/quic_one_block_arena.h" #include "quiche/quic/core/quic_time.h" #include "quiche/quic/platform/api/quic_expect_bug.h" #include "quiche/quic/platform/api/quic_flags.h" #include "quiche...
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/core/quic_idle_network_detector.cc
https://github.com/google/quiche/blob/6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6/quiche/quic/core/quic_idle_network_detector_test.cc
6fe69b2cf77d5fc175a729bc7a6c322a6388b8b6
32f38623-1d99-4128-9f44-0ec7c874d2fa
cpp
abseil/abseil-cpp
log_entry
absl/log/log_entry.cc
absl/log/log_entry_test.cc
#include "absl/log/log_entry.h" #include "absl/base/config.h" namespace absl { ABSL_NAMESPACE_BEGIN #ifdef ABSL_INTERNAL_NEED_REDUNDANT_CONSTEXPR_DECL constexpr int LogEntry::kNoVerbosityLevel; constexpr int LogEntry::kNoVerboseLevel; #endif #ifdef __APPLE__ namespace log_internal { extern const char kAvoidEmptyLogEntr...
#include "absl/log/log_entry.h" #include <stddef.h> #include <stdint.h> #include <cstring> #include <limits> #include <string> #include <type_traits> #include <utility> #include <vector> #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/base/attributes.h" #include "absl/base/config.h" #include "absl/base...
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/log/log_entry.cc
https://github.com/abseil/abseil-cpp/blob/03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4/absl/log/log_entry_test.cc
03b8d6ea3dc6a0b8c6bcf42503c2053754dab2e4
d37b53b4-31a7-4b63-b4fa-2549c355aa9f
cpp
google/cel-cpp
type_introspector
common/type_introspector.cc
extensions/protobuf/type_introspector_test.cc
#include "common/type_introspector.h" #include <algorithm> #include <cstdint> #include <initializer_list> #include "absl/container/flat_hash_map.h" #include "absl/container/inlined_vector.h" #include "absl/status/statusor.h" #include "absl/strings/string_view.h" #include "absl/types/optional.h" #include "common/memory....
#include "extensions/protobuf/type_introspector.h" #include "absl/types/optional.h" #include "common/type.h" #include "common/type_kind.h" #include "common/type_testing.h" #include "internal/testing.h" #include "proto/test/v1/proto2/test_all_types.pb.h" #include "google/protobuf/descriptor.h" namespace cel::extensions ...
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/common/type_introspector.cc
https://github.com/google/cel-cpp/blob/4552db5798fb0853b131b783d8875794334fae7f/extensions/protobuf/type_introspector_test.cc
4552db5798fb0853b131b783d8875794334fae7f
7ab47ab0-9fed-413f-9b03-23b0997a2c1f
cpp
tensorflow/tensorflow
nest_gemm_fusion
third_party/xla/xla/service/gpu/transforms/nest_gemm_fusion.cc
third_party/xla/xla/service/gpu/transforms/nest_gemm_fusion_test.cc
#include "xla/service/gpu/transforms/nest_gemm_fusion.h" #include <algorithm> #include <cstddef> #include <cstdint> #include <string> #include <utility> #include <variant> #include <vector> #include "absl/algorithm/container.h" #include "absl/container/flat_hash_map.h" #include "absl/container/flat_hash_set.h" #include...
#include "xla/service/gpu/transforms/nest_gemm_fusion.h" #include <ostream> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "xla/hlo/ir/hlo_instruction.h" #include "xla/service/gpu/backend_configs.pb.h" #include "xla/service/pattern_matcher.h" #include "xla/service/pattern_matcher_gmock.h" #include "xla/test...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/transforms/nest_gemm_fusion.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/transforms/nest_gemm_fusion_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
79b73ddc-d78b-4fc8-891a-abd1b5e2ac20
cpp
google/libaddressinput
region_data_builder
cpp/src/region_data_builder.cc
cpp/test/region_data_builder_test.cc
#include <libaddressinput/region_data_builder.h> #include <libaddressinput/address_data.h> #include <libaddressinput/preload_supplier.h> #include <libaddressinput/region_data.h> #include <cassert> #include <cstddef> #include <string> #include <vector> #include "language.h" #include "lookup_key.h" #include "region_data_...
#include <libaddressinput/region_data_builder.h> #include <libaddressinput/callback.h> #include <libaddressinput/null_storage.h> #include <libaddressinput/preload_supplier.h> #include <libaddressinput/region_data.h> #include <memory> #include <string> #include <gtest/gtest.h> #include "testdata_source.h" namespace { us...
https://github.com/google/libaddressinput/blob/2610f7b1043d6784ada41392fc9392d1ea09ea07/cpp/src/region_data_builder.cc
https://github.com/google/libaddressinput/blob/2610f7b1043d6784ada41392fc9392d1ea09ea07/cpp/test/region_data_builder_test.cc
2610f7b1043d6784ada41392fc9392d1ea09ea07
31c1fe9d-b92e-40d4-9b3a-0cd0e17a79e6
cpp
tensorflow/tensorflow
dataset
tensorflow/core/framework/dataset.cc
tensorflow/core/framework/dataset_test.cc
#include "tensorflow/core/framework/dataset.h" #include <unordered_map> #include <vector> #include "tensorflow/core/activity_watcher/activity.h" #include "tensorflow/core/framework/dataset.pb.h" #include "tensorflow/core/framework/device_base.h" #include "tensorflow/core/framework/function.h" #include "tensorflow/core/...
#include "tensorflow/core/framework/dataset.h" #include <memory> #include <tuple> #include <gtest/gtest.h> #include "absl/container/flat_hash_set.h" #include "absl/status/status.h" #include "xla/tsl/lib/core/status_test_util.h" #include "tensorflow/core/framework/tensor_testutil.h" #include "tensorflow/core/framework/t...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/framework/dataset.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/framework/dataset_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
9f7a8b01-7a36-410b-8f64-3545915fd10c
cpp
google/tensorstore
downsample_array
tensorstore/driver/downsample/downsample_array.cc
tensorstore/driver/downsample/downsample_array_test.cc
#include "tensorstore/driver/downsample/downsample_array.h" #include "absl/status/status.h" #include "tensorstore/array.h" #include "tensorstore/downsample_method.h" #include "tensorstore/driver/downsample/downsample_nditerable.h" #include "tensorstore/driver/downsample/downsample_util.h" #include "tensorstore/index.h"...
#include "tensorstore/driver/downsample/downsample_array.h" #include <stdint.h> #include <gmock/gmock.h> #include <gtest/gtest.h> #include <nlohmann/json.hpp> #include "tensorstore/array.h" #include "tensorstore/array_testutil.h" #include "tensorstore/data_type.h" #include "tensorstore/downsample_method.h" #include "te...
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/driver/downsample/downsample_array.cc
https://github.com/google/tensorstore/blob/4f887a6430414cd6088e1743555015b10f116d50/tensorstore/driver/downsample/downsample_array_test.cc
4f887a6430414cd6088e1743555015b10f116d50