ID
stringlengths
36
36
Language
stringclasses
1 value
Repository Name
stringclasses
13 values
File Name
stringlengths
2
48
File Path in Repository
stringlengths
11
111
File Path for Unit Test
stringlengths
13
116
Code
stringlengths
0
278k
Unit Test - (Ground Truth)
stringlengths
78
663k
Code Url
stringlengths
91
198
Test Code Url
stringlengths
93
203
Commit Hash
stringclasses
13 values
0dc90f43-3fd2-43ff-b407-9a4a3aaa2aa1
cpp
tensorflow/tensorflow
shape_tree
third_party/xla/xla/shape_tree.cc
third_party/xla/xla/shape_tree_test.cc
#include "xla/shape_tree.h" #include <cstddef> #include <cstdint> #include "xla/shape.h" #include "xla/shape_util.h" #include "tsl/platform/logging.h" namespace xla { namespace internal { IndexTable::IndexTable(const Shape& shape) : entries_(1) { size_t next_node_id = 0; CreateEntry(entries_[0], shape, next_node_...
#include "xla/shape_tree.h" #include <iterator> #include <memory> #include <utility> #include <vector> #include "xla/shape.h" #include "xla/shape_util.h" #include "xla/test.h" #include "xla/xla_data.pb.h" #include "tsl/platform/test_benchmark.h" namespace xla { namespace { class ShapeTreeTest : public ::testing::Test {...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/shape_tree.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/shape_tree_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
3adfd356-0a6b-4561-8157-72882331708c
cpp
tensorflow/tensorflow
index_util
third_party/xla/xla/index_util.cc
third_party/xla/xla/index_util_test.cc
#include "xla/index_util.h" #include <algorithm> #include <cstdint> #include <string> #include <vector> #include "absl/types/span.h" #include "xla/layout_util.h" #include "xla/shape.h" #include "xla/shape_util.h" #include "xla/util.h" #include "tsl/platform/logging.h" namespace xla { DimensionVector IndexUtil::LinearI...
#include "xla/index_util.h" #include <initializer_list> #include <vector> #include "absl/types/span.h" #include "xla/shape.h" #include "xla/shape_util.h" #include "xla/test.h" #include "xla/xla_data.pb.h" namespace xla { namespace { void SetMinorToMajorLayout(Shape* shape, std::vector<int64_t> dimensions) { shape->mu...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/index_util.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/index_util_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
eb05537e-6e3d-43eb-98f5-278684d16219
cpp
tensorflow/tensorflow
literal
third_party/xla/xla/literal.cc
third_party/xla/xla/literal_test.cc
#include "xla/literal.h" #include <algorithm> #include <complex> #include <cstdint> #include <cstring> #include <functional> #include <limits> #include <memory> #include <optional> #include <ostream> #include <string> #include <type_traits> #include <utility> #include <variant> #include <vector> #include "absl/base/cas...
#include "xla/literal.h" #include <algorithm> #include <cmath> #include <complex> #include <cstdint> #include <functional> #include <limits> #include <random> #include <string> #include <tuple> #include <utility> #include <vector> #include <gtest/gtest.h> #include "absl/base/casts.h" #include "absl/hash/hash.h" #includ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/literal.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/literal_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
40deacba-c32f-4c52-97bb-a950b5905922
cpp
tensorflow/tensorflow
shape_util
tensorflow/compiler/tf2xla/kernels/shape_util.cc
third_party/xla/xla/shape_util_test.cc
#include "tensorflow/compiler/tf2xla/kernels/shape_util.h" #include <limits> #include "absl/status/status.h" #include "tensorflow/core/framework/bounds_check.h" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/framework/tensor_shape.h" #include "tensorflow/core/framework/types.pb.h" #include "ten...
#include "xla/shape_util.h" #include <algorithm> #include <cstdint> #include <numeric> #include <optional> #include <utility> #include <variant> #include <vector> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/strings/str_join.h" #include "absl/types/s...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/tf2xla/kernels/shape_util.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/shape_util_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
321442fe-b4d4-4301-bf31-494056f960f8
cpp
tensorflow/tensorflow
host_callback
third_party/xla/xla/python/ifrt/host_callback.cc
third_party/xla/xla/pjrt/host_callback_test.cc
#include "xla/python/ifrt/host_callback.h" namespace xla { namespace ifrt { char HostCallback::ID = 0; char LoadedHostCallback::ID = 0; } }
#include "xla/pjrt/host_callback.h" #include <cstring> #include <memory> #include <utility> #include <gtest/gtest.h> #include "absl/status/status.h" #include "xla/pjrt/pjrt_client.h" #include "xla/tests/literal_test_util.h" #include "xla/tsl/lib/core/status_test_util.h" namespace xla { namespace { class TestPjRtHostMem...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/host_callback.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/host_callback_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
629082a0-250e-48af-a434-7fe64da908c3
cpp
tensorflow/tensorflow
tracked_device_buffer
third_party/xla/xla/pjrt/tracked_device_buffer.cc
third_party/xla/xla/pjrt/tracked_device_buffer_test.cc
#include "xla/pjrt/tracked_device_buffer.h" #include <algorithm> #include <atomic> #include <cstdint> #include <functional> #include <iterator> #include <memory> #include <string> #include <utility> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/functional/any_invocable.h" #include "absl/sta...
#include "xla/pjrt/tracked_device_buffer.h" #include <memory> #include <vector> #include "absl/log/log.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/string_view.h" #include "absl/types/span.h" #include "xla/client/client_library.h" #include "xla/client/local_client.h" #incl...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/tracked_device_buffer.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/tracked_device_buffer_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
910cd118-d757-4424-beac-fac04be8dd3a
cpp
tensorflow/tensorflow
pjrt_client
third_party/xla/xla/python/pjrt_ifrt/pjrt_client.cc
third_party/xla/xla/pjrt/pjrt_client_test.cc
#include "xla/python/pjrt_ifrt/pjrt_client.h" #include <atomic> #include <cstdint> #include <functional> #include <memory> #include <optional> #include <string> #include <string_view> #include <utility> #include <variant> #include <vector> #include "absl/base/thread_annotations.h" #include "absl/container/flat_hash_map...
#include "xla/pjrt/pjrt_client_test.h" #include <cstdint> #include <functional> #include <memory> #include <optional> #include <utility> #include <vector> #include "absl/status/statusor.h" #include "absl/synchronization/blocking_counter.h" #include "absl/types/span.h" #include "xla/client/xla_builder.h" #include "xla/c...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/pjrt_ifrt/pjrt_client.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/pjrt_client_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
79f4067c-cdba-4150-810e-3c3b509d548f
cpp
tensorflow/tensorflow
mlir_to_hlo
third_party/xla/xla/pjrt/mlir_to_hlo.cc
third_party/xla/xla/pjrt/mlir_to_hlo_test.cc
#include "xla/pjrt/mlir_to_hlo.h" #include <cstdint> #include <memory> #include <optional> #include <string> #include <utility> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #include "llvm/ADT/STLFunctionalExtras.h" #include "ll...
#include "xla/pjrt/mlir_to_hlo.h" #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "absl/strings/str_cat.h" #include "mlir/IR/MLIRContext.h" #include "mlir/IR/OwningOpRef.h" #include "stablehlo/api/PortableApi.h" #include "xla/test.h" #include "tsl/platform/statusor.h" namespac...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/mlir_to_hlo.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/mlir_to_hlo_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
5f9eba1a-e055-4de1-82c4-1871f84d29b9
cpp
tensorflow/tensorflow
utils
tensorflow/compiler/mlir/tfrt/transforms/utils.cc
tensorflow/compiler/mlir/tf2xla/api/v2/testing/utils_test.cc
#include "tensorflow/compiler/mlir/tfrt/transforms/utils.h" #include <optional> #include <string> #include "absl/strings/string_view.h" #include "llvm/Support/Casting.h" #include "mlir/Dialect/Func/IR/FuncOps.h" #include "mlir/IR/BuiltinAttributes.h" #include "mlir/IR/BuiltinOps.h" #include "mlir/IR/BuiltinTypes....
#include "tensorflow/compiler/mlir/tf2xla/api/v2/testing/utils.h" #include <stdlib.h> #include <string> #include <gmock/gmock.h> #include <gtest/gtest.h> namespace tensorflow { namespace tf2xla { namespace v2 { namespace testing { namespace { class UtilsTest : public ::testing::Test {}; TEST_F(UtilsTest, TestDataPathSu...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/tfrt/transforms/utils.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/tf2xla/api/v2/testing/utils_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
5bad8880-efb8-4120-a68e-51035a8d7284
cpp
tensorflow/tensorflow
pjrt_api
third_party/xla/xla/pjrt/pjrt_api.cc
third_party/xla/xla/pjrt/pjrt_api_test.cc
#include "xla/pjrt/pjrt_api.h" #include <cstdlib> #include <utility> #include "absl/status/status.h" #include "absl/strings/ascii.h" #include "absl/strings/numbers.h" #include "absl/strings/str_cat.h" #include "xla/pjrt/c/pjrt_c_api.h" #if !defined(PLATFORM_WINDOWS) #include <dlfcn.h> #endif #include <string> #include ...
#include "xla/pjrt/pjrt_api.h" #include <string> #include <gtest/gtest.h> #include "xla/pjrt/c/pjrt_c_api.h" #include "xla/pjrt/c/pjrt_c_api_wrapper_impl.h" #include "xla/tsl/lib/core/status_test_util.h" #include "tsl/platform/status_matchers.h" #include "tsl/protobuf/error_codes.pb.h" namespace { using ::testing::HasS...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/pjrt_api.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/pjrt_api_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
634f061d-fae5-4c7b-a795-7b8955b04bf4
cpp
tensorflow/tensorflow
transpose
tensorflow/lite/delegates/gpu/common/tasks/transpose.cc
tensorflow/lite/delegates/xnnpack/transpose_test.cc
#include "tensorflow/lite/delegates/gpu/common/tasks/transpose.h" #include <string> #include "absl/strings/str_cat.h" #include "tensorflow/lite/delegates/gpu/common/task/work_group_picking.h" namespace tflite { namespace gpu { namespace { std::string GetTransposeCode(const OperationDef& op_def, ...
#include <algorithm> #include <cstdint> #include <functional> #include <memory> #include <vector> #include <gtest/gtest.h> #include "tensorflow/lite/delegates/xnnpack/transpose_tester.h" #include "tensorflow/lite/delegates/xnnpack/xnnpack_delegate.h" namespace tflite { namespace xnnpack { TEST(Transpose, 1D) { std::u...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/delegates/gpu/common/tasks/transpose.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/delegates/xnnpack/transpose_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
8adb0ed0-9542-4a16-afc5-37b3e581de81
cpp
tensorflow/tensorflow
pjrt_compiler
third_party/xla/xla/python/pjrt_ifrt/pjrt_compiler.cc
third_party/xla/xla/pjrt/pjrt_compiler_test.cc
#include "xla/python/pjrt_ifrt/pjrt_compiler.h" #include <memory> #include <optional> #include <utility> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/string_view.h" #include "llvm/Support/Casting.h" #include "xla/pjrt/pjrt_client.h" #include "xla/pjrt/pjrt_compiler.h" #includ...
#include "xla/pjrt/pjrt_compiler.h" #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/log.h" #include "absl/status/statusor.h" #include "absl/strings/string_view.h" #include "xla/client/...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/pjrt_ifrt/pjrt_compiler.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/pjrt_compiler_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
0fe8e421-3b6a-41a7-a4c4-85093705cb50
cpp
tensorflow/tensorflow
tf_pjrt_client
third_party/xla/xla/pjrt/tf_pjrt_client.cc
third_party/xla/xla/pjrt/tf_pjrt_client_test.cc
#include "xla/pjrt/tf_pjrt_client.h" #include <memory> #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/synchronization/mutex.h" #include "xla/pjrt/pjrt_client.h" namespace xla { TfPjRt...
#include "xla/pjrt/tf_pjrt_client.h" #include <string> #include <utility> #include <vector> #include <gtest/gtest.h> #include "xla/literal_util.h" #include "xla/pjrt/cpu/cpu_client.h" #include "xla/service/hlo_parser.h" #include "tsl/platform/env.h" #include "tsl/platform/file_system.h" #include "tsl/platform/test.h" n...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/tf_pjrt_client.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/tf_pjrt_client_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
8a36c167-4407-4e5f-84ef-a0ee90099328
cpp
tensorflow/tensorflow
pjrt_c_api_client
third_party/xla/xla/pjrt/pjrt_c_api_client.cc
third_party/xla/xla/pjrt/pjrt_c_api_client_test.cc
#include "xla/pjrt/pjrt_c_api_client.h" #include <cstddef> #include <cstdint> #include <functional> #include <memory> #include <optional> #include <string> #include <utility> #include <variant> #include <vector> #include "absl/cleanup/cleanup.h" #include "absl/container/flat_hash_map.h" #include "absl/container/inlined...
#include "xla/pjrt/pjrt_c_api_client.h" #include <cstdint> #include <memory> #include <optional> #include <string> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "xla/client/xla_builder.h" #include "xla/literal_util.h" #include "xla/pjrt/c...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/pjrt_c_api_client.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/pjrt_c_api_client_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
9a63a3bc-e6b2-4a16-8ff2-d35b6996183f
cpp
tensorflow/tensorflow
pjrt_stream_executor_client
third_party/xla/xla/pjrt/pjrt_stream_executor_client.cc
third_party/xla/xla/pjrt/pjrt_stream_executor_client_test.cc
#include "xla/pjrt/pjrt_stream_executor_client.h" #include <algorithm> #include <cstddef> #include <cstdint> #include <cstdlib> #include <cstring> #include <functional> #include <initializer_list> #include <limits> #include <memory> #include <optional> #include <string> #include <tuple> #include <utility> #include <vec...
#include "xla/pjrt/pjrt_stream_executor_client.h" #include <memory> #include <string> #include <utility> #include <vector> #include <gmock/gmock.h> #include "absl/functional/any_invocable.h" #include "absl/synchronization/mutex.h" #include "xla/client/client_library.h" #include "xla/client/xla_builder.h" #include "xla/...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/pjrt_stream_executor_client.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/pjrt_stream_executor_client_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
2ca9acea-9d42-468d-b041-88b5b74e6f47
cpp
tensorflow/tensorflow
semaphore
third_party/xla/xla/pjrt/semaphore.cc
third_party/xla/xla/pjrt/semaphore_test.cc
#include "xla/pjrt/semaphore.h" #include <cstdint> #include "absl/synchronization/mutex.h" #include "tsl/platform/logging.h" namespace xla { Semaphore::Semaphore(int64_t capacity) : value_(capacity), max_capacity_(capacity) { CHECK_GE(capacity, 0); } bool Semaphore::CanAcquire(CanAcquireArgs* args) { return arg...
#include "xla/pjrt/semaphore.h" #include <gtest/gtest.h> #include "absl/synchronization/notification.h" #include "xla/test.h" #include "tsl/platform/env.h" #include "tsl/platform/threadpool.h" namespace xla { namespace { TEST(SemaphoreTest, UnthreadedTests) { Semaphore semaphore(2); EXPECT_EQ(semaphore.capacity(), ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/semaphore.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/semaphore_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
0e5b51f5-887b-4bbd-86cf-cea50fe6fd3e
cpp
tensorflow/tensorflow
pjrt_future
third_party/xla/xla/pjrt/pjrt_future.cc
third_party/xla/xla/pjrt/pjrt_future_test.cc
#include "xla/pjrt/pjrt_future.h" #include <atomic> #include <cstdint> #include <memory> #include <utility> #include "absl/base/thread_annotations.h" #include "absl/status/status.h" #include "absl/synchronization/mutex.h" #include "absl/types/span.h" #include "tsl/platform/logging.h" namespace xla { namespace { struct ...
#include "xla/pjrt/pjrt_future.h" #include <cstdint> #include <memory> #include <utility> #include <vector> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "tsl/platform/test.h" namespace xla { TEST(PjRtFutureTest, StatelessFuture) { auto promise = PjRtFuture<>::CreatePromise(); PjRtFutur...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/pjrt_future.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/pjrt_future_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
90a3ea44-24b4-466c-848c-48043121493f
cpp
tensorflow/tensorflow
pjrt_executable
third_party/xla/xla/python/pjrt_ifrt/pjrt_executable.cc
third_party/xla/xla/pjrt/pjrt_executable_test.cc
#include "xla/python/pjrt_ifrt/pjrt_executable.h" #include <memory> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/log/check.h" #include "absl/log/log.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/...
#include "xla/pjrt/pjrt_executable.h" #include <string> #include <utility> #include <variant> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "xla/client/executable_build_options.h" #include "xla/pjrt/compile_options.pb.h" #include "xla/shape_util.h" #include "xla/xla_data.pb.h" #include "t...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/pjrt_ifrt/pjrt_executable.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/pjrt_executable_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
95f3e0ae-3580-482c-a923-012cebb9dfb8
cpp
tensorflow/tensorflow
metrics
tensorflow/cc/saved_model/metrics.cc
tensorflow/cc/saved_model/metrics_test.cc
#include "tensorflow/cc/saved_model/metrics.h" #include <cstddef> #include <cstdint> #include <string> #include <utility> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #include "json/config.h" #include "json/json.h" #include "js...
#include "tensorflow/cc/saved_model/metrics.h" #include <string> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "json/json.h" #include "json/reader.h" #include "tensorflow/core/platform/status_matchers.h" #include "tensorflow/core/platform/test.h" #include "tensorflow/core/pr...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/cc/saved_model/metrics.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/cc/saved_model/metrics_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
05b3a5fb-d17e-46f2-a604-6a0d2c9a26bd
cpp
tensorflow/tensorflow
se_gpu_pjrt_client
third_party/xla/xla/pjrt/gpu/se_gpu_pjrt_client.cc
third_party/xla/xla/pjrt/gpu/se_gpu_pjrt_client_test.cc
#include "xla/pjrt/gpu/se_gpu_pjrt_client.h" #include <array> #include <cstddef> #include <cstdint> #include <cstring> #include <map> #include <memory> #include <optional> #include <string> #include <string_view> #include <utility> #include <variant> #include <vector> #include "absl/algorithm/container.h" #include "abs...
#include "xla/pjrt/gpu/se_gpu_pjrt_client.h" #include <stdlib.h> #include <array> #include <cstdint> #include <cstring> #include <memory> #include <numeric> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/status/status...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/gpu/se_gpu_pjrt_client.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/gpu/se_gpu_pjrt_client_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
a9884785-43c1-4307-b823-e878e158c6f3
cpp
tensorflow/tensorflow
se_gpu_pjrt_compiler
third_party/xla/xla/pjrt/gpu/se_gpu_pjrt_compiler.cc
third_party/xla/xla/pjrt/gpu/se_gpu_pjrt_compiler_test.cc
#include "xla/pjrt/gpu/se_gpu_pjrt_compiler.h" #include <memory> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "xla/client/xla_computation.h" #include "xla/pjrt/gpu/se_gpu_pjrt_client.h" #include "xla/pjrt/pjrt_client.h" #include "xla/pjrt/pjrt_compiler.h" #include "xla/pjrt/pjrt_executable...
#include "xla/pjrt/gpu/se_gpu_pjrt_compiler.h" #include <memory> #include <vector> #include <gmock/gmock.h> #include "absl/status/status.h" #include "mlir/Dialect/Func/IR/FuncOps.h" #include "mlir/Parser/Parser.h" #include "xla/client/xla_computation.h" #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h" #include "xla/pjrt/gpu/g...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/gpu/se_gpu_pjrt_compiler.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/gpu/se_gpu_pjrt_compiler_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
880f9741-8dae-41d1-975d-c0afa4e453ed
cpp
tensorflow/tensorflow
cpu_topology
third_party/xla/xla/pjrt/cpu/cpu_topology.cc
third_party/xla/xla/pjrt/cpu/cpu_topology_test.cc
#include "xla/pjrt/cpu/cpu_topology.h" #include <cstddef> #include <memory> #include <string> #include <utility> #include <vector> #include "xla/pjrt/cpu/cpu_topology.pb.h" namespace xla { std::unique_ptr<const CpuTopology> CpuTopology::FromProto( const CpuTopologyProto& cpu_topology_proto) { std::vector<CpuTopol...
#include "xla/pjrt/cpu/cpu_topology.h" #include <memory> #include "xla/pjrt/cpu/cpu_topology.pb.h" #include "tsl/platform/protobuf.h" #include "tsl/platform/test.h" namespace xla { namespace { TEST(CpuTopology, FromProto) { CpuTopologyProto msg; ASSERT_TRUE(tsl::protobuf::TextFormat::ParseFromString( R"pb( ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/cpu/cpu_topology.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/cpu/cpu_topology_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
69e4171f-276f-4c20-a4b6-d6c7373352d8
cpp
tensorflow/tensorflow
gloo_collectives
third_party/xla/xla/pjrt/cpu/gloo_collectives.cc
third_party/xla/xla/pjrt/cpu/gloo_collectives_test.cc
#include "xla/pjrt/cpu/gloo_collectives.h" #include <complex> #include <cstddef> #include <cstdint> #include <cstring> #include <exception> #include <memory> #include <optional> #include <string> #include <tuple> #include <utility> #include <vector> #include "absl/status/status.h" #include "absl/status/statusor.h" #inc...
#include "xla/pjrt/cpu/gloo_collectives.h" #include <unistd.h> #include <cstddef> #include <cstdint> #include <memory> #include <vector> #include "absl/status/statusor.h" #include "absl/time/time.h" #include "absl/types/span.h" #if defined(__linux__) #include "gloo/transport/tcp/attr.h" #include "gloo/transport/tcp/dev...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/cpu/gloo_collectives.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/cpu/gloo_collectives_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
de686d71-386c-4413-83f6-6378d7e0f65c
cpp
tensorflow/tensorflow
cpu_client
third_party/xla/xla/pjrt/cpu/cpu_client.cc
third_party/xla/xla/pjrt/cpu/cpu_client_test.cc
#include "xla/pjrt/cpu/cpu_client.h" #define EIGEN_USE_THREADS #include <algorithm> #include <cfenv> #include <cstddef> #include <cstdint> #include <cstring> #include <functional> #include <limits> #include <memory> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/algorithm/co...
#include "xla/pjrt/cpu/cpu_client.h" #include "xla/service/hlo.pb.h" #include "xla/types.h" #include "xla/xla_data.pb.h" #ifndef _WIN32 #include <unistd.h> #endif #include <algorithm> #include <cstdint> #include <cstring> #include <memory> #include <optional> #include <string> #include <vector> #include <gmock/gmock.h>...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/cpu/cpu_client.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/cpu/cpu_client_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
e93ee444-09bb-4afd-933a-0cbe6a24366c
cpp
tensorflow/tensorflow
tracked_tfrt_cpu_device_buffer
third_party/xla/xla/pjrt/cpu/tracked_tfrt_cpu_device_buffer.cc
third_party/xla/xla/pjrt/cpu/tracked_tfrt_cpu_device_buffer_test.cc
#include "xla/pjrt/cpu/tracked_tfrt_cpu_device_buffer.h" #include <atomic> #include <cstddef> #include <cstdint> #include <utility> #include "absl/base/casts.h" #include "absl/container/inlined_vector.h" #include "absl/functional/any_invocable.h" #include "absl/log/check.h" #include "absl/status/status.h" #include "abs...
#include "xla/pjrt/cpu/tracked_tfrt_cpu_device_buffer.h" #include <cstring> #include <string> #include <gtest/gtest.h> #include "xla/service/cpu/cpu_event.h" #include "xla/tsl/concurrency/async_value.h" #include "xla/tsl/concurrency/async_value_ref.h" #include "tsl/platform/env.h" #include "tsl/platform/statusor.h" #in...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/cpu/tracked_tfrt_cpu_device_buffer.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/cpu/tracked_tfrt_cpu_device_buffer_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
18d40d61-c549-4e2b-ba54-b152b402180e
cpp
tensorflow/tensorflow
client
third_party/xla/xla/client/client.cc
third_party/xla/xla/tests/client_test.cc
#include "xla/client/client.h" #include <memory> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/status/status.h" #include "absl/types/span.h" #include "xla/execution_options_util.h" #include "xla/hlo/builder/xla_computation.h" #include "xla/layout.h" #include "xla/literal.h" #...
#include <memory> #include <vector> #include "absl/status/statusor.h" #include "xla/client/global_data.h" #include "xla/client/local_client.h" #include "xla/hlo/builder/xla_builder.h" #include "xla/hlo/builder/xla_computation.h" #include "xla/shape_util.h" #include "xla/status_macros.h" #include "xla/test_helpers.h" #i...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/client/client.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tests/client_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
d2611c8d-f70c-4648-a29c-f15b9d7fb929
cpp
tensorflow/tensorflow
topology_util
third_party/xla/xla/pjrt/distributed/topology_util.cc
third_party/xla/xla/pjrt/distributed/topology_util_test.cc
#include "xla/pjrt/distributed/topology_util.h" #include <algorithm> #include <fstream> #include <map> #include <set> #include <string> #include <string_view> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/ascii.h" #in...
#include "xla/pjrt/distributed/topology_util.h" #include <string> #include <string_view> #include <vector> #include "absl/time/time.h" #include "absl/types/span.h" #include "xla/pjrt/distributed/in_memory_key_value_store.h" #include "xla/pjrt/distributed/protocol.pb.h" #include "xla/test_helpers.h" #include "xla/tsl/li...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/distributed/topology_util.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/distributed/topology_util_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
983decde-fe7b-4ef5-bfc6-14c31e95fc7b
cpp
tensorflow/tensorflow
pjrt_c_api_gpu
third_party/xla/xla/pjrt/c/pjrt_c_api_gpu.cc
third_party/xla/xla/pjrt/c/pjrt_c_api_gpu_test.cc
#include "xla/pjrt/c/pjrt_c_api_gpu.h" #include "absl/base/call_once.h" #include "absl/log/initialize.h" #include "xla/pjrt/c/pjrt_c_api.h" #include "xla/pjrt/c/pjrt_c_api_gpu_internal.h" #include "tsl/platform/platform.h" const PJRT_Api* GetPjrtApi() { #ifndef PLATFORM_GOOGLE static absl::once_flag once; absl::cal...
#include "xla/pjrt/c/pjrt_c_api_gpu.h" #include <cstdint> #include <functional> #include <memory> #include <numeric> #include <string> #include <thread> #include <utility> #include <variant> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/container/flat_hash_map.h" #include "absl/st...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/c/pjrt_c_api_gpu.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/c/pjrt_c_api_gpu_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
b157befa-2457-49ea-98c8-27c339742c71
cpp
tensorflow/tensorflow
pjrt_c_api_cpu
third_party/xla/xla/pjrt/c/pjrt_c_api_cpu.cc
third_party/xla/xla/pjrt/c/pjrt_c_api_cpu_test.cc
#include "xla/pjrt/c/pjrt_c_api_cpu.h" #include "xla/pjrt/c/pjrt_c_api.h" #include "xla/pjrt/c/pjrt_c_api_cpu_internal.h" const PJRT_Api* GetPjrtApi() { return pjrt::cpu_plugin::GetCpuPjrtApi(); }
#include "xla/pjrt/c/pjrt_c_api_cpu.h" #include "xla/pjrt/c/pjrt_c_api_test.h" #include "xla/pjrt/c/pjrt_c_api_wrapper_impl.h" namespace pjrt { namespace { const bool kUnused = (RegisterPjRtCApiTestFactory([]() { return GetPjrtApi(); }, "cpu"), tru...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/c/pjrt_c_api_cpu.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/c/pjrt_c_api_cpu_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
8a6d5e13-b058-42e0-b8ea-d7b62c632acd
cpp
tensorflow/tensorflow
pjrt_c_api_helpers
third_party/xla/xla/pjrt/c/pjrt_c_api_helpers.cc
third_party/xla/xla/pjrt/c/pjrt_c_api_helpers_test.cc
#include "xla/pjrt/c/pjrt_c_api_helpers.h" #include <algorithm> #include <cstddef> #include <cstdint> #include <functional> #include <memory> #include <string> #include <string_view> #include <utility> #include <variant> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/container/inlined_vector...
#include "xla/pjrt/c/pjrt_c_api_helpers.h" #include <cstddef> #include <cstdint> #include <memory> #include <string> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/container/flat_hash_map.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/c/pjrt_c_api_helpers.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/pjrt/c/pjrt_c_api_helpers_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
17d19366-2d7f-45aa-9c96-4b5ac5ca6c8d
cpp
tensorflow/tensorflow
hlo_control_flow_flattening
third_party/xla/xla/tools/hlo_control_flow_flattening.cc
third_party/xla/xla/tools/hlo_control_flow_flattening_test.cc
#include "xla/tools/hlo_control_flow_flattening.h" #include <algorithm> #include <cstdint> #include <string> #include <utility> #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 "ab...
#include "xla/tools/hlo_control_flow_flattening.h" #include <memory> #include <utility> #include "absl/strings/str_replace.h" #include "xla/hlo/utils/hlo_matchers.h" #include "xla/service/collective_ops_utils.h" #include "xla/service/despecializer.h" #include "xla/service/hlo_verifier.h" #include "xla/service/spmd/spmd...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tools/hlo_control_flow_flattening.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tools/hlo_control_flow_flattening_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
cd79ef1a-6098-42da-9354-dac192ad1ce8
cpp
tensorflow/tensorflow
hlo_decomposer
third_party/xla/xla/tools/hlo_decomposer.cc
third_party/xla/xla/tools/hlo_decomposer_test.cc
#include "xla/tools/hlo_decomposer.h" #include <memory> #include <string> #include <utility> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/container/flat_hash_set.h" #include "absl/container/inlined_vector.h" #include "absl/log/check.h" #include "absl/status/status.h" #include "xla/hlo/ir/h...
#include "xla/tools/hlo_decomposer.h" #include <memory> #include <vector> #include <gtest/gtest.h> #include "absl/algorithm/container.h" #include "absl/strings/string_view.h" #include "xla/hlo/ir/hlo_module.h" #include "xla/tests/filecheck.h" #include "xla/tests/hlo_test_base.h" #include "tsl/platform/statusor.h" names...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tools/hlo_decomposer.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tools/hlo_decomposer_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
9674d4bc-cfba-40fa-9ad2-05cea053501d
cpp
tensorflow/tensorflow
prepare_reference_module
third_party/xla/xla/tools/prepare_reference_module.cc
third_party/xla/xla/tools/prepare_reference_module_test.cc
#include "xla/tools/prepare_reference_module.h" #include <functional> #include <memory> #include "absl/status/statusor.h" #include "xla/debug_options_flags.h" #include "xla/hlo/ir/hlo_module.h" #include "xla/service/despecializer.h" #include "xla/service/hlo_module_config.h" #include "xla/stream_executor/platform.h" #i...
#include "xla/tools/prepare_reference_module.h" #include "xla/hlo/ir/hlo_module.h" #include "xla/test.h" #include "xla/tests/hlo_test_base.h" #include "tsl/platform/statusor.h" namespace xla { namespace { const char* const kModuleStr = R"( HloModule jit_step %fused_computation (param_0.2: f32[1,4]) -> f32[1,3] { ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tools/prepare_reference_module.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tools/prepare_reference_module_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
ef6cb643-5703-419f-9a58-6885cf50b9d9
cpp
tensorflow/tensorflow
run_hlo_module
third_party/xla/xla/tools/run_hlo_module.cc
third_party/xla/xla/tools/run_hlo_module_test.cc
#include "xla/tools/run_hlo_module.h" #include <functional> #include <iomanip> #include <iostream> #include <map> #include <memory> #include <optional> #include <random> #include <sstream> #include <string> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/log/check.h" #include "...
#include "xla/tools/run_hlo_module.h" #include <string> #include "xla/literal.h" #include "xla/literal_util.h" #include "xla/tools/run_hlo_module.pb.h" #include "xla/tsl/lib/core/status_test_util.h" #include "xla/xla_data.pb.h" #include "tsl/platform/env.h" #include "tsl/platform/test.h" namespace xla { namespace { Run...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tools/run_hlo_module.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tools/run_hlo_module_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
49d9476b-8f73-4dda-9115-ac8a5af6998f
cpp
tensorflow/tensorflow
hlo_slicer
third_party/xla/xla/tools/hlo_slicer.cc
third_party/xla/xla/tools/hlo_slicer_test.cc
#include "xla/tools/hlo_slicer.h" #include <deque> #include <memory> #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/types/span.h" #include "xla/hlo/ir/hlo_computation.h" #includ...
#include "xla/tools/hlo_slicer.h" #include <memory> #include <string> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/log/check.h" #include "absl/types/span.h" #include "xla/hlo/ir/hlo_computation.h" #include "xla/hlo/ir/hlo_instruction.h" #include "xla/hlo/ir/hlo_o...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tools/hlo_slicer.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tools/hlo_slicer_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
25ccb5a1-cdaa-4877-a165-ec2b78f26bea
cpp
tensorflow/tensorflow
hlo_extractor
third_party/xla/xla/tools/hlo_extractor.cc
third_party/xla/xla/tools/hlo_extractor_test.cc
#include "xla/tools/hlo_extractor.h" #ifndef _WIN32 #include <unistd.h> #endif #include <cstdint> #include <deque> #include <memory> #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/status/status.h" #inclu...
#include "xla/tools/hlo_extractor.h" #include <memory> #include <string> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "xla/hlo/ir/hlo_instruction.h" #include "xla/hlo/ir/hlo_opcode.h" #include "xla/hlo/utils/hlo_matchers.h" #include "xla/tests/hlo_test_base.h" #include "tsl/platform/statusor.h" namespace ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tools/hlo_extractor.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tools/hlo_extractor_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
173476fa-45cf-4802-805d-da921a8259f2
cpp
tensorflow/tensorflow
hlo_module_loader
third_party/xla/xla/tools/hlo_module_loader.cc
third_party/xla/xla/tools/hlo_module_loader_test.cc
#include "xla/tools/hlo_module_loader.h" #include <functional> #include <memory> #include <string> #include <string_view> #include <utility> #include "absl/strings/str_cat.h" #include "absl/strings/str_join.h" #include "absl/strings/str_split.h" #include "re2/re2.h" #include "xla/debug_options_flags.h" #include "xla/hl...
#include "xla/tools/hlo_module_loader.h" #include <string> #include "xla/tests/hlo_test_base.h" #include "xla/tsl/lib/core/status_test_util.h" #include "tsl/platform/test.h" namespace xla { namespace { class HloModuleLoaderTest : public HloTestBase {}; TEST_F(HloModuleLoaderTest, StripsLogHeaders) { const std::string...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tools/hlo_module_loader.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tools/hlo_module_loader_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
cfec4fa1-43f2-4e44-bf38-a8522b629bac
cpp
tensorflow/tensorflow
functional_hlo_runner
third_party/xla/xla/tools/multihost_hlo_runner/functional_hlo_runner.cc
third_party/xla/xla/tools/multihost_hlo_runner/functional_hlo_runner_test.cc
#include "xla/tools/multihost_hlo_runner/functional_hlo_runner.h" #include <cstddef> #include <cstdint> #include <functional> #include <memory> #include <optional> #include <random> #include <string> #include <string_view> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/contain...
#include "xla/tools/multihost_hlo_runner/functional_hlo_runner.h" #include <memory> #include <string> #include <vector> #include <gtest/gtest.h> #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/match.h" #include "absl/strings/str_format.h" #include "ab...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tools/multihost_hlo_runner/functional_hlo_runner.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tools/multihost_hlo_runner/functional_hlo_runner_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
a1fba7d6-3851-4dfe-a221-936f5f6a1256
cpp
tensorflow/tensorflow
profiler
tensorflow/lite/profiling/telemetry/profiler.cc
tensorflow/lite/profiling/telemetry/profiler_test.cc
#include "tensorflow/lite/profiling/telemetry/profiler.h" #include <cstdint> #include "tensorflow/lite/core/api/profiler.h" namespace tflite::telemetry { void TelemetryProfiler::AddEvent(const char* tag, EventType event_type, uint64_t metric, int64_t event_metadata1, ...
#include "tensorflow/lite/profiling/telemetry/profiler.h" #include <cstdint> #include <iostream> #include <memory> #include <string> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorflow/lite/core/c/c_api_types.h" #include "tensorflow/lite/core/c/common.h" #include "tensorflow/lite/profiling/telemetry/...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/profiling/telemetry/profiler.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/profiling/telemetry/profiler_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
665bfea1-89ee-49d0-99c1-042637e13beb
cpp
tensorflow/tensorflow
outfeed_receiver
third_party/xla/xla/python/outfeed_receiver.cc
third_party/xla/xla/python/outfeed_receiver_test.cc
#include "xla/python/outfeed_receiver.h" #include <sys/types.h> #include <cstdint> #include <memory> #include <optional> #include <queue> #include <string> #include <utility> #include <vector> #include "absl/base/thread_annotations.h" #include "absl/container/flat_hash_map.h" #include "absl/status/status.h" #include "a...
#include "xla/python/outfeed_receiver.h" #include <memory> #include <optional> #include <vector> #include "absl/status/status.h" #include "absl/synchronization/mutex.h" #include "xla/client/client_library.h" #include "xla/client/executable_build_options.h" #include "xla/client/xla_builder.h" #include "xla/pjrt/cpu/cpu_...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/outfeed_receiver.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/outfeed_receiver_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
92843351-d9ed-433d-8b94-3590ca2b505e
cpp
tensorflow/tensorflow
ops
tensorflow/compiler/mlir/python/mlir_wrapper/ops.cc
tensorflow/c/ops_test.cc
#include "mlir/Dialect/Func/IR/FuncOps.h" #include "mlir/IR/BuiltinOps.h" #include "mlir/IR/Operation.h" #include "tensorflow/compiler/mlir/python/mlir_wrapper/mlir_wrapper.h" #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h" void init_ops(py::module& m) { py::class_<mlir::Operation, std::unique_ptr<ml...
#include "tensorflow/c/ops.h" #include "absl/strings/str_cat.h" #include "tensorflow/c/c_api.h" #include "tensorflow/core/framework/attr_value.pb.h" #include "tensorflow/core/framework/fake_input.h" #include "tensorflow/core/framework/op_def.pb.h" #include "tensorflow/core/framework/op_def_builder.h" #include "tensorfl...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/python/mlir_wrapper/ops.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/c/ops_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
aa9eb069-6e9e-4c5a-9df4-5d8c7ab16540
cpp
tensorflow/tensorflow
xplane_to_profile_instructions
third_party/xla/xla/python/xplane_to_profile_instructions.cc
third_party/xla/xla/python/xplane_to_profile_instructions_test.cc
#include "xla/python/xplane_to_profile_instructions.h" #include <cstdint> #include <memory> #include <numeric> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/status/status.h" #include "absl/strings/match.h" #include "absl/strings/str_c...
#include "xla/python/xplane_to_profile_instructions.h" #include <cstdint> #include <memory> #include <string> #include "xla/service/hlo.pb.h" #include "xla/tests/verified_hlo_module.h" #include "xla/tsl/profiler/convert/xla_op_utils.h" #include "xla/tsl/profiler/rpc/client/save_profile.h" #include "xla/tsl/profiler/uti...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/xplane_to_profile_instructions.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/xplane_to_profile_instructions_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
c14d0579-faed-4c33-bc1a-ab53d3937844
cpp
tensorflow/tensorflow
aggregate_profile
third_party/xla/xla/python/aggregate_profile.cc
third_party/xla/xla/python/aggregate_profile_test.cc
#include "xla/python/aggregate_profile.h" #include <algorithm> #include <string> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/types/span.h" #include "xla/python/xplane_to_profile_instructions.h" namespace xla { void AggregateProfiledInstructionsProto( absl::Span<const tensorflow::profi...
#include "xla/python/aggregate_profile.h" #include <map> #include <string> #include <vector> #include "absl/types/span.h" #include "tsl/platform/test.h" #include "tsl/profiler/protobuf/profiled_instructions.pb.h" namespace xla { namespace { using tensorflow::profiler::ProfiledInstructionsProto; TEST(AggregateProfiledIn...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/aggregate_profile.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/aggregate_profile_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
c1927ee1-1ede-4759-a812-191e2251d57c
cpp
tensorflow/tensorflow
dlpack
tensorflow/c/eager/dlpack.cc
tensorflow/c/eager/dlpack_test.cc
#include "tensorflow/c/eager/dlpack.h" #include <string> #include "include/dlpack/dlpack.h" #include "tensorflow/c/eager/c_api.h" #include "tensorflow/c/eager/c_api_experimental.h" #include "tensorflow/c/eager/tfe_tensorhandle_internal.h" #include "tensorflow/c/tf_status_internal.h" #include "tensorflow/core/common_r...
#include "tensorflow/c/eager/dlpack.h" #include <vector> #include "absl/strings/str_join.h" #include "include/dlpack/dlpack.h" #include "tensorflow/c/eager/c_api.h" #include "tensorflow/core/platform/test.h" namespace tensorflow { namespace { void TestHandleFromDLPack(TF_Status* status, TFE_Context* ctx, ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/c/eager/dlpack.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/c/eager/dlpack_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
0d8a30af-9d88-44c6-8cd3-014ba40aa72e
cpp
tensorflow/tensorflow
types
tensorflow/compiler/mlir/python/mlir_wrapper/types.cc
tensorflow/lite/toco/tflite/types_test.cc
#include "mlir/IR/BuiltinTypes.h" #include "tensorflow/compiler/mlir/python/mlir_wrapper/mlir_wrapper.h" #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h" void init_types(py::module& m) { py::class_<mlir::Type> Type(m, "Type"); py::class_<mlir::FunctionType, mlir::Type>(m, "FunctionType") .def("g...
#include "tensorflow/lite/toco/tflite/types.h" #include <complex> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "flatbuffers/buffer.h" #include "flatbuffers/flatbuffer_builder.h" #include "tensorflow/lite/schema/schema_generated.h" #include "tensorflow/lite/toco/model.h" #include "tensorflow/lite/toco/...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/python/mlir_wrapper/types.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/toco/tflite/types_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
07beb975-db15-4cb1-a542-c80f31965a03
cpp
tensorflow/tensorflow
sharding
third_party/xla/xla/python/ifrt/sharding.cc
third_party/xla/xla/python/ifrt/sharding_test.cc
#include "xla/python/ifrt/sharding.h" #include <cstdint> #include <functional> #include <memory> #include <optional> #include <ostream> #include <string> #include <utility> #include <variant> #include <vector> #include "absl/algorithm/container.h" #include "absl/log/check.h" #include "absl/strings/str_cat.h" #include "...
#include "xla/python/ifrt/sharding.h" #include <memory> #include <optional> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "llvm/Support/Casting.h" #include "xla/python/ifrt/device_list.h" #include "xla/python/ifrt/device_test_util.h" #include "xla/python/ifrt/index.h" #...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/sharding.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/sharding_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
ff4abb2c-ab85-4700-8461-1d3ad21f9d18
cpp
tensorflow/tensorflow
xla_compiler
tensorflow/compiler/tf2xla/xla_compiler.cc
tensorflow/compiler/tf2xla/xla_compiler_test.cc
#include "tensorflow/compiler/tf2xla/xla_compiler.h" #include <algorithm> #include <array> #include <map> #include <memory> #include <numeric> #include <optional> #include <set> #include <string> #include <unordered_map> #include <utility> #include <vector> #include "tensorflow/compiler/mlir/tf2xla/mlir_bridge_rollout_...
#include "tensorflow/compiler/tf2xla/xla_compiler.h" #include "absl/strings/match.h" #include "tensorflow/cc/framework/ops.h" #include "tensorflow/cc/ops/const_op.h" #include "tensorflow/cc/ops/data_flow_ops.h" #include "tensorflow/cc/ops/function_ops.h" #include "tensorflow/cc/ops/functional_ops.h" #include "tensorflo...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/tf2xla/xla_compiler.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/tf2xla/xla_compiler_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
85d220d5-9ed3-477a-8730-5b2484f55ad5
cpp
tensorflow/tensorflow
logging
tensorflow/c/logging.cc
third_party/xla/third_party/tsl/tsl/platform/logging_test.cc
#include "tensorflow/c/logging.h" #include "tensorflow/core/platform/logging.h" #include "tensorflow/core/platform/stringprintf.h" static ::tensorflow::string BuildMessage(const char* fmt, va_list args) { ::tensorflow::string message; ::tensorflow::strings::Appendv(&message, fmt, args); return message; } void TF_...
#include "tsl/platform/logging.h" #include <cerrno> #include <cstddef> #include <cstdio> #include <cstdlib> #include <memory> #include <sstream> #include <vector> #include "absl/base/log_severity.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_format.h" #include "absl/str...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/c/logging.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/third_party/tsl/tsl/platform/logging_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
131efe9b-b444-418c-9737-d0c1475dd8de
cpp
tensorflow/tensorflow
pjrt_attribute_map_util
third_party/xla/xla/python/pjrt_ifrt/pjrt_attribute_map_util.cc
third_party/xla/xla/python/pjrt_ifrt/pjrt_attribute_map_util_test.cc
#include "xla/python/pjrt_ifrt/pjrt_attribute_map_util.h" #include <cstdint> #include <string> #include <type_traits> #include <utility> #include <variant> #include <vector> #include "absl/container/flat_hash_map.h" #include "xla/pjrt/pjrt_common.h" #include "xla/python/ifrt/attribute_map.h" namespace xla { namespace i...
#include "xla/python/pjrt_ifrt/pjrt_attribute_map_util.h" #include <cstdint> #include <string> #include <vector> #include <gtest/gtest.h> #include "absl/container/flat_hash_map.h" #include "xla/pjrt/pjrt_common.h" #include "xla/python/ifrt/attribute_map.h" namespace xla { namespace ifrt { namespace { TEST(PjRtAttribute...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/pjrt_ifrt/pjrt_attribute_map_util.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/pjrt_ifrt/pjrt_attribute_map_util_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
cea0912d-1692-4ae8-ae3b-f70f75185623
cpp
tensorflow/tensorflow
basic_string_array
third_party/xla/xla/python/pjrt_ifrt/basic_string_array.cc
third_party/xla/xla/python/pjrt_ifrt/basic_string_array_test.cc
#include "xla/python/pjrt_ifrt/basic_string_array.h" #include <cstdint> #include <memory> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/hash/hash.h" #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h"...
#include "xla/python/pjrt_ifrt/basic_string_array.h" #include <cstdint> #include <memory> #include <numeric> #include <optional> #include <string> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/log/log.h" #include "absl/status/status.h" #include "absl/strings/str_c...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/pjrt_ifrt/basic_string_array.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/pjrt_ifrt/basic_string_array_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
d37fb101-53be-457f-b13d-5254be7b4fa6
cpp
tensorflow/tensorflow
xla_sharding_serdes
third_party/xla/xla/python/pjrt_ifrt/xla_sharding_serdes.cc
third_party/xla/xla/python/pjrt_ifrt/xla_sharding_serdes_test.cc
#include <memory> #include <string> #include <utility> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/string_view.h" #include "llvm/Support/Casting.h" #include "llvm/Support/ExtensibleRTTI.h" #include "xla/hlo/ir/hlo_sharding.h" #include "xla/python/ifrt/device_list.h" #include...
#include <cstdint> #include <memory> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/functional/bind_front.h" #include "absl/types/span.h" #include "xla/hlo/ir/hlo_sharding.h" #include "xla/python/ifrt/client.h" #include "xla/python/ifrt/device_test_util.h" #include "xla/python/ifrt/memory.h" #include ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/pjrt_ifrt/xla_sharding_serdes.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/pjrt_ifrt/xla_sharding_serdes_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
134c7f20-751e-43a1-9c82-a54fe7d13ce3
cpp
tensorflow/tensorflow
xla_sharding
third_party/xla/xla/python/pjrt_ifrt/xla_sharding.cc
third_party/xla/xla/python/pjrt_ifrt/xla_sharding_test.cc
#include "xla/python/pjrt_ifrt/xla_sharding.h" #include <algorithm> #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_format.h" #include "absl/ty...
#include "xla/python/pjrt_ifrt/xla_sharding.h" #include <memory> #include <optional> #include <utility> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/types/span.h" #include "xla/hlo/ir/hlo_sharding.h" #include "xla/hlo/ir/tile_assignment.h" #include "xla/python/ifrt/device_list.h" #include "xla/pytho...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/pjrt_ifrt/xla_sharding.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/pjrt_ifrt/xla_sharding_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
fc72ca28-1a60-4ddb-be48-f5dd209aa2ef
cpp
tensorflow/tensorflow
ifrt_backend
third_party/xla/xla/python/ifrt_proxy/server/ifrt_backend.cc
third_party/xla/xla/python/ifrt_proxy/server/ifrt_backend_test.cc
#include "xla/python/ifrt_proxy/server/ifrt_backend.h" #include <cstdint> #include <cstring> #include <functional> #include <memory> #include <numeric> #include <optional> #include <string> #include <utility> #include <variant> #include <vector> #include "absl/base/thread_annotations.h" #include "absl/cleanup/cleanup.h...
#include "xla/python/ifrt_proxy/server/ifrt_backend.h" #include <sys/types.h> #include <cstdint> #include <functional> #include <memory> #include <optional> #include <string> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/base/thread_annotations.h" #include "absl/c...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt_proxy/server/ifrt_backend.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt_proxy/server/ifrt_backend_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
5d9b7217-eb9e-46b0-9e7b-11565ed43a00
cpp
tensorflow/tensorflow
host_buffer
third_party/xla/xla/python/ifrt_proxy/server/host_buffer.cc
third_party/xla/xla/python/ifrt_proxy/server/host_buffer_test.cc
#include "xla/python/ifrt_proxy/server/host_buffer.h" #include <memory> #include <string> #include <utility> #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/synchronization/mutex.h" namespace xla { namespace ifrt { namespace ...
#include "xla/python/ifrt_proxy/server/host_buffer.h" #include <cstdint> #include <string> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "tsl/platform/status_matchers.h" namespace xla { namespace ifrt { namespace proxy { namespace { using ::testing::Pointee; using ::tsl::tes...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt_proxy/server/host_buffer.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt_proxy/server/host_buffer_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
0cade028-d640-4047-8bf8-abf849d918d7
cpp
tensorflow/tensorflow
grpc_service_impl
third_party/xla/xla/python/ifrt_proxy/server/grpc_service_impl.cc
third_party/xla/xla/python/ifrt_proxy/server/grpc_service_impl_test.cc
#include "xla/python/ifrt_proxy/server/grpc_service_impl.h" #include <atomic> #include <cstdint> #include <memory> #include <string> #include <utility> #include "absl/cleanup/cleanup.h" #include "absl/log/check.h" #include "absl/log/log.h" #include "absl/status/status.h" #include "absl/strings/str_cat.h" #include "absl...
#include "xla/python/ifrt_proxy/server/grpc_service_impl.h" #include <cstdint> #include <memory> #include <string> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/log/log.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/cord.h" #include "absl/strings/str_cat.h...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt_proxy/server/grpc_service_impl.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt_proxy/server/grpc_service_impl_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
04433fb2-7496-4b2a-81ed-6816e4136e92
cpp
tensorflow/tensorflow
grpc_server
third_party/xla/xla/python/ifrt_proxy/server/grpc_server.cc
third_party/xla/xla/python/ifrt_proxy/server/grpc_server_test.cc
#include "xla/python/ifrt_proxy/server/grpc_server.h" #include <cstdint> #include <memory> #include <string> #include <utility> #include "absl/functional/any_invocable.h" #include "absl/memory/memory.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/st...
#include "xla/python/ifrt_proxy/server/grpc_server.h" #include <memory> #include <utility> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "absl/strings/str_cat.h" #include "xla/python/ifrt_proxy/common/grpc_ifrt_service.grpc.pb.h" #include "tsl/platform/status_matchers.h" #in...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt_proxy/server/grpc_server.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt_proxy/server/grpc_server_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
160aad35-3fdd-4e79-a85d-a8b2a9e081e4
cpp
tensorflow/tensorflow
version
third_party/xla/xla/python/ifrt_proxy/server/version.cc
third_party/xla/xla/python/ifrt_proxy/server/version_test.cc
#include "xla/python/ifrt_proxy/server/version.h" #include <algorithm> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" namespace xla { namespace ifrt { namespace proxy { absl::StatusOr<int> ChooseVersion(int client_min_version, int cl...
#include "xla/python/ifrt_proxy/server/version.h" #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "tsl/platform/status_matchers.h" namespace xla { namespace ifrt { namespace proxy { namespace { using ::tsl::testing::IsOk; using ::tsl::testing::StatusIs; struct Param { int cl...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt_proxy/server/version.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt_proxy/server/version_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
363476b4-86dd-4517-8a90-829165178641
cpp
tensorflow/tensorflow
array_util
third_party/xla/xla/python/ifrt_proxy/common/array_util.cc
third_party/xla/xla/python/ifrt_proxy/common/array_util_test.cc
#include "xla/python/ifrt_proxy/common/array_util.h" #include <string> #include <vector> #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/strings/str_join.h" #include "absl/strings/string_view.h" #include "xla/python/ifrt/dtyp...
#include "xla/python/ifrt_proxy/common/array_util.h" #include <cstddef> #include <cstdint> #include <optional> #include <string> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/strings/string_view.h" #include "xla/python/ifrt/dtype.h" #include "xla/python/ifrt/shape.h" #include "tsl/p...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt_proxy/common/array_util.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt_proxy/common/array_util_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
392aa368-f3b4-4624-abe5-8318bc62bf19
cpp
tensorflow/tensorflow
test_utils
tensorflow/compiler/mlir/tfrt/translate/mlrt/test_utils.cc
tensorflow/core/lib/monitoring/test_utils_test.cc
#include "tensorflow/compiler/mlir/tfrt/translate/mlrt/test_utils.h" #include <algorithm> #include <cstring> #include <functional> #include <numeric> #include <string> #include <utility> #include <vector> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "tenso...
#include "tensorflow/core/lib/monitoring/test_utils.h" #include <string> #include "tensorflow/core/lib/monitoring/types.h" #include "tensorflow/core/platform/errors.h" #include "tensorflow/core/platform/protobuf.h" #include "tensorflow/core/platform/status.h" #include "tensorflow/core/platform/status_matchers.h" #inclu...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/tfrt/translate/mlrt/test_utils.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/lib/monitoring/test_utils_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
8ba9fb26-5b1e-47d3-8a9e-005dcae536cb
cpp
tensorflow/tensorflow
executable
third_party/xla/xla/service/executable.cc
tensorflow/core/tfrt/mlrt/bytecode/executable_test.cc
#include "xla/service/executable.h" #include <memory> #include "absl/status/status.h" #include "absl/strings/str_format.h" #include "xla/debug_options_flags.h" #include "xla/service/dump.h" #include "xla/service/hlo_graph_dumper.h" #include "xla/service/maybe_owning_device_memory.h" #include "xla/status_macros.h" #incl...
#include "tensorflow/core/tfrt/mlrt/bytecode/executable.h" #include <cstring> #include <string> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "tensorflow/core/tfrt/mlrt/bytecode/bytecode.h" namespace mlrt { namespace bc { namespace { TEST(ExecutableTest, Executable) { bc::Buffer buffer; bc::Allocator a...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/executable.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/tfrt/mlrt/bytecode/executable_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
f724d8e5-774c-4366-8f95-a977c6960432
cpp
tensorflow/tensorflow
grpc_client_session
third_party/xla/xla/python/ifrt_proxy/client/grpc_client_session.cc
third_party/xla/xla/python/ifrt_proxy/client/grpc_client_session_test.cc
#include "xla/python/ifrt_proxy/client/grpc_client_session.h" #include <cstdint> #include <functional> #include <memory> #include <optional> #include <string> #include <utility> #include "absl/base/call_once.h" #include "absl/base/thread_annotations.h" #include "absl/container/flat_hash_map.h" #include "absl/functional...
#include "xla/python/ifrt_proxy/client/grpc_client_session.h" #include <atomic> #include <functional> #include <memory> #include <optional> #include <string> #include <utility> #include <variant> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/base/thread_annotations.h" #include "absl...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt_proxy/client/grpc_client_session.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt_proxy/client/grpc_client_session_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
4649cce1-3b5d-4cf7-8780-4bdd02283558
cpp
tensorflow/tensorflow
rpc_helper
third_party/xla/xla/python/ifrt_proxy/client/rpc_helper.cc
third_party/xla/xla/python/ifrt_proxy/client/rpc_helper_test.cc
#include "xla/python/ifrt_proxy/client/rpc_helper.h" #include <array> #include <cstdint> #include <memory> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/base/thread_annotations.h" #include "absl/functional/bind_front.h" #include "absl/log/check.h" #include "absl/log/log.h" #i...
#include "xla/python/ifrt_proxy/client/rpc_helper.h" #include <memory> #include <utility> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/synchronization/mutex.h" #include "absl/time/time.h" #include "xla/python/ifrt/future.h" #include "xla/py...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt_proxy/client/rpc_helper.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt_proxy/client/rpc_helper_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
957c48a5-fd83-42db-b8cb-de8f81d5dac2
cpp
tensorflow/tensorflow
compiler
tensorflow/lite/delegates/gpu/gl/compiler.cc
third_party/xla/xla/service/compiler_test.cc
#include "tensorflow/lite/delegates/gpu/gl/compiler.h" #include <algorithm> #include <any> #include <memory> #include <string> #include <unordered_set> #include <utility> #include <variant> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/memory/memory.h" #include "absl/types/any.h" #include "...
#include "xla/service/compiler.h" #include <gtest/gtest.h> #include "xla/autotune_results.pb.h" #include "xla/stream_executor/device_description.pb.h" #include "xla/stream_executor/gpu/gpu_init.h" #include "xla/stream_executor/stream_executor.h" #include "xla/tests/test_macros.h" #include "xla/tsl/lib/core/status_test_...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/delegates/gpu/gl/compiler.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/compiler_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
f3b52274-8026-4ff3-9390-a910d61136c0
cpp
tensorflow/tensorflow
array_spec
third_party/xla/xla/python/ifrt/array_spec.cc
third_party/xla/xla/python/ifrt/array_spec_test.cc
#include "xla/python/ifrt/array_spec.h" #include <string> #include <utility> #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "xla/python/ifrt/array_spec.pb.h" #include "xla/python/ifrt/device.h" #include "xla/python/ifrt/dtype.h" #include "xla/python/ifrt/shape.h" #include "xla/python/ifrt/...
#include "xla/python/ifrt/array_spec.h" #include <gtest/gtest.h> #include "absl/status/statusor.h" #include "llvm/Support/Casting.h" #include "xla/python/ifrt/array_spec.pb.h" #include "xla/python/ifrt/device.h" #include "xla/python/ifrt/device_test_util.h" #include "xla/python/ifrt/dtype.h" #include "xla/python/ifrt/m...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/array_spec.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/array_spec_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
387533af-8dbc-4729-9ca7-b372cd4e2a20
cpp
tensorflow/tensorflow
value
third_party/xla/xla/python/ifrt/value.cc
tensorflow/core/tfrt/mlrt/interpreter/value_test.cc
#include "xla/python/ifrt/value.h" namespace xla { namespace ifrt { char Value::ID = 0; } }
#include "tensorflow/core/tfrt/mlrt/interpreter/value.h" #include <utility> #include <gtest/gtest.h> #include "absl/strings/string_view.h" namespace mlrt { namespace { TEST(ValueTest, SmallCopyable) { struct SmallCopyable { int v; }; Value value(SmallCopyable{100}); EXPECT_EQ(value.Get<SmallCopyable>().v, 1...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/value.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/tfrt/mlrt/interpreter/value_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
8065cdc5-9bf1-4411-a088-8e357458b8c8
cpp
tensorflow/tensorflow
custom_call_program_serdes
third_party/xla/xla/python/ifrt/custom_call_program_serdes.cc
third_party/xla/xla/python/ifrt/custom_call_program_serdes_test.cc
#include <memory> #include <string> #include <utility> #include <vector> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/cord.h" #include "absl/strings/string_view.h" #include "llvm/Support/Casting.h" #include "llvm/Support/ExtensibleRTTI.h" #include "xla/python/ifrt/array_spec....
#include <memory> #include <utility> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/functional/bind_front.h" #include "absl/status/status.h" #include "absl/strings/cord.h" #include "llvm/Support/Casting.h" #include "xla/python/ifrt/array_spec.h" #include "xla/python/ifrt/client.h" #include "xla/python...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/custom_call_program_serdes.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/custom_call_program_serdes_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
4c398408-d0f2-4cfb-a406-fe8a0f809c2d
cpp
tensorflow/tensorflow
device_list
third_party/xla/xla/python/ifrt/device_list.cc
third_party/xla/xla/python/ifrt/device_list_test.cc
#include "xla/python/ifrt/device_list.h" #include <atomic> #include <cstdint> #include <string> #include <utility> #include <vector> #include "absl/base/call_once.h" #include "absl/base/optimization.h" #include "absl/hash/hash.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/strings...
#include "xla/python/ifrt/device_list.h" #include <algorithm> #include <cstdint> #include <memory> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/statusor.h" #include "absl/types/span.h" #include "xla/python/ifrt/device.h" #include "xla/python/ifrt/device.pb...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/device_list.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/device_list_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
86b85201-3336-4062-a4b9-5007b589da3e
cpp
tensorflow/tensorflow
index_domain
third_party/xla/xla/python/ifrt/index_domain.cc
third_party/xla/xla/python/ifrt/index_domain_test.cc
#include "xla/python/ifrt/index_domain.h" #include <ostream> #include <string> #include "absl/strings/str_cat.h" namespace xla { namespace ifrt { std::string IndexDomain::DebugString() const { return absl::StrCat("IndexDomain(origin=", origin_.DebugString(), ",shape=", shape_.DebugString(), ")")...
#include "xla/python/ifrt/index_domain.h" #include <memory> #include <utility> #include <vector> #include <gtest/gtest.h> #include "absl/hash/hash_testing.h" #include "xla/python/ifrt/index.h" #include "xla/python/ifrt/shape.h" namespace xla { namespace ifrt { namespace { TEST(IndexDomainTest, Construction) { IndexDo...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/index_domain.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/index_domain_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
c504c794-17d6-46c9-82b6-e56d0e7dac4f
cpp
tensorflow/tensorflow
serdes
third_party/xla/xla/python/ifrt/serdes.cc
third_party/xla/xla/python/ifrt/serdes_test.cc
#include "xla/python/ifrt/serdes.h" #include <memory> #include <string> #include <utility> #include "absl/base/thread_annotations.h" #include "absl/container/flat_hash_map.h" #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/st...
#include "xla/python/ifrt/serdes.h" #include <memory> #include <string> #include <utility> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/numbers.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #includ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/serdes.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/serdes_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
901d41c8-873e-4d38-b328-5d78ce6e163b
cpp
tensorflow/tensorflow
dtype
third_party/xla/xla/python/ifrt/dtype.cc
third_party/xla/xla/python/ifrt/dtype_test.cc
#include "xla/python/ifrt/dtype.h" #include <optional> #include <ostream> #include <string> #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "xla/python/ifrt/dtype.pb.h" namespace xla { namespace ifrt { std::optional<int> DType::byte_size() const { switch (kind_) { case kS2: case k...
#include "xla/python/ifrt/dtype.h" #include <optional> #include <tuple> #include <vector> #include <gtest/gtest.h> #include "xla/python/ifrt/dtype.pb.h" #include "tsl/platform/statusor.h" #include "tsl/platform/test.h" namespace xla { namespace ifrt { namespace { TEST(DTypeTest, FromToFromProto) { for (int i = 0; i <...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/dtype.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/dtype_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
28604415-bb4e-4d01-bd3b-610ccff48128
cpp
tensorflow/tensorflow
test_util
tensorflow/compiler/jit/test_util.cc
tensorflow/lite/kernels/shim/test_util_test.cc
#include "tensorflow/compiler/jit/test_util.h" #include <memory> #include <optional> #include <string> #include <utility> #include "tensorflow/compiler/jit/shape_inference.h" #include "xla/status_macros.h" #include "tensorflow/core/framework/device_factory.h" #include "tensorflow/core/public/version.h" namespace tensor...
#include "tensorflow/lite/kernels/shim/test_util.h" #include <string> #include <gtest/gtest.h> #include "tensorflow/lite/core/interpreter.h" namespace tflite { namespace { TEST(TfliteTensorDebugString, Basic) { ::tflite::Interpreter interpreter; interpreter.AddTensors(3); interpreter.AllocateTensors(); auto t_i...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/jit/test_util.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/kernels/shim/test_util_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
cd5d9ea9-18fe-4df4-93c5-bc52f4a12e63
cpp
tensorflow/tensorflow
plugin_program_serdes
third_party/xla/xla/python/ifrt/plugin_program_serdes.cc
third_party/xla/xla/python/ifrt/plugin_program_serdes_test.cc
#include <memory> #include <string> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/match.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #include "llvm/Support/Casting.h" #include "llvm/Support/ExtensibleRTTI.h" #include "xla/python/ifrt/plugin_progra...
#include <memory> #include <gtest/gtest.h> #include "xla/python/ifrt/plugin_program.h" #include "xla/python/ifrt/serdes.h" #include "xla/python/ifrt/serdes.pb.h" #include "xla/tsl/lib/core/status_test_util.h" #include "xla/tsl/protobuf/status.pb.h" #include "tsl/platform/statusor.h" #include "tsl/protobuf/error_codes.p...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/plugin_program_serdes.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/plugin_program_serdes_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
eab7bed0-da11-471e-bab9-a472e9e04c08
cpp
tensorflow/tensorflow
remap_plan
third_party/xla/xla/python/ifrt/remap_plan.cc
third_party/xla/xla/python/ifrt/remap_plan_test.cc
#include "xla/python/ifrt/remap_plan.h" #include <cstdint> #include <memory> #include <string> #include <utility> #include <vector> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/strings/str_join.h" #include "absl/types/span.h" #include "xla/python/ifr...
#include "xla/python/ifrt/remap_plan.h" #include <memory> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/functional/bind_front.h" #include "absl/status/status.h" #include "llvm/Support/Casting.h" #include "xla/python/ifrt/array_spec.h" #include "xla/python/ifrt/device.h" #include "xl...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/remap_plan.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/remap_plan_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
ed33b6cb-931a-44ad-a7c0-aa72370d85d7
cpp
tensorflow/tensorflow
tuple
third_party/xla/xla/hlo/builder/lib/tuple.cc
third_party/xla/xla/hlo/builder/lib/tuple_test.cc
#include "xla/hlo/builder/lib/tuple.h" #include <utility> #include "absl/container/inlined_vector.h" #include "absl/status/statusor.h" #include "xla/hlo/builder/xla_builder.h" #include "xla/shape.h" #include "xla/shape_tree.h" #include "xla/shape_util.h" #include "tsl/platform/statusor.h" namespace xla { absl::StatusOr...
#include "xla/hlo/builder/lib/tuple.h" #include <cstdint> #include <memory> #include <utility> #include "xla/error_spec.h" #include "xla/hlo/builder/xla_builder.h" #include "xla/literal.h" #include "xla/literal_util.h" #include "xla/service/service.h" #include "xla/shape.h" #include "xla/shape_tree.h" #include "xla/sha...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/builder/lib/tuple.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/builder/lib/tuple_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
080bb713-9ec6-4917-8c00-a8802f2a3a3c
cpp
tensorflow/tensorflow
attribute_map
tensorflow/lite/core/async/interop/c/attribute_map.cc
tensorflow/lite/core/async/interop/c/attribute_map_test.cc
#include "tensorflow/lite/core/async/interop/c/attribute_map.h" #include <cstddef> #include <cstdint> #include "tensorflow/lite/core/async/interop/attribute_map_internal.h" #include "tensorflow/lite/core/async/interop/c/types.h" extern "C" { TfLiteAttributeMap* TfLiteAttributeMapCreate(TfLiteAttrMapType type) { retur...
#include "tensorflow/lite/core/async/interop/c/attribute_map.h" #include <cstddef> #include <cstdint> #include <gtest/gtest.h> #include "tensorflow/lite/core/async/interop/c/types.h" namespace { TEST(AttributeMapTest, AttributeMapCreateTypeCheckTest) { { auto* attr = TfLiteAttributeMapCreate(kTfLiteAttrMapTypeBuf...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/core/async/interop/c/attribute_map.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/core/async/interop/c/attribute_map_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
56ea50e1-e04c-4cea-bb42-857fa1568bc0
cpp
tensorflow/tensorflow
index
third_party/xla/xla/python/ifrt/index.cc
third_party/xla/xla/python/ifrt/index_test.cc
#include "xla/python/ifrt/index.h" #include <ostream> #include <string> #include "absl/strings/str_cat.h" #include "absl/strings/str_join.h" namespace xla { namespace ifrt { std::string Index::DebugString() const { return absl::StrCat("[", absl::StrJoin(elements_, ","), "]"); } std::ostream& operator<<(std::ostream& ...
#include "xla/python/ifrt/index.h" #include <memory> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/hash/hash_testing.h" namespace xla { namespace ifrt { namespace { using ::testing::ElementsAre; TEST(IndexTest, Construction) { EXPECT_THAT(Index({1, 2}).elements(...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/index.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/index_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
eb5aeb38-bfcb-4297-bbdf-da5dfa1107c5
cpp
tensorflow/tensorflow
memory
third_party/xla/xla/python/ifrt/memory.cc
third_party/xla/xla/python/ifrt/memory_test.cc
#include "xla/python/ifrt/memory.h" #include <optional> #include <string> #include <utility> #include "absl/base/thread_annotations.h" #include "absl/container/node_hash_set.h" #include "absl/strings/string_view.h" #include "absl/synchronization/mutex.h" #include "xla/python/ifrt/device.h" namespace xla { namespace ifr...
#include "xla/python/ifrt/memory.h" #include <memory> #include <optional> #include <string> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/strings/str_cat.h" using ::testing::Optional; namespace xla { namespace ifrt { namespace { TEST(MemoryKindTest, EqualityForUnspecified) { MemoryKind memory_kind1...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/memory.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/memory_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
a94ec4bd-38b0-43ce-b94c-ab20abb9e699
cpp
tensorflow/tensorflow
sharding_serdes
third_party/xla/xla/python/ifrt/sharding_serdes.cc
third_party/xla/xla/python/ifrt/sharding_serdes_test.cc
#include <memory> #include <string> #include <utility> #include <vector> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/string_view.h" #include "llvm/Support/Casting.h" #include "llvm/Support/ExtensibleRTTI.h" #include "xla/python/ifrt/device.h" #include "xla/python/ifrt/device...
#include <memory> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/functional/bind_front.h" #include "xla/python/ifrt/client.h" #include "xla/python/ifrt/device_test_util.h" #include "xla/python/ifrt/memory.h" #include "xla/python/ifrt/serdes.h" #include "xla/python/ifrt/serdes.pb.h" #...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/sharding_serdes.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/sharding_serdes_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
acbd2b8c-12d1-4da6-b36c-77c6289018e6
cpp
tensorflow/tensorflow
ifrt_ir_program_serdes
third_party/xla/xla/python/ifrt/ir/ifrt_ir_program_serdes.cc
third_party/xla/xla/python/ifrt/ir/ifrt_ir_program_serdes_test.cc
#include <memory> #include <string> #include <utility> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_format.h" #include "absl/strings/string_view.h" #include "llvm/Support/Casting.h" #include "llvm/Support/ExtensibleRTTI.h" #include "llvm/Support/raw_ostream.h" #include "m...
#include <memory> #include <string> #include <utility> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "absl/strings/string_view.h" #include "llvm/Support/raw_ostream.h" #include "mlir/IR/BuiltinOps.h" #include "mlir/IR/MLIRContext.h" #include "mlir/IR/OperationSupport.h" #inc...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/ir/ifrt_ir_program_serdes.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/ir/ifrt_ir_program_serdes_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
134ec802-5d04-47ce-83bd-c7083b178e4b
cpp
tensorflow/tensorflow
sharding_conversions
third_party/xla/xla/python/ifrt/support/sharding_conversions.cc
third_party/xla/xla/python/ifrt/support/sharding_conversions_test.cc
#include "xla/python/ifrt/support/sharding_conversions.h" #include <cstdint> #include <utility> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/strings/str_format.h" #include "absl/types/span.h" #include "llvm/ADT/STLExtras.h" #include "llvm/ADT/SmallVe...
#include "xla/python/ifrt/support/sharding_conversions.h" #include <memory> #include <numeric> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/container/flat_hash_map.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/support/sharding_conversions.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/support/sharding_conversions_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
d0c9aec6-77ab-4a35-8e60-bb07389258da
cpp
tensorflow/tensorflow
hlo_program_serdes
third_party/xla/xla/python/ifrt/hlo/hlo_program_serdes.cc
third_party/xla/xla/python/ifrt/hlo/hlo_program_serdes_test.cc
#include <memory> #include <string> #include <utility> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #include "llvm/Support/Casting.h" #include "llvm/Support/ExtensibleRTTI.h" #include "mlir/IR/BuiltinOps.h" #include "mlir/IR/Ow...
#include <memory> #include <utility> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/log/log.h" #include "absl/status/status.h" #include "absl/strings/string_view.h" #include "llvm/Support/Casting.h" #include "mlir/Dialect/Func/IR/FuncOps.h" #include "mlir/IR/BuiltinDialect.h" #include "mlir/IR/Builtin...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/hlo/hlo_program_serdes.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/python/ifrt/hlo/hlo_program_serdes_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
174c1317-0ac1-4d0d-8fe0-760a2818d5a4
cpp
tensorflow/tensorflow
stats_calculator
third_party/xla/xla/tsl/util/stats_calculator.cc
third_party/xla/xla/tsl/util/stats_calculator_test.cc
#include "xla/tsl/util/stats_calculator.h" #include <iomanip> #include <map> #include <queue> #include <sstream> #include <string> namespace tsl { constexpr int kNodeTypeWidth = 40; StatsCalculator::StatsCalculator(const StatSummarizerOptions& options) : options_(options) {} std::string StatsCalculator::GetShortSum...
#include "xla/tsl/util/stats_calculator.h" #include <cfloat> #include "tsl/platform/test.h" namespace tsl { namespace { using Detail = StatsCalculator::Detail; TEST(StatsCalculatorTest, TotalTimeMs) { auto options = StatSummarizerOptions(); StatsCalculator calc(options); EXPECT_EQ(0, calc.num_runs()); calc.Upda...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/util/stats_calculator.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/util/stats_calculator_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
fd61695f-2245-4ebc-8116-3b853ed9f474
cpp
tensorflow/tensorflow
command_line_flags
tensorflow/compiler/mlir/lite/tools/command_line_flags.cc
tensorflow/lite/tools/command_line_flags_test.cc
#include "tensorflow/compiler/mlir/lite/tools/command_line_flags.h" #include <algorithm> #include <cstring> #include <functional> #include <iomanip> #include <numeric> #include <sstream> #include <string> #include <unordered_map> #include <utility> #include <vector> #include "absl/log/log.h" #include "absl/strings/matc...
#include "tensorflow/lite/tools/command_line_flags.h" #include <string> #include <gtest/gtest.h> #include "tensorflow/lite/tools/tool_params.h" namespace tflite { namespace { TEST(CommandLineFlagsTest, BasicUsage) { int some_int32 = 10; int some_int1 = 8; int some_int2 = 9; int64_t some_int64 = 21474836470;...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/lite/tools/command_line_flags.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/tools/command_line_flags_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
7706d990-1619-4cbd-8817-82820269533e
cpp
tensorflow/tensorflow
reporter
third_party/xla/xla/tsl/util/reporter.cc
tensorflow/core/util/reporter_test.cc
#include "xla/tsl/util/reporter.h" #include "tsl/platform/errors.h" #include "tsl/platform/mutex.h" #include "tsl/platform/str_util.h" namespace tsl { TestReportFile::TestReportFile(const string& fname, const string& test_name) : closed_(true), fname_(fname), test_name_(test_name) {} absl::Status TestReportFile::Ap...
#define _XOPEN_SOURCE #include <cstdlib> #include "tensorflow/core/util/reporter.h" #include "tensorflow/core/lib/core/status_test_util.h" #include "tensorflow/core/lib/strings/str_util.h" #include "tensorflow/core/lib/strings/strcat.h" #include "tensorflow/core/platform/protobuf.h" #include "tensorflow/core/platform...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/util/reporter.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/util/reporter_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
fa7caee5-32af-45de-b39f-cbd70c5eace5
cpp
tensorflow/tensorflow
determinism
tensorflow/python/util/determinism.cc
third_party/xla/xla/service/gpu/determinism_test.cc
#include "tensorflow/core/util/determinism.h" #include "pybind11/pybind11.h" PYBIND11_MODULE(_pywrap_determinism, m) { m.def("enable", &tensorflow::EnableOpDeterminism); m.def("is_enabled", &tensorflow::OpDeterminismRequired); }
#include <memory> #include <optional> #include <utility> #include <variant> #include <vector> #include <gtest/gtest.h> #include "absl/strings/string_view.h" #include "xla/hlo/ir/hlo_module.h" #include "xla/literal.h" #include "xla/service/gpu/autotuning/autotuner_util.h" #include "xla/service/gpu/tests/gpu_codegen_test...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/python/util/determinism.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/determinism_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
44ee2e2d-d074-4a87-b125-2bf59679e221
cpp
tensorflow/tensorflow
tracking_allocator
third_party/xla/xla/tsl/framework/tracking_allocator.cc
tensorflow/core/framework/tracking_allocator_test.cc
#include "xla/tsl/framework/tracking_allocator.h" #include "tsl/platform/env.h" #include "tsl/platform/logging.h" namespace tsl { TrackingAllocator::TrackingAllocator(Allocator* allocator, bool track_sizes) : allocator_(allocator), ref_(1), allocated_(0), high_watermark_(0), total_bytes_(0),...
#include "tensorflow/core/framework/tracking_allocator.h" #include <unordered_map> #include "tensorflow/core/framework/allocator.h" #include "tensorflow/core/platform/logging.h" #include "tensorflow/core/platform/mem.h" #include "tensorflow/core/platform/test.h" namespace tensorflow { class TestableSizeTrackingAllocato...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/framework/tracking_allocator.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/framework/tracking_allocator_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
99662d93-902f-4bd4-a780-65a01fee4b6b
cpp
tensorflow/tensorflow
allocator
third_party/xla/xla/tsl/framework/allocator.cc
tensorflow/core/framework/allocator_test.cc
#include "xla/tsl/framework/allocator.h" #include <atomic> #include "xla/tsl/framework/allocator_registry.h" #include "xla/tsl/framework/tracking_allocator.h" #include "tsl/platform/mem.h" #include "tsl/platform/mutex.h" #include "tsl/platform/strcat.h" #include "tsl/platform/stringprintf.h" #include "tsl/platform/type...
#include "tensorflow/core/framework/allocator.h" #include <algorithm> #include <vector> #include "xla/tsl/profiler/utils/xplane_utils.h" #include "tensorflow/core/framework/typed_allocator.h" #include "tensorflow/core/platform/logging.h" #include "tensorflow/core/platform/mem.h" #include "tensorflow/core/platform/test....
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/framework/allocator.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/framework/allocator_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
241962ce-9e32-45be-80a8-91426c83ee4c
cpp
tensorflow/tensorflow
device_id_manager
third_party/xla/xla/tsl/framework/device_id_manager.cc
tensorflow/core/common_runtime/device/device_id_manager_test.cc
#include "xla/tsl/framework/device_id_manager.h" #include <unordered_map> #include <vector> #include "absl/status/status.h" #include "absl/strings/str_cat.h" #include "xla/tsl/framework/device_id.h" #include "tsl/platform/errors.h" #include "tsl/platform/logging.h" #include "tsl/platform/macros.h" #include "tsl/platfor...
#include "tensorflow/core/common_runtime/device/device_id_manager.h" #include <vector> #include <gmock/gmock.h> #include "tensorflow/core/common_runtime/device/device_id.h" #include "tensorflow/core/framework/types.h" #include "tensorflow/core/lib/core/status_test_util.h" #include "tensorflow/core/platform/test.h" #inc...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/framework/device_id_manager.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/common_runtime/device/device_id_manager_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
1b92c6bd-6885-430a-9126-bdb0a1b79412
cpp
tensorflow/tensorflow
cancellation
third_party/xla/xla/tsl/framework/cancellation.cc
third_party/xla/xla/tsl/framework/cancellation_test.cc
#include "xla/tsl/framework/cancellation.h" #include <forward_list> #include "absl/memory/memory.h" #include "tsl/platform/errors.h" #include "tsl/platform/logging.h" #include "tsl/platform/status.h" namespace tsl { const CancellationToken CancellationManager::kInvalidToken = -1; CancellationManager::CancellationManage...
#include "xla/tsl/framework/cancellation.h" #include <algorithm> #include <memory> #include <numeric> #include <random> #include <vector> #include "tsl/platform/notification.h" #include "tsl/platform/status.h" #include "tsl/platform/test.h" #include "tsl/platform/threadpool.h" namespace tsl { TEST(Cancellation, SimpleN...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/framework/cancellation.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/framework/cancellation_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
89a83e9a-b2e7-4752-bf5f-15838cc840ee
cpp
tensorflow/tensorflow
device_id_utils
third_party/xla/xla/tsl/framework/device_id_utils.cc
third_party/xla/xla/tsl/framework/device_id_utils_test.cc
#include "xla/tsl/framework/device_id_utils.h" #include <numeric> #include <set> #include <string> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/status/status.h" #include "absl/strings/numbers.h" #include "xla/tsl/framework/device_id.h" #include "xla/tsl/framework/device_id_manager.h" #incl...
#include "xla/tsl/framework/device_id_utils.h" #include <string_view> #include <vector> #include "xla/tsl/framework/device_id_manager.h" #include "xla/tsl/lib/core/status_test_util.h" #include "xla/tsl/util/device_name_utils.h" #include "tsl/platform/status_matchers.h" namespace tsl { namespace { using ::testing::HasSu...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/framework/device_id_utils.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/framework/device_id_utils_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
78838912-1249-42c4-bc35-dbab34023c54
cpp
tensorflow/tensorflow
async_value
third_party/xla/xla/tsl/concurrency/async_value.cc
third_party/xla/xla/tsl/concurrency/async_value_test.cc
#include "xla/tsl/concurrency/async_value.h" #include <atomic> #include <cstdint> #include <cstdlib> #include <limits> #include <utility> #include "absl/base/optimization.h" #include "absl/container/inlined_vector.h" #include "absl/functional/any_invocable.h" #include "absl/synchronization/blocking_counter.h" #include ...
#include "xla/tsl/concurrency/async_value.h" #include <cstdint> #include <memory> #include <utility> #include "absl/status/status.h" #include "xla/tsl/concurrency/async_value_ref.h" #include "tsl/platform/test.h" namespace tsl { TEST(AsyncValueTest, ConstructedToError) { AsyncValue* value = MakeConstructedAsyncValueR...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/concurrency/async_value.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/concurrency/async_value_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
28137463-1133-408c-a2a4-1261817f14ef
cpp
tensorflow/tensorflow
async_value_ref
third_party/xla/xla/tsl/concurrency/async_value_ref.cc
third_party/xla/xla/tsl/concurrency/async_value_ref_test.cc
#include "xla/tsl/concurrency/async_value_ref.h" #include <string_view> #include <utility> #include "absl/status/status.h" #include "xla/tsl/concurrency/async_value.h" #include "xla/tsl/concurrency/ref_count.h" #include "tsl/platform/logging.h" namespace tsl { RCReference<IndirectAsyncValue> MakeIndirectAsyncValue() { ...
#include "xla/tsl/concurrency/async_value_ref.h" #include <any> #include <array> #include <atomic> #include <cstddef> #include <cstdint> #include <memory> #include <utility> #include <vector> #include "absl/functional/any_invocable.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/type...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/concurrency/async_value_ref.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/concurrency/async_value_ref_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
be356233-8fba-4b09-a422-fc77a6275b18
cpp
tensorflow/tensorflow
proto_serialization
third_party/xla/xla/tsl/lib/strings/proto_serialization.cc
tensorflow/core/lib/strings/proto_serialization_test.cc
#include "xla/tsl/lib/strings/proto_serialization.h" #include <cstring> #include <memory> #include "absl/memory/memory.h" #include "absl/strings/string_view.h" #include "xla/tsl/lib/gtl/inlined_vector.h" #include "tsl/platform/hash.h" #include "tsl/platform/logging.h" #include "tsl/platform/macros.h" namespace tsl { na...
#include "tensorflow/core/lib/strings/proto_serialization.h" #include <string> #include "absl/memory/memory.h" #include "tensorflow/core/framework/attr_value.pb.h" #include "tensorflow/core/framework/graph.pb.h" #include "tensorflow/core/framework/node_def.pb.h" #include "tensorflow/core/lib/gtl/inlined_vector.h" #incl...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/strings/proto_serialization.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/lib/strings/proto_serialization_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
57928c37-5683-4eb1-9be1-ec95f566df77
cpp
tensorflow/tensorflow
bitmap
third_party/xla/xla/tsl/lib/core/bitmap.cc
third_party/xla/xla/tsl/lib/core/bitmap_test.cc
#include "xla/tsl/lib/core/bitmap.h" #include <cstddef> #include <cstdint> #include <cstring> #include <string> #include "absl/numeric/bits.h" namespace tsl { namespace core { void Bitmap::Reset(size_t n) { const size_t num_words = NumWords(n); if (num_words != NumWords(nbits_)) { Word* w = new Word[num_words];...
#include "xla/tsl/lib/core/bitmap.h" #include "xla/tsl/lib/random/simple_philox.h" #include "tsl/platform/macros.h" #include "tsl/platform/test.h" namespace tsl { namespace core { namespace { size_t NextSize(size_t n) { return n + ((n < 75) ? 1 : 25); } static void MakeRandomBitmap(random::SimplePhilox* rnd, Bitmap* bi...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/core/bitmap.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/core/bitmap_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
4f642d61-6d96-4e9c-995b-78264081631f
cpp
tensorflow/tensorflow
crc32c
third_party/xla/xla/tsl/lib/hash/crc32c.cc
third_party/xla/xla/tsl/lib/hash/crc32c_test.cc
#include "xla/tsl/lib/hash/crc32c.h" #include <stdint.h> #include "absl/strings/cord.h" #include "absl/strings/string_view.h" #include "tsl/platform/types.h" namespace tsl { namespace crc32c { #if defined(TF_CORD_SUPPORT) uint32 Extend(uint32 crc, const absl::Cord &cord) { for (absl::string_view fragment : cord.Chunk...
#include "xla/tsl/lib/hash/crc32c.h" #include <string> #include "absl/strings/cord.h" #include "tsl/platform/logging.h" #include "tsl/platform/test.h" #include "tsl/platform/test_benchmark.h" #include "tsl/platform/types.h" namespace tsl { namespace crc32c { TEST(CRC, StandardResults) { char buf[32]; memset(buf, 0,...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/hash/crc32c.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/hash/crc32c_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
2137774c-d1b0-416b-93a9-b2e5d467fb5e
cpp
tensorflow/tensorflow
table
tensorflow/lite/kernels/table.cc
tensorflow/lite/kernels/table_test.cc
#include "tensorflow/lite/core/c/common.h" #include "tensorflow/lite/kernels/internal/common.h" #include "tensorflow/lite/kernels/internal/reference/integer_ops/lut.h" #include "tensorflow/lite/kernels/internal/tensor.h" #include "tensorflow/lite/kernels/kernel_util.h" namespace tflite { namespace ops { namespace custo...
#include <cmath> #include <limits> #include <type_traits> #include <vector> #include <gtest/gtest.h> #include "tensorflow/lite/kernels/internal/common.h" #include "tensorflow/lite/kernels/test_util.h" #include "tensorflow/lite/schema/schema_generated.h" namespace tflite { namespace ops { namespace custom { TfLiteRegist...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/kernels/table.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/kernels/table_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
4a4e2c3c-500f-4632-a6de-198ec052515a
cpp
tensorflow/tensorflow
inputbuffer
third_party/xla/xla/tsl/lib/io/inputbuffer.cc
third_party/xla/xla/tsl/lib/io/inputbuffer_test.cc
#include "xla/tsl/lib/io/inputbuffer.h" #include <algorithm> #include "tsl/platform/errors.h" #include "tsl/platform/logging.h" namespace tsl { namespace io { InputBuffer::InputBuffer(RandomAccessFile* file, size_t buffer_bytes) : file_(file), file_pos_(0), size_(buffer_bytes), buf_(new char[size_...
#include "xla/tsl/lib/io/inputbuffer.h" #include <vector> #include "xla/tsl/lib/core/status_test_util.h" #include "tsl/platform/coding.h" #include "tsl/platform/env.h" #include "tsl/platform/errors.h" #include "tsl/platform/logging.h" #include "tsl/platform/status.h" #include "tsl/platform/str_util.h" #include "tsl/pla...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/io/inputbuffer.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/io/inputbuffer_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea