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
4f18d1c7-9e2a-451b-b785-37047394c51e
cpp
tensorflow/tensorflow
inputstream_interface
third_party/xla/xla/tsl/lib/io/inputstream_interface.cc
third_party/xla/xla/tsl/lib/io/inputstream_interface_test.cc
#include "xla/tsl/lib/io/inputstream_interface.h" #include "tsl/platform/errors.h" namespace tsl { namespace io { static constexpr int64_t kMaxSkipSize = 8 * 1024 * 1024; absl::Status InputStreamInterface::SkipNBytes(int64_t bytes_to_skip) { if (bytes_to_skip < 0) { return errors::InvalidArgument("Can't skip a ne...
#include "xla/tsl/lib/io/inputstream_interface.h" #include "xla/tsl/lib/core/status_test_util.h" #include "tsl/platform/errors.h" #include "tsl/platform/test.h" namespace tsl { namespace io { namespace { class TestStringStream : public InputStreamInterface { public: explicit TestStringStream(const string& content) :...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/io/inputstream_interface.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/io/inputstream_interface_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
a8e264be-afcc-4991-9b90-65765527a036
cpp
tensorflow/tensorflow
random_inputstream
third_party/xla/xla/tsl/lib/io/random_inputstream.cc
third_party/xla/xla/tsl/lib/io/random_inputstream_test.cc
#include "xla/tsl/lib/io/random_inputstream.h" #include <memory> namespace tsl { namespace io { RandomAccessInputStream::RandomAccessInputStream(RandomAccessFile* file, bool owns_file) : file_(file), owns_file_(owns_file) {} RandomAccessInputStream::~RandomAccessInpu...
#include "xla/tsl/lib/io/random_inputstream.h" #include "xla/tsl/lib/core/status_test_util.h" #include "tsl/platform/env.h" #include "tsl/platform/test.h" namespace tsl { namespace io { namespace { TEST(RandomInputStream, ReadNBytes) { Env* env = Env::Default(); string fname = testing::TmpDir() + "/random_inputbuff...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/io/random_inputstream.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/io/random_inputstream_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
728c532d-716d-43c9-8ea2-fe54b64e4765
cpp
tensorflow/tensorflow
buffered_inputstream
third_party/xla/xla/tsl/lib/io/buffered_inputstream.cc
third_party/xla/xla/tsl/lib/io/buffered_inputstream_test.cc
#include "xla/tsl/lib/io/buffered_inputstream.h" #include "absl/status/status.h" #include "xla/tsl/lib/io/random_inputstream.h" namespace tsl { namespace io { BufferedInputStream::BufferedInputStream(InputStreamInterface* input_stream, size_t buffer_bytes, ...
#include "xla/tsl/lib/io/buffered_inputstream.h" #include "xla/tsl/lib/core/status_test_util.h" #include "xla/tsl/lib/io/random_inputstream.h" #include "tsl/platform/env.h" #include "tsl/platform/test.h" #include "tsl/platform/test_benchmark.h" namespace tsl { namespace io { namespace { static std::vector<int> BufferSi...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/io/buffered_inputstream.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/io/buffered_inputstream_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
974b7765-e143-439c-bdc2-2ea618027569
cpp
tensorflow/tensorflow
cache
third_party/xla/xla/tsl/lib/io/cache.cc
third_party/xla/xla/tsl/lib/io/cache_test.cc
#include "xla/tsl/lib/io/cache.h" #include <assert.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "tsl/platform/mutex.h" #include "tsl/platform/raw_coding.h" namespace tsl { namespace table { Cache::~Cache() {} namespace { struct LRUHandle { void* value; void (*deleter)(const Slice&, void* v...
#include "xla/tsl/lib/io/cache.h" #include <string> #include <vector> #include "tsl/platform/coding.h" #include "tsl/platform/raw_coding.h" #include "tsl/platform/test.h" namespace tsl { namespace table { static std::string EncodeKey(int k) { std::string result; core::PutFixed32(&result, k); return result; } stat...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/io/cache.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/io/cache_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
272d3b74-3a55-4eba-a682-59190d83978f
cpp
tensorflow/tensorflow
distribution_sampler
third_party/xla/xla/tsl/lib/random/distribution_sampler.cc
third_party/xla/xla/tsl/lib/random/distribution_sampler_test.cc
#include "xla/tsl/lib/random/distribution_sampler.h" #include <memory> #include <vector> #include "absl/types/span.h" namespace tsl { namespace random { DistributionSampler::DistributionSampler( const absl::Span<const float> weights) { DCHECK(!weights.empty()); int n = weights.size(); num_ = n; data_.reset(...
#include "xla/tsl/lib/random/distribution_sampler.h" #include <string.h> #include <memory> #include <vector> #include "xla/tsl/lib/random/simple_philox.h" #include "tsl/platform/macros.h" #include "tsl/platform/test.h" #include "tsl/platform/test_benchmark.h" #include "tsl/platform/types.h" namespace tsl { namespace ra...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/random/distribution_sampler.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/random/distribution_sampler_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
3e8d7744-e760-4b63-87c0-9027b944dc8f
cpp
tensorflow/tensorflow
weighted_picker
third_party/xla/xla/tsl/lib/random/weighted_picker.cc
third_party/xla/xla/tsl/lib/random/weighted_picker_test.cc
#include "xla/tsl/lib/random/weighted_picker.h" #include <string.h> #include <algorithm> #include "xla/tsl/lib/random/simple_philox.h" namespace tsl { namespace random { WeightedPicker::WeightedPicker(int N) { CHECK_GE(N, 0); N_ = N; num_levels_ = 1; while (LevelSize(num_levels_ - 1) < N) { num_levels_++; ...
#include "xla/tsl/lib/random/weighted_picker.h" #include <string.h> #include <vector> #include "xla/tsl/lib/random/simple_philox.h" #include "tsl/platform/logging.h" #include "tsl/platform/macros.h" #include "tsl/platform/test.h" #include "tsl/platform/test_benchmark.h" #include "tsl/platform/types.h" namespace tsl { n...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/random/weighted_picker.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/random/weighted_picker_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
4b58cfbf-7b21-47ea-86db-812d0b5e7490
cpp
tensorflow/tensorflow
simple_philox
third_party/xla/xla/tsl/lib/random/simple_philox.cc
third_party/xla/xla/tsl/lib/random/simple_philox_test.cc
#include "xla/tsl/lib/random/simple_philox.h" #include "xla/tsl/lib/random/exact_uniform_int.h" #include "tsl/platform/logging.h" namespace tsl { namespace random { uint32 SimplePhilox::Uniform(uint32 n) { return ExactUniformInt<uint32>(n, [this]() { return Rand32(); }); } uint64 SimplePhilox::Uniform64(uint64 n) { ...
#include "xla/tsl/lib/random/simple_philox.h" #include <set> #include <string> #include "tsl/platform/logging.h" #include "tsl/platform/test.h" #include "tsl/platform/types.h" namespace tsl { namespace random { namespace { TEST(SimplePhiloxTest, FloatTest) { PhiloxRandom philox(7, 7); SimplePhilox gen(&philox); s...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/random/simple_philox.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/random/simple_philox_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
2246b064-c684-4a2b-b593-8c40c777b2fc
cpp
tensorflow/tensorflow
random_distributions
third_party/xla/xla/tsl/lib/random/random_distributions.cc
third_party/xla/xla/tsl/lib/random/random_distributions_test.cc
#include "xla/tsl/lib/random/distribution_sampler.h" #include "xla/tsl/lib/random/philox_random.h" namespace tsl { namespace random { template <> void SingleSampleAdapter<PhiloxRandom>::SkipFromGenerator(uint64 num_skips) { generator_->Skip(num_skips); } } }
#include "xla/tsl/lib/random/random_distributions.h" #include <algorithm> #include <cmath> #include <functional> #include <numeric> #include <unordered_map> #include <vector> #include "xla/tsl/lib/math/math_util.h" #include "xla/tsl/lib/random/philox_random.h" #include "xla/tsl/lib/random/philox_random_test_utils.h" #i...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/random/random_distributions.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/random/random_distributions_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
c0e9b00c-577d-4692-b0de-b284f166c3d1
cpp
tensorflow/tensorflow
sampler
third_party/xla/xla/tsl/lib/monitoring/sampler.cc
tensorflow/core/lib/monitoring/sampler_test.cc
#include "xla/tsl/lib/monitoring/sampler.h" #include "absl/log/check.h" #ifdef IS_MOBILE_PLATFORM #else namespace tsl { namespace monitoring { namespace { class ExplicitBuckets : public Buckets { public: ~ExplicitBuckets() override = default; explicit ExplicitBuckets(std::vector<double> bucket_limits) : buck...
#include "tensorflow/core/lib/monitoring/sampler.h" #include "tensorflow/core/platform/test.h" namespace tensorflow { namespace monitoring { namespace { using histogram::Histogram; void EqHistograms(const Histogram& expected, const HistogramProto& actual_proto) { Histogram actual; ASSERT_TRUE(actu...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/monitoring/sampler.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/lib/monitoring/sampler_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
7bb6a813-dd1b-4d06-9ea9-8d2c113624c8
cpp
tensorflow/tensorflow
collection_registry
third_party/xla/xla/tsl/lib/monitoring/collection_registry.cc
tensorflow/core/lib/monitoring/collection_registry_test.cc
#include "xla/tsl/lib/monitoring/collection_registry.h" #include "xla/tsl/lib/monitoring/collected_metrics.h" #include "xla/tsl/lib/monitoring/metric_def.h" #include "tsl/platform/env.h" #include "tsl/platform/mutex.h" #include "tsl/platform/stringpiece.h" #include "tsl/platform/types.h" #ifndef IS_MOBILE_PLATFORM #inc...
#include "tensorflow/core/lib/monitoring/collection_registry.h" #include <memory> #include "tensorflow/core/lib/monitoring/counter.h" #include "tensorflow/core/lib/monitoring/gauge.h" #include "tensorflow/core/lib/monitoring/percentile_sampler.h" #include "tensorflow/core/lib/monitoring/sampler.h" #include "tensorflow/...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/monitoring/collection_registry.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/lib/monitoring/collection_registry_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
5ec888cf-ea02-4ebf-826b-99b1cfef72df
cpp
tensorflow/tensorflow
percentile_sampler
third_party/xla/xla/tsl/lib/monitoring/percentile_sampler.cc
tensorflow/core/lib/monitoring/percentile_sampler_test.cc
#include "xla/tsl/lib/monitoring/percentile_sampler.h" #include <algorithm> #include <cmath> #include <vector> #include "xla/tsl/lib/monitoring/types.h" #include "tsl/platform/env_time.h" #include "tsl/platform/macros.h" #include "tsl/platform/mutex.h" #include "tsl/platform/types.h" #ifdef IS_MOBILE_PLATFORM #else nam...
#include "tensorflow/core/lib/monitoring/percentile_sampler.h" #include "tensorflow/core/platform/test.h" namespace tensorflow { namespace monitoring { namespace { auto* pctsampler_with_labels = PercentileSampler<1>::New( {"/tensorflow/test/percentile_sampler_with_labels", "Percentile sampler with one label.",...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/monitoring/percentile_sampler.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/lib/monitoring/percentile_sampler_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
6aadb0b1-e600-47f6-ac26-d99cf7ea00cd
cpp
tensorflow/tensorflow
histogram
third_party/xla/xla/tsl/lib/histogram/histogram.cc
third_party/xla/xla/tsl/lib/histogram/histogram_test.cc
#include "xla/tsl/lib/histogram/histogram.h" #include <float.h> #include <math.h> #include <vector> #include "xla/tsl/protobuf/histogram.pb.h" #include "tsl/platform/logging.h" #include "tsl/platform/mutex.h" #include "tsl/platform/types.h" namespace tsl { namespace histogram { static std::vector<double>* InitDefaultBu...
#include "xla/tsl/lib/histogram/histogram.h" #include <float.h> #include "xla/tsl/protobuf/histogram.pb.h" #include "tsl/platform/logging.h" #include "tsl/platform/test.h" namespace tsl { namespace histogram { static void Validate(const Histogram& h) { string s1 = h.ToString(); LOG(ERROR) << s1; HistogramProto pr...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/histogram/histogram.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/lib/histogram/histogram_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
ce81a04e-fca4-4ddf-96e3-daf1ae6b533d
cpp
tensorflow/tensorflow
traceme_recorder
third_party/xla/xla/tsl/profiler/backends/cpu/traceme_recorder.cc
third_party/xla/xla/tsl/profiler/backends/cpu/traceme_recorder_test.cc
#include "xla/tsl/profiler/backends/cpu/traceme_recorder.h" #include <stddef.h> #include <stdint.h> #include <algorithm> #include <atomic> #include <deque> #include <optional> #include <utility> #include <vector> #include "absl/container/flat_hash_map.h" #include "xla/tsl/profiler/utils/lock_free_queue.h" #include "xla...
#include "xla/tsl/profiler/backends/cpu/traceme_recorder.h" #include <atomic> #include <set> #include <string> #include <utility> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/strings/numbers.h" #include "absl/strings/str_cat.h" #include "xla/tsl/profiler/utils/math_utils.h" #include "xla/t...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/backends/cpu/traceme_recorder.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/backends/cpu/traceme_recorder_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
40a77d2d-ac7a-47c8-aed8-486396bd535b
cpp
tensorflow/tensorflow
device_utils
tensorflow/core/common_runtime/device/device_utils.cc
third_party/xla/xla/tsl/profiler/utils/device_utils_test.cc
#include "tensorflow/core/common_runtime/device/device_utils.h" #include "tensorflow/core/platform/regexp.h" #include "tensorflow/core/platform/status.h" #include "tensorflow/core/platform/strcat.h" #include "tensorflow/core/platform/stringpiece.h" namespace tensorflow { namespace device_utils { Status ValidateDeviceTy...
#include "xla/tsl/profiler/utils/device_utils.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #include "xla/tsl/profiler/utils/xplane_schema.h" #include "tsl/platform/test.h" namespace tsl { namespace profiler { namespace { tensorflow::profiler::XPlane CreateXPlane(absl::string_view name) { ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/common_runtime/device/device_utils.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/utils/device_utils_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
0870f6bf-356a-4ba4-973a-d1a6c1553518
cpp
tensorflow/tensorflow
xplane_utils
third_party/xla/xla/tsl/profiler/utils/xplane_utils.cc
third_party/xla/xla/tsl/profiler/utils/xplane_utils_test.cc
#include "xla/tsl/profiler/utils/xplane_utils.h" #include <algorithm> #include <cstdint> #include <limits> #include <optional> #include <set> #include <string> #include <utility> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/container/flat_hash_set.h" #include "absl/log/log.h" #include "abs...
#include "xla/tsl/profiler/utils/xplane_utils.h" #include <cstdint> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/strings/string_view.h" #include "absl/types/optional.h" #include "xla/tsl/profiler/utils/math_utils.h" #include "xla/tsl...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/utils/xplane_utils.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/utils/xplane_utils_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
0d905a1f-160e-4f33-a14f-417150c8fc86
cpp
tensorflow/tensorflow
xplane_builder
third_party/xla/xla/tsl/profiler/utils/xplane_builder.cc
third_party/xla/xla/tsl/profiler/utils/xplane_builder_test.cc
#include "xla/tsl/profiler/utils/xplane_builder.h" #include <algorithm> #include <string> #include <utility> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/strings/string_view.h" #include "absl/types/optional.h" #include "xla/tsl/profiler/utils/math_utils.h" #include "xla/tsl/profiler/utils/...
#include "xla/tsl/profiler/utils/xplane_builder.h" #include <string> #include "absl/strings/string_view.h" #include "xla/tsl/profiler/utils/xplane_visitor.h" #include "tsl/platform/test.h" #include "tsl/profiler/protobuf/xplane.pb.h" namespace tsl { namespace profiler { namespace { TEST(TimespanTests, NonInstantSpanInc...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/utils/xplane_builder.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/utils/xplane_builder_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
1d8e0070-730d-42fb-a5b6-de175a72d79a
cpp
tensorflow/tensorflow
tf_op_utils
third_party/xla/xla/tsl/profiler/utils/tf_op_utils.cc
third_party/xla/xla/tsl/profiler/utils/tf_op_utils_test.cc
#include "xla/tsl/profiler/utils/tf_op_utils.h" #include <cstdint> #include <optional> #include <string> #include <vector> #include "absl/strings/ascii.h" #include "absl/strings/match.h" #include "absl/strings/numbers.h" #include "absl/strings/str_cat.h" #include "absl/strings/str_split.h" #include "absl/strings/string...
#include "xla/tsl/profiler/utils/tf_op_utils.h" #include <vector> #include "absl/strings/string_view.h" #include "tsl/platform/test.h" namespace tsl { namespace profiler { namespace { TEST(TfOpUtilsTest, TfOpTest) { const absl::string_view kName = "OpName:OpType"; TfOp tf_op = ParseTfOpFullname(kName); EXPECT_EQ(...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/utils/tf_op_utils.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/utils/tf_op_utils_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
8f8f9e65-c8b2-4926-9c46-bde37faed913
cpp
tensorflow/tensorflow
tpu_xplane_utils
third_party/xla/xla/tsl/profiler/utils/tpu_xplane_utils.cc
third_party/xla/xla/tsl/profiler/utils/tpu_xplane_utils_test.cc
#include "xla/tsl/profiler/utils/tpu_xplane_utils.h" #include <optional> #include <vector> #include "absl/strings/string_view.h" #include "xla/tsl/profiler/utils/xplane_schema.h" #include "xla/tsl/profiler/utils/xplane_utils.h" #include "tsl/platform/regexp.h" #include "tsl/profiler/protobuf/xplane.pb.h" namespace tsl ...
#include "xla/tsl/profiler/utils/tpu_xplane_utils.h" #include <vector> #include "absl/strings/str_cat.h" #include "xla/tsl/profiler/utils/xplane_schema.h" #include "xla/tsl/profiler/utils/xplane_utils.h" #include "xla/tsl/profiler/utils/xplane_visitor.h" #include "tsl/platform/test.h" #include "tsl/profiler/protobuf/xp...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/utils/tpu_xplane_utils.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/utils/tpu_xplane_utils_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
2812a750-abac-41e2-8608-97c9f26bc2c8
cpp
tensorflow/tensorflow
group_events
third_party/xla/xla/tsl/profiler/utils/group_events.cc
third_party/xla/xla/tsl/profiler/utils/group_events_test.cc
#include "xla/tsl/profiler/utils/group_events.h" #include <algorithm> #include <cstdint> #include <functional> #include <iterator> #include <map> #include <memory> #include <optional> #include <queue> #include <string> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/container/f...
#include "xla/tsl/profiler/utils/group_events.h" #include <optional> #include "absl/container/flat_hash_map.h" #include "absl/strings/string_view.h" #include "xla/tsl/profiler/utils/tf_xplane_visitor.h" #include "xla/tsl/profiler/utils/xplane_builder.h" #include "xla/tsl/profiler/utils/xplane_schema.h" #include "xla/ts...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/utils/group_events.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/utils/group_events_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
0ab1eb70-b950-474e-92b9-0937ea336b35
cpp
tensorflow/tensorflow
timestamp_utils
third_party/xla/xla/tsl/profiler/utils/timestamp_utils.cc
third_party/xla/xla/tsl/profiler/utils/timestamp_utils_test.cc
#include "xla/tsl/profiler/utils/timestamp_utils.h" #include <cstdint> #include "absl/log/log.h" #include "xla/tsl/profiler/utils/xplane_builder.h" #include "xla/tsl/profiler/utils/xplane_schema.h" #include "xla/tsl/profiler/utils/xplane_utils.h" #include "tsl/profiler/protobuf/xplane.pb.h" namespace tsl { namespace pr...
#include "xla/tsl/profiler/utils/timestamp_utils.h" #include "xla/tsl/profiler/utils/xplane_schema.h" #include "xla/tsl/profiler/utils/xplane_utils.h" #include "xla/tsl/profiler/utils/xplane_visitor.h" #include "tsl/platform/test.h" namespace tsl { namespace profiler { using ::testing::Eq; TEST(TimestampUtilsTest, Star...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/utils/timestamp_utils.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/utils/timestamp_utils_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
f6caa2d5-6866-43cc-a9a0-f63d605eeb98
cpp
tensorflow/tensorflow
buffer_pool
third_party/xla/xla/tsl/profiler/utils/buffer_pool.cc
third_party/xla/xla/tsl/profiler/utils/buffer_pool_test.cc
#include "xla/tsl/profiler/utils/buffer_pool.h" #include <ios> #include "tsl/platform/logging.h" #include "tsl/platform/mem.h" #include "tsl/platform/mutex.h" namespace tsl { namespace profiler { BufferPool::BufferPool(size_t buffer_size_in_bytes) : buffer_size_in_bytes_(buffer_size_in_bytes) {} BufferPool::~Buffer...
#include "xla/tsl/profiler/utils/buffer_pool.h" #include "tsl/platform/test.h" namespace tsl { namespace profiler { namespace { TEST(BufferPoolTest, GetOrCreateBufferAlloc) { constexpr size_t kBufferSizeInBytes = 32 * 1024; BufferPool buffer_pool(kBufferSizeInBytes); uint8_t* first_buffer = buffer_pool.GetOrCreat...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/utils/buffer_pool.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/utils/buffer_pool_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
dc782095-8db1-4f12-bb84-d81e11395814
cpp
tensorflow/tensorflow
parse_annotation
third_party/xla/xla/tsl/profiler/utils/parse_annotation.cc
third_party/xla/xla/tsl/profiler/utils/parse_annotation_test.cc
#include "xla/tsl/profiler/utils/parse_annotation.h" #include <stack> #include <string> #include <utility> #include <vector> #include "absl/strings/ascii.h" #include "absl/strings/str_split.h" #include "absl/strings/string_view.h" namespace tsl { namespace profiler { namespace { std::vector<absl::string_view> SplitName...
#include "xla/tsl/profiler/utils/parse_annotation.h" #include <vector> #include "absl/strings/string_view.h" #include "tsl/platform/test.h" namespace tsl { namespace profiler { namespace { TEST(ParseAnnotationStackTest, EmptyAnnotationStackTest) { std::vector<Annotation> annotations = ParseAnnotationStack(""); ASSE...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/utils/parse_annotation.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/utils/parse_annotation_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
6bc61fe2-d66b-43c8-afde-73c141c7c124
cpp
tensorflow/tensorflow
preprocess_xplane
third_party/xla/xla/tsl/profiler/utils/preprocess_xplane.cc
third_party/xla/xla/tsl/profiler/utils/preprocess_xplane_test.cc
#include "xla/tsl/profiler/utils/preprocess_xplane.h" #include <cstdint> #include <memory> #include <utility> #include <vector> #include "absl/container/flat_hash_map.h" #include "xla/tsl/profiler/utils/xplane_builder.h" #include "xla/tsl/profiler/utils/xplane_schema.h" #include "tsl/profiler/lib/context_types.h" #incl...
#include "xla/tsl/profiler/utils/preprocess_xplane.h" #include <cstdint> #include <memory> #include <optional> #include "absl/container/flat_hash_map.h" #include "absl/hash/hash.h" #include "xla/tsl/profiler/utils/tf_xplane_visitor.h" #include "xla/tsl/profiler/utils/xplane_builder.h" #include "xla/tsl/profiler/utils/x...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/utils/preprocess_xplane.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/utils/preprocess_xplane_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
62e61c22-dfcd-4e95-b89f-f33ebb6697b3
cpp
tensorflow/tensorflow
remote_profiler_session_manager
third_party/xla/xla/tsl/profiler/rpc/client/remote_profiler_session_manager.cc
third_party/xla/xla/tsl/profiler/rpc/client/remote_profiler_session_manager_test.cc
#include "xla/tsl/profiler/rpc/client/remote_profiler_session_manager.h" #include <cstddef> #include <memory> #include "absl/memory/memory.h" #include "absl/strings/string_view.h" #include "absl/time/clock.h" #include "absl/time/time.h" #include "xla/tsl/profiler/rpc/client/profiler_client.h" #include "xla/tsl/profiler...
#include "xla/tsl/profiler/rpc/client/remote_profiler_session_manager.h" #include <memory> #include <string> #include <vector> #include "absl/status/status.h" #include "absl/time/clock.h" #include "absl/time/time.h" #include "xla/tsl/profiler/rpc/client/profiler_client_test_util.h" #include "tsl/platform/errors.h" #inc...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/rpc/client/remote_profiler_session_manager.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/rpc/client/remote_profiler_session_manager_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
e8e70257-c930-4276-aa31-a78ba89ae267
cpp
tensorflow/tensorflow
profiler_client
third_party/xla/xla/tsl/profiler/rpc/client/profiler_client.cc
third_party/xla/xla/tsl/profiler/rpc/client/profiler_client_test.cc
#include "xla/tsl/profiler/rpc/client/profiler_client.h" #include <limits> #include <memory> #include "absl/memory/memory.h" #include "absl/time/clock.h" #include "absl/time/time.h" #include "grpcpp/grpcpp.h" #include "tsl/platform/errors.h" #include "tsl/platform/logging.h" #include "tsl/platform/status.h" #include ...
#include "xla/tsl/profiler/rpc/client/profiler_client.h" #include <memory> #include <string> #include "absl/time/clock.h" #include "absl/time/time.h" #include "xla/tsl/profiler/rpc/client/profiler_client_test_util.h" #include "tsl/platform/errors.h" #include "tsl/platform/status.h" #include "tsl/platform/test.h" #inclu...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/rpc/client/profiler_client.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/rpc/client/profiler_client_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
fd3f943a-1cc2-433d-9f21-46081f85e3cd
cpp
tensorflow/tensorflow
trace_events_to_json
tensorflow/core/profiler/convert/trace_viewer/trace_events_to_json.cc
third_party/xla/xla/tsl/profiler/convert/trace_events_to_json_test.cc
#include "tensorflow/core/profiler/convert/trace_viewer/trace_events_to_json.h" #include <cstdint> #include <map> #include <string> #include <string_view> #include <utility> #include "absl/strings/match.h" #include "absl/strings/str_format.h" #include "absl/strings/string_view.h" #include "tensorflow/core/profiler/prot...
#include "xla/tsl/profiler/convert/trace_events_to_json.h" #include <string> #include "json/json.h" #include "xla/tsl/profiler/convert/trace_container.h" #include "tsl/platform/protobuf.h" #include "tsl/platform/test.h" #include "tsl/profiler/protobuf/trace_events.pb.h" namespace tsl { namespace profiler { namespace { ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/profiler/convert/trace_viewer/trace_events_to_json.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/convert/trace_events_to_json_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
fe0cd32f-dfd6-469a-95f5-6ad6cf632eca
cpp
tensorflow/tensorflow
trace_container
third_party/xla/xla/tsl/profiler/convert/trace_container.cc
third_party/xla/xla/tsl/profiler/convert/trace_container_test.cc
#include "xla/tsl/profiler/convert/trace_container.h" #include <algorithm> #include <string> #include <string_view> #include <vector> #include "tsl/platform/protobuf.h" namespace tsl { namespace profiler { bool TraceContainer::ParseMetadataFromString(const std::string& description) { return protobuf::TextFormat::Pars...
#include "xla/tsl/profiler/convert/trace_container.h" #include <string> #include "tsl/platform/protobuf.h" #include "tsl/platform/test.h" namespace tsl { namespace profiler { namespace { void PopulateDummyEvent(TraceEvent* const event) { event->set_device_id(1); event->set_resource_id(2); event->set_name("A"); ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/convert/trace_container.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/convert/trace_container_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
01947b9c-2719-4c74-b27a-405f3c7c3b5f
cpp
tensorflow/tensorflow
xplane_to_trace_events
third_party/xla/xla/tsl/profiler/convert/xplane_to_trace_events.cc
third_party/xla/xla/tsl/profiler/convert/xplane_to_trace_events_test.cc
#include "xla/tsl/profiler/convert/xplane_to_trace_events.h" #include <stddef.h> #include <algorithm> #include <string> #include <utility> #include <vector> #include "absl/strings/string_view.h" #include "absl/types/optional.h" #include "xla/tsl/profiler/utils/tf_xplane_visitor.h" #include "xla/tsl/profiler/utils/trace...
#include "xla/tsl/profiler/convert/xplane_to_trace_events.h" #include <limits> #include <utility> #include "xla/tsl/profiler/utils/trace_utils.h" #include "xla/tsl/profiler/utils/xplane_builder.h" #include "xla/tsl/profiler/utils/xplane_schema.h" #include "tsl/platform/test.h" #include "tsl/profiler/protobuf/trace_even...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/convert/xplane_to_trace_events.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/profiler/convert/xplane_to_trace_events_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
66a14b23-1deb-461d-a3a5-eef516eff56b
cpp
tensorflow/tensorflow
tsl_status
third_party/xla/xla/tsl/c/tsl_status.cc
third_party/xla/xla/tsl/c/tsl_status_test.cc
#include "xla/tsl/c/tsl_status.h" #include <string> #include "xla/tsl/c/tsl_status_internal.h" #include "tsl/platform/errors.h" #include "tsl/platform/status.h" using ::tsl::Status; using ::tsl::error::Code; using ::tsl::errors::IOError; TSL_Status* TSL_NewStatus() { return new TSL_Status; } void TSL_DeleteStatus(TSL_S...
#include "xla/tsl/c/tsl_status.h" #include <string> #include <unordered_map> #include <utility> #include "xla/tsl/c/tsl_status_internal.h" #include "tsl/platform/errors.h" #include "tsl/platform/test.h" namespace tsl { namespace { TEST(TSL_Status, PayloadsSet) { TSL_Status* tsl_status = TSL_NewStatus(); TSL_SetStat...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/c/tsl_status.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/c/tsl_status_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
bb168610-5f08-458f-9cab-96ab93874d84
cpp
tensorflow/tensorflow
call_options
third_party/xla/xla/tsl/distributed_runtime/call_options.cc
tensorflow/core/distributed_runtime/call_options_test.cc
#include "xla/tsl/distributed_runtime/call_options.h" #include <utility> #include "tsl/platform/mutex.h" namespace tsl { CallOptions::CallOptions() = default; void CallOptions::StartCancel() { mutex_lock l(mu_); if (cancel_func_ != nullptr) { cancel_func_(); } } void CallOptions::SetCancelCallback(CancelFunct...
#include "tensorflow/core/distributed_runtime/call_options.h" #include "tensorflow/core/platform/test.h" namespace tensorflow { TEST(CallOptions, Cancel) { int num_calls = 0; CallOptions opts; opts.StartCancel(); EXPECT_EQ(num_calls, 0); opts.SetCancelCallback([&num_calls]() { num_calls++; }); EXPECT_EQ(num...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/distributed_runtime/call_options.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/distributed_runtime/call_options_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
0c2807a6-9de3-4dea-b2ce-9f085bb68d10
cpp
tensorflow/tensorflow
coordination_service_error_util
third_party/xla/xla/tsl/distributed_runtime/coordination/coordination_service_error_util.cc
third_party/xla/xla/tsl/distributed_runtime/coordination/coordination_service_error_util_test.cc
#include "xla/tsl/distributed_runtime/coordination/coordination_service_error_util.h" #include <optional> #include <string> #include "absl/status/status.h" #include "absl/strings/cord.h" #include "absl/strings/str_cat.h" #include "tsl/platform/regexp.h" namespace tsl { absl::Status TrimCoordinationErrorMessage(const ab...
#include "xla/tsl/distributed_runtime/coordination/coordination_service_error_util.h" #include <string> #include "absl/status/status.h" #include "absl/strings/match.h" #include "xla/tsl/protobuf/coordination_service.pb.h" #include "tsl/platform/test.h" namespace tsl { namespace { using ::tensorflow::CoordinatedTask; us...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/distributed_runtime/coordination/coordination_service_error_util.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/distributed_runtime/coordination/coordination_service_error_util_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
dbee8c02-9029-4404-9614-1b7062d0d7a5
cpp
tensorflow/tensorflow
coordination_service
third_party/xla/xla/tsl/distributed_runtime/coordination/coordination_service.cc
third_party/xla/xla/tsl/distributed_runtime/coordination/coordination_service_test.cc
#include "xla/tsl/distributed_runtime/coordination/coordination_service.h" #include <algorithm> #include <cassert> #include <cstddef> #include <cstdint> #include <functional> #include <map> #include <memory> #include <optional> #include <string> #include <string_view> #include <utility> #include <vector> #include "absl...
#include "xla/tsl/distributed_runtime/coordination/coordination_service.h" #include <cstdint> #include <memory> #include <string> #include <unordered_map> #include <utility> #include <vector> #include "absl/base/thread_annotations.h" #include "absl/log/log.h" #include "absl/status/status.h" #include "absl/status/status...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/distributed_runtime/coordination/coordination_service.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/distributed_runtime/coordination/coordination_service_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
c610c4bf-ddc0-4b3d-946d-435e6dbf2fa1
cpp
tensorflow/tensorflow
coordination_service_agent
third_party/xla/xla/tsl/distributed_runtime/coordination/coordination_service_agent.cc
third_party/xla/xla/tsl/distributed_runtime/coordination/coordination_service_agent_test.cc
#include "xla/tsl/distributed_runtime/coordination/coordination_service_agent.h" #include <algorithm> #include <cassert> #include <cstdint> #include <iterator> #include <map> #include <memory> #include <optional> #include <random> #include <string> #include <string_view> #include <utility> #include <vector> #include "a...
#include "xla/tsl/distributed_runtime/coordination/coordination_service_agent.h" #include <memory> #include <ostream> #include <string> #include <utility> #include <vector> #include "absl/log/check.h" #include "absl/log/log.h" #include "absl/memory/memory.h" #include "absl/status/status.h" #include "absl/time/clock.h" ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/distributed_runtime/coordination/coordination_service_agent.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/distributed_runtime/coordination/coordination_service_agent_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
8323463a-09b1-420b-baaf-d77521ca8e27
cpp
tensorflow/tensorflow
preemption_sync_manager
third_party/xla/xla/tsl/distributed_runtime/preemption/preemption_sync_manager.cc
third_party/xla/xla/tsl/distributed_runtime/preemption/preemption_sync_manager_test.cc
#include "xla/tsl/distributed_runtime/preemption/preemption_sync_manager.h" #include <algorithm> #include <cstdint> #include <functional> #include <memory> #include <string> #include <utility> #include <vector> #include "absl/base/thread_annotations.h" #include "absl/log/log.h" #include "absl/memory/memory.h" #include ...
#include "xla/tsl/distributed_runtime/preemption/preemption_sync_manager.h" #include <memory> #include <string> #include <utility> #include "absl/log/check.h" #include "absl/log/log.h" #include "absl/memory/memory.h" #include "absl/status/status.h" #include "absl/time/clock.h" #include "absl/time/time.h" #include "grpc...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/distributed_runtime/preemption/preemption_sync_manager.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/distributed_runtime/preemption/preemption_sync_manager_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
4b72f2e1-377f-44c8-8739-38c4935bd9a9
cpp
tensorflow/tensorflow
preemption_notifier
third_party/xla/xla/tsl/distributed_runtime/preemption/preemption_notifier.cc
third_party/xla/xla/tsl/distributed_runtime/preemption/preemption_notifier_test.cc
#include "xla/tsl/distributed_runtime/preemption/preemption_notifier.h" #include <atomic> #include <csignal> #include <functional> #include <memory> #include <utility> #include "absl/synchronization/notification.h" #include "absl/time/clock.h" #include "absl/time/time.h" #include "tsl/platform/env.h" #include "tsl/plat...
#include "xla/tsl/distributed_runtime/preemption/preemption_notifier.h" #include <csignal> #include <functional> #include <memory> #include <utility> #include "absl/synchronization/notification.h" #include "absl/time/clock.h" #include "absl/time/time.h" #include "tsl/platform/env.h" #include "tsl/platform/errors.h" #in...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/distributed_runtime/preemption/preemption_notifier.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/distributed_runtime/preemption/preemption_notifier_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
323ebe3f-b5fc-466c-a6df-f963cbafa3a8
cpp
tensorflow/tensorflow
grpc_channel
third_party/xla/xla/tsl/distributed_runtime/rpc/grpc_channel.cc
third_party/xla/xla/tsl/distributed_runtime/rpc/grpc_channel_test.cc
#include "xla/tsl/distributed_runtime/rpc/grpc_channel.h" #include <cstdlib> #include <limits> #include <map> #include <string> #include <unordered_map> #include "absl/strings/escaping.h" #include "absl/strings/match.h" #include "absl/strings/str_split.h" #include "grpcpp/create_channel.h" #include "xla/tsl/distributed...
#include "xla/tsl/distributed_runtime/rpc/grpc_channel.h" #include <string> #include <vector> #include "xla/tsl/lib/core/status_test_util.h" #include "xla/tsl/protobuf/rpc_options.pb.h" #include "xla/tsl/util/device_name_utils.h" #include "tsl/platform/strcat.h" #include "tsl/platform/test.h" namespace tsl { #define Is...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/distributed_runtime/rpc/grpc_channel.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tsl/distributed_runtime/rpc/grpc_channel_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
3ca4d441-4a85-4359-b35d-0b039f6559a9
cpp
tensorflow/tensorflow
grpc_util
tensorflow/core/distributed_runtime/rpc/grpc_util.cc
tensorflow/core/data/service/grpc_util_test.cc
#include "tensorflow/core/distributed_runtime/rpc/grpc_util.h" #include "tensorflow/core/distributed_runtime/tensor_coding.h" namespace tensorflow { bool GrpcMaybeParseTensorResponse(::grpc::ByteBuffer* src, TensorResponse* dst) { ::tensorflow::GrpcByteSource byte_source(src); auto...
#include "tensorflow/core/data/service/grpc_util.h" #include "tensorflow/core/platform/errors.h" #include "tensorflow/core/platform/test.h" namespace tensorflow { namespace data { namespace grpc_util { TEST(GrpcUtil, WrapInvalidArgument) { grpc::Status s(grpc::StatusCode::INVALID_ARGUMENT, "test message"); Status w...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/distributed_runtime/rpc/grpc_util.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/data/service/grpc_util_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
1314d878-27b7-445b-b083-af17ea4b6829
cpp
tensorflow/tensorflow
executor
tensorflow/core/common_runtime/executor.cc
tensorflow/core/common_runtime/executor_test.cc
#include "tensorflow/core/common_runtime/executor.h" #include <algorithm> #include <atomic> #include <memory> #include <utility> #include <vector> #include "absl/memory/memory.h" #include "absl/strings/str_join.h" #include "absl/time/time.h" #include "absl/types/optional.h" #include "tensorflow/core/activity_watcher/ac...
#include "tensorflow/core/common_runtime/executor.h" #include <algorithm> #include "tensorflow/cc/framework/ops.h" #include "tensorflow/cc/ops/array_ops.h" #include "tensorflow/cc/ops/const_op.h" #include "tensorflow/cc/ops/control_flow_ops_internal.h" #include "tensorflow/cc/ops/function_ops.h" #include "tensorflow/cc...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/common_runtime/executor.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/common_runtime/executor_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
734ac35f-845b-4102-a28f-233a8b460dc1
cpp
tensorflow/tensorflow
convolution_thunk
third_party/xla/xla/service/gpu/runtime/convolution_thunk.cc
third_party/xla/xla/backends/cpu/runtime/convolution_thunk_test.cc
#include "xla/service/gpu/runtime/convolution_thunk.h" #include <cstdint> #include <memory> #include <optional> #include <utility> #include <vector> #include "absl/container/inlined_vector.h" #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/synchronization/mutex.h" #include "absl/types/span.h"...
#include "xla/backends/cpu/runtime/convolution_thunk.h" #include <cstddef> #include <cstdint> #include <functional> #include <memory> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/status/status.h" #include "Eigen/Core" #include "xla/backends/cpu/runtime/buffer_allocations.h" ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/runtime/convolution_thunk.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/cpu/runtime/convolution_thunk_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
a6c01e1e-ca85-4c99-9bc7-027086e9a935
cpp
tensorflow/tensorflow
thunk
third_party/xla/xla/service/gpu/runtime/thunk.cc
third_party/xla/xla/backends/cpu/runtime/thunk_test.cc
#include "xla/service/gpu/runtime/thunk.h" #include <algorithm> #include <cstddef> #include <cstdint> #include <functional> #include <memory> #include <ostream> #include <string> #include <utility> #include "absl/algorithm/container.h" #include "absl/container/inlined_vector.h" #include "absl/status/status.h" #include ...
#include "xla/backends/cpu/runtime/thunk.h" #include <cstdint> #include <utility> #include "xla/executable_run_options.h" #include "xla/service/cpu/collectives_interface.h" #include "xla/service/cpu/cpu_executable_run_options.h" #include "tsl/platform/statusor.h" #include "tsl/platform/test.h" namespace xla::cpu { name...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/runtime/thunk.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/cpu/runtime/thunk_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
01d2348a-58d6-42fa-82b6-d0616d993f89
cpp
tensorflow/tensorflow
conditional_thunk
third_party/xla/xla/service/gpu/runtime/conditional_thunk.cc
third_party/xla/xla/backends/cpu/runtime/conditional_thunk_test.cc
#include "xla/service/gpu/runtime/conditional_thunk.h" #include <cstdint> #include <memory> #include <string_view> #include <utility> #include <variant> #include "absl/status/status.h" #include "absl/synchronization/mutex.h" #include "xla/service/buffer_assignment.h" #include "xla/service/gpu/runtime/thunk.h" #include ...
#include "xla/backends/cpu/runtime/conditional_thunk.h" #include <cstdint> #include <memory> #include <utility> #include <vector> #include "xla/backends/cpu/runtime/resource_use.h" #include "xla/backends/cpu/runtime/thunk.h" #include "xla/backends/cpu/runtime/thunk_testlib.h" #include "xla/runtime/buffer_use.h" #includ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/runtime/conditional_thunk.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/cpu/runtime/conditional_thunk_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
715a0fe5-3ad4-439c-9e62-b63e79c3c1be
cpp
tensorflow/tensorflow
logical_id_thunk
third_party/xla/xla/backends/cpu/runtime/logical_id_thunk.cc
third_party/xla/xla/backends/cpu/runtime/logical_id_thunk_test.cc
#include "xla/backends/cpu/runtime/logical_id_thunk.h" #include <cstdint> #include <cstring> #include <memory> #include <utility> #include "absl/memory/memory.h" #include "absl/status/statusor.h" #include "absl/strings/str_format.h" #include "xla/backends/cpu/runtime/thunk.h" #include "xla/runtime/buffer_use.h" #includ...
#include "xla/backends/cpu/runtime/logical_id_thunk.h" #include <cstdint> #include <limits> #include <string> #include <vector> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "xla/backends/cpu/runtime/buffer_allocations.h" #include "xla/backends/cpu/runtime/thunk.h" #include "xla/executable_...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/cpu/runtime/logical_id_thunk.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/cpu/runtime/logical_id_thunk_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
fed78beb-029c-47b3-aad3-c4c29d5b52fc
cpp
tensorflow/tensorflow
sort_thunk
third_party/xla/xla/backends/cpu/runtime/sort_thunk.cc
third_party/xla/xla/backends/cpu/runtime/sort_thunk_test.cc
#include "xla/backends/cpu/runtime/sort_thunk.h" #include <algorithm> #include <array> #include <cstddef> #include <cstdint> #include <cstring> #include <functional> #include <iterator> #include <memory> #include <string> #include <type_traits> #include <utility> #include <vector> #include "absl/algorithm/container.h" ...
#include "xla/backends/cpu/runtime/sort_thunk.h" #include <array> #include <cstddef> #include <cstdint> #include <numeric> #include <string_view> #include <vector> #include "absl/status/statusor.h" #include "xla/backends/cpu/runtime/buffer_allocations.h" #include "xla/backends/cpu/runtime/thunk.h" #include "xla/layout....
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/cpu/runtime/sort_thunk.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/cpu/runtime/sort_thunk_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
9ec2ecf4-73bd-4fdb-aa81-263d6baa14ff
cpp
tensorflow/tensorflow
outfeed_thunk
third_party/xla/xla/service/gpu/runtime/outfeed_thunk.cc
third_party/xla/xla/backends/cpu/runtime/outfeed_thunk_test.cc
#include "xla/service/gpu/runtime/outfeed_thunk.h" #include <cstdint> #include <memory> #include <utility> #include <vector> #include "absl/log/log.h" #include "absl/status/status.h" #include "xla/service/buffer_assignment.h" #include "xla/service/gpu/buffer_allocations.h" #include "xla/service/gpu/gpu_transfer_manager...
#include "xla/backends/cpu/runtime/outfeed_thunk.h" #include <memory> #include "xla/backends/cpu/runtime/resource_use.h" #include "xla/backends/cpu/runtime/thunk.h" #include "xla/runtime/buffer_use.h" #include "xla/service/buffer_assignment.h" #include "xla/shape_util.h" #include "tsl/platform/statusor.h" #include "tsl...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/runtime/outfeed_thunk.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/cpu/runtime/outfeed_thunk_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
229b23b1-a820-4bd3-ae84-ec9d912fadd4
cpp
tensorflow/tensorflow
infeed_thunk
third_party/xla/xla/service/gpu/runtime/infeed_thunk.cc
third_party/xla/xla/backends/cpu/runtime/infeed_thunk_test.cc
#include "xla/service/gpu/runtime/infeed_thunk.h" #include <cstddef> #include <utility> #include <vector> #include "absl/log/check.h" #include "absl/log/log.h" #include "absl/status/status.h" #include "xla/service/gpu/buffer_allocations.h" #include "xla/service/gpu/gpu_transfer_manager.h" #include "xla/service/gpu/infe...
#include "xla/backends/cpu/runtime/infeed_thunk.h" #include <memory> #include "xla/backends/cpu/runtime/resource_use.h" #include "xla/backends/cpu/runtime/thunk.h" #include "xla/runtime/buffer_use.h" #include "xla/service/buffer_assignment.h" #include "xla/shape_util.h" #include "tsl/platform/statusor.h" #include "tsl/...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/runtime/infeed_thunk.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/cpu/runtime/infeed_thunk_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
f0dde765-55b6-493c-95a6-d09131a7d8c2
cpp
tensorflow/tensorflow
while_thunk
third_party/xla/xla/service/gpu/runtime/while_thunk.cc
third_party/xla/xla/backends/cpu/runtime/while_thunk_test.cc
#include "xla/service/gpu/runtime/while_thunk.h" #include <cstdint> #include <iterator> #include <list> #include <memory> #include <optional> #include <utility> #include "absl/cleanup/cleanup.h" #include "absl/status/status.h" #include "absl/strings/str_format.h" #include "absl/synchronization/mutex.h" #include "xla/se...
#include "xla/backends/cpu/runtime/while_thunk.h" #include <atomic> #include <cstddef> #include <cstdint> #include <memory> #include <utility> #include <vector> #include "xla/backends/cpu/runtime/buffer_allocations.h" #include "xla/backends/cpu/runtime/resource_use.h" #include "xla/backends/cpu/runtime/thunk.h" #includ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/runtime/while_thunk.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/cpu/runtime/while_thunk_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
c297c433-ff38-48f0-b470-44bddb8dde91
cpp
tensorflow/tensorflow
thunk_executor
third_party/xla/xla/backends/cpu/runtime/thunk_executor.cc
third_party/xla/xla/backends/cpu/runtime/thunk_executor_test.cc
#include "xla/backends/cpu/runtime/thunk_executor.h" #include <atomic> #include <cstddef> #include <cstdint> #include <memory> #include <string> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/base/attributes.h" #include "absl/base/optimization.h" #include "absl/status/status.h...
#include "xla/backends/cpu/runtime/thunk_executor.h" #include <algorithm> #include <cstddef> #include <cstdint> #include <memory> #include <optional> #include <random> #include <string> #include <tuple> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/status/status.h" #include "...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/cpu/runtime/thunk_executor.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/cpu/runtime/thunk_executor_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
3c7cc377-e95e-41fa-9b3f-d5f718e8e8de
cpp
tensorflow/tensorflow
kernel_thunk
third_party/xla/xla/service/gpu/runtime/kernel_thunk.cc
third_party/xla/xla/backends/cpu/runtime/kernel_thunk_test.cc
#include "xla/service/gpu/runtime/kernel_thunk.h" #include <cstdint> #include <memory> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/container/inlined_vector.h" #include "absl/log/log.h" #include "absl/status/status.h" #include "absl/strings/str_format.h" #include "absl/synch...
#include "xla/backends/cpu/runtime/kernel_thunk.h" #include <cstddef> #include <cstdint> #include <string_view> #include <vector> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/match.h" #include "xla/backends/cpu/runtime/buffer_allocations.h" #include "xla/backends/cpu/runtime/...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/runtime/kernel_thunk.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/cpu/runtime/kernel_thunk_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
5a9a5a37-1608-4723-b051-5296431e6522
cpp
tensorflow/tensorflow
resource_use
third_party/xla/xla/backends/cpu/runtime/resource_use.cc
third_party/xla/xla/backends/cpu/runtime/resource_use_test.cc
#include "xla/backends/cpu/runtime/resource_use.h" #include <memory> #include "absl/algorithm/container.h" #include "absl/container/flat_hash_set.h" #include "absl/memory/memory.h" #include "absl/types/span.h" namespace xla::cpu { std::shared_ptr<Resource> Resource::Create(Kind kind) { return absl::WrapUnique(new Res...
#include "xla/backends/cpu/runtime/resource_use.h" #include "tsl/platform/test.h" namespace xla::cpu { namespace { TEST(ResourceUseTest, Equality) { auto token = Resource::Create(Resource::kToken); auto use0 = ResourceUse::Read(token); auto use1 = ResourceUse::Write(token); auto use2 = ResourceUse::Read(token);...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/cpu/runtime/resource_use.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/cpu/runtime/resource_use_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
d46120d8-760a-4260-9f54-29cb14e1086c
cpp
tensorflow/tensorflow
copy_thunk
third_party/xla/xla/service/gpu/runtime/copy_thunk.cc
third_party/xla/xla/backends/cpu/runtime/copy_thunk_test.cc
#include "xla/service/gpu/runtime/copy_thunk.h" #include <cstdint> #include <memory> #include <utility> #include "absl/log/log.h" #include "absl/status/status.h" #include "absl/synchronization/mutex.h" #include "xla/hlo/ir/hlo_instruction.h" #include "xla/service/buffer_assignment.h" #include "xla/service/gpu/runtime/t...
#include "xla/backends/cpu/runtime/copy_thunk.h" #include <cstddef> #include <vector> #include "xla/backends/cpu/runtime/buffer_allocations.h" #include "xla/backends/cpu/runtime/thunk.h" #include "xla/layout_util.h" #include "xla/service/buffer_assignment.h" #include "xla/service/maybe_owning_device_memory.h" #include ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/gpu/runtime/copy_thunk.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/cpu/runtime/copy_thunk_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
ab83b9d8-6c24-44c9-a4c8-cd77b911d2de
cpp
tensorflow/tensorflow
cupti_buffer_events
third_party/xla/xla/backends/profiler/gpu/cupti_buffer_events.cc
third_party/xla/xla/backends/profiler/gpu/cupti_buffer_events_test.cc
#include "xla/backends/profiler/gpu/cupti_buffer_events.h" #include "absl/strings/str_cat.h" #include "third_party/gpus/cuda/include/cuda.h" #include "xla/backends/profiler/gpu/cupti_interface.h" #include "tsl/platform/errors.h" #include "tsl/platform/mem.h" namespace xla { namespace profiler { namespace { using absl::...
#include "xla/backends/profiler/gpu/cupti_buffer_events.h" #include "tsl/platform/test.h" namespace xla { namespace profiler { namespace test { namespace { TEST(CuptiBufferEventsTest, EventInitialization) { CuptiTracerEvent event{ CuptiTracerEventType::CudaGraph, CuptiTracerEventSource::Activity, ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/profiler/gpu/cupti_buffer_events.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/profiler/gpu/cupti_buffer_events_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
f054a731-cf43-403c-8e10-e90641ca41dd
cpp
tensorflow/tensorflow
cupti_error_manager
third_party/xla/xla/backends/profiler/gpu/cupti_error_manager.cc
third_party/xla/xla/backends/profiler/gpu/cupti_error_manager_test.cc
#include "xla/backends/profiler/gpu/cupti_error_manager.h" #include <utility> #include "absl/debugging/leak_check.h" #include "tsl/platform/logging.h" namespace xla { namespace profiler { using tsl::mutex_lock; CuptiErrorManager::CuptiErrorManager(std::unique_ptr<CuptiInterface> interface) : interface_(std::move(in...
#if GOOGLE_CUDA #include "xla/backends/profiler/gpu/cupti_error_manager.h" #include <cstdint> #include <memory> #include <utility> #include "absl/memory/memory.h" #include "xla/backends/profiler/gpu/cuda_test.h" #include "xla/backends/profiler/gpu/cupti_interface.h" #include "xla/backends/profiler/gpu/cupti_tracer.h" #...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/profiler/gpu/cupti_error_manager.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/profiler/gpu/cupti_error_manager_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
d937813a-ec6a-45e2-9277-8cabb12ff3bb
cpp
tensorflow/tensorflow
host_tracer
third_party/xla/xla/backends/profiler/cpu/host_tracer.cc
third_party/xla/xla/backends/profiler/cpu/host_tracer_test.cc
#include "xla/backends/profiler/cpu/host_tracer.h" #include <memory> #include <string> #include <utility> #include <vector> #include "absl/log/log.h" #include "absl/status/status.h" #include "xla/tsl/profiler/backends/cpu/host_tracer_utils.h" #include "xla/tsl/profiler/backends/cpu/threadpool_listener.h" #include "xla/...
#include "xla/backends/profiler/cpu/host_tracer.h" #include <cstdint> #include <memory> #include <optional> #include <ostream> #include <string> #include <gtest/gtest.h> #include "absl/types/optional.h" #include "xla/tsl/lib/core/status_test_util.h" #include "xla/tsl/profiler/utils/tf_xplane_visitor.h" #include "xla/ts...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/profiler/cpu/host_tracer.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/profiler/cpu/host_tracer_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
779d4496-04b8-4f88-ac0d-4810141e0540
cpp
tensorflow/tensorflow
plugin_tracer_impl
third_party/xla/xla/backends/profiler/plugin/plugin_tracer_impl.cc
third_party/xla/xla/backends/profiler/plugin/plugin_tracer_impl_test.cc
#include "xla/backends/profiler/plugin/plugin_tracer_impl.h" #include <cstddef> #include <cstdint> #include <memory> #include <vector> #include "xla/backends/profiler/plugin/profiler_c_api.h" #include "xla/backends/profiler/plugin/profiler_error.h" #include "tsl/platform/logging.h" #include "tsl/profiler/lib/profiler_c...
#include "xla/backends/profiler/plugin/plugin_tracer_impl.h" #include <cstdint> #include <memory> #include <optional> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/status/status.h" #include "xla/backends/profiler/plugin/plugin_tracer.h" #include "xla/backends/profiler/plugin/profiler_c_api.h" #includ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/profiler/plugin/plugin_tracer_impl.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/backends/profiler/plugin/plugin_tracer_impl_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
3cd770ea-afe3-4a25-b3c7-1b35a92ac8d0
cpp
tensorflow/tensorflow
buffer_use
third_party/xla/xla/runtime/buffer_use.cc
third_party/xla/xla/runtime/buffer_use_test.cc
#include "xla/runtime/buffer_use.h" #include "absl/algorithm/container.h" #include "absl/container/flat_hash_set.h" #include "absl/types/span.h" #include "xla/service/buffer_assignment.h" namespace xla { BufferUse::ReadWriteSet::ReadWriteSet() = default; void BufferUse::ReadWriteSet::Add(BufferUse use) { switch (use....
#include "xla/runtime/buffer_use.h" #include "xla/service/buffer_assignment.h" #include "tsl/platform/test.h" namespace xla { namespace { TEST(BufferUseTest, Equality) { BufferAllocation alloc(0, 1024, 0); BufferAllocation::Slice slice0(&alloc, 0, 10); BufferUse use0(slice0, BufferUse::MemoryAccess::kRead); Buf...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/runtime/buffer_use.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/runtime/buffer_use_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
53279176-e6bf-43d8-9e11-0769e087a2d8
cpp
tensorflow/tensorflow
literal_test_util
third_party/xla/xla/tests/literal_test_util.cc
third_party/xla/xla/tests/literal_test_util_test.cc
#include "xla/tests/literal_test_util.h" #include "absl/strings/str_format.h" #include "xla/literal_comparison.h" #include "tsl/platform/env.h" #include "tsl/platform/path.h" #include "tsl/platform/test.h" namespace xla { namespace { void WriteLiteralToTempFile(const LiteralSlice& literal, c...
#include "xla/tests/literal_test_util.h" #include <vector> #include "absl/strings/str_join.h" #include "xla/literal.h" #include "xla/test_helpers.h" #include "tsl/platform/env.h" #include "tsl/platform/logging.h" #include "tsl/platform/path.h" #include "tsl/platform/test.h" namespace xla { namespace { TEST(LiteralTestU...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tests/literal_test_util.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tests/literal_test_util_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
1986c596-9933-436d-a46c-46859567f49a
cpp
tensorflow/tensorflow
cycle_detector
third_party/xla/xla/mlir_hlo/utils/cycle_detector.cc
third_party/xla/xla/mlir_hlo/utils/cycle_detector_test.cc
#include "utils/cycle_detector.h" #include <algorithm> #include <optional> #include "llvm/ADT/DenseSet.h" #include "llvm/ADT/SmallVector.h" namespace mlir { namespace { using NodeSet = llvm::DenseSet<int32_t>; using OrderedNodeSet = OrderedSet<int32_t>; template <typename T> struct VecStruct { using type = llvm::Smal...
#include "utils/cycle_detector.h" #include "xla/test.h" class GraphCyclesTest : public ::testing::Test { public: GraphCyclesTest() : g_(100) {} bool AddEdge(int x, int y) { return g_.InsertEdge(x, y); } void AddMultiples() { for (int x = 1; x < 25; x++) { EXPECT_TRUE(AddEdge(x, 2 * x)) << x; EXPE...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/mlir_hlo/utils/cycle_detector.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/mlir_hlo/utils/cycle_detector_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
b4ad9eac-84ab-45ce-8e5f-fd72109f0f90
cpp
tensorflow/tensorflow
hlo_utils
third_party/xla/xla/hlo/translate/hlo_to_mhlo/hlo_utils.cc
third_party/xla/xla/hlo/translate/hlo_to_mhlo/hlo_utils_test.cc
#include "xla/hlo/translate/hlo_to_mhlo/hlo_utils.h" #include <cassert> #include <cstddef> #include <cstdint> #include <vector> #include "absl/status/statusor.h" #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/SmallVector.h" #include "llvm/Support/Casting.h" #include "mlir/IR/AffineMap.h" #include "mlir/IR/Builders.h...
#include "xla/hlo/translate/hlo_to_mhlo/hlo_utils.h" #include <cstdint> #include <cstring> #include <vector> #include "mlir/IR/Builders.h" #include "mlir/IR/BuiltinTypes.h" #include "mlir/IR/MLIRContext.h" #include "mlir/Support/DebugStringHelper.h" #include "xla/literal.h" #include "xla/literal_util.h" #include "xla/s...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/translate/hlo_to_mhlo/hlo_utils.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/translate/hlo_to_mhlo/hlo_utils_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
02e32eea-6457-4f34-9a05-e15a3b90742b
cpp
tensorflow/tensorflow
func
tensorflow/compiler/mlir/quantization/common/func.cc
tensorflow/compiler/mlir/quantization/common/func_test.cc
#include "tensorflow/compiler/mlir/quantization/common/func.h" #include "mlir/Dialect/Func/IR/FuncOps.h" #include "mlir/IR/BuiltinOps.h" #include "mlir/IR/SymbolTable.h" #include "mlir/Support/LLVM.h" #include "tensorflow/cc/saved_model/signature_constants.h" #include "tensorflow/compiler/mlir/tensorflow/transl...
#include "tensorflow/compiler/mlir/quantization/common/func.h" #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/strings/string_view.h" #include "mlir/Dialect/Func/IR/FuncOps.h" #include "mlir/IR/BuiltinOps.h" #include "mlir/IR/OwningOpRef.h" #include "tensorflow/compiler/mlir/quantization/common/t...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/quantization/common/func.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/quantization/common/func_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
64e73bd8-48f9-4cb1-8ac8-ead261a6781a
cpp
tensorflow/tensorflow
interpreter
tensorflow/lite/core/interpreter.cc
tensorflow/lite/interpreter_test.cc
#include "tensorflow/lite/core/interpreter.h" #include <stddef.h> #include <stdint.h> #include <stdlib.h> #include <functional> #include <map> #include <memory> #include <string> #include <utility> #include <vector> #include "ruy/denormal.h" #include "tensorflow/compiler/mlir/lite/allocation.h" #include "tensorflow/c...
#include "tensorflow/lite/core/interpreter.h" #include <stddef.h> #include <stdint.h> #include <stdlib.h> #include <string.h> #include <map> #include <memory> #include <string> #include <thread> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "Eigen/Core" #include "te...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/core/interpreter.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/interpreter_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
57f1cd51-8a49-41d2-8617-e678c4a4dc31
cpp
tensorflow/tensorflow
tensor_or_memref
third_party/xla/xla/mlir/tools/mlir_interpreter/framework/tensor_or_memref.cc
third_party/xla/xla/mlir/tools/mlir_interpreter/framework/tests/tensor_or_memref_test.cc
#include "xla/mlir/tools/mlir_interpreter/framework/tensor_or_memref.h" #include <cstddef> #include <cstdint> #include <optional> #include <utility> #include "llvm/ADT/STLExtras.h" #include "llvm/ADT/SmallVector.h" #include "mlir/Dialect/Utils/IndexingUtils.h" #include "mlir/Support/LLVM.h" #include "mlir/Support/Logic...
#include "xla/mlir/tools/mlir_interpreter/framework/tensor_or_memref.h" #include <algorithm> #include <cstdint> #include <optional> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/strings/str_join.h" #include "llvm/ADT/STLExtras.h" #include "llvm/ADT/SmallBitVector.h" #include "llvm/ADT/SmallVector.h" ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/mlir/tools/mlir_interpreter/framework/tensor_or_memref.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/mlir/tools/mlir_interpreter/framework/tests/tensor_or_memref_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
d2594947-6568-4ee6-a346-5acce0f5b176
cpp
tensorflow/tensorflow
registration
third_party/xla/xla/mlir/tools/mlir_interpreter/framework/registration.cc
tensorflow/core/framework/registration/registration_test.cc
#include "xla/mlir/tools/mlir_interpreter/framework/registration.h" #include <cassert> #include <functional> #include <utility> #include "mlir/IR/Operation.h" #include "mlir/Support/LLVM.h" #include "xla/mlir/tools/mlir_interpreter/framework/interpreter.h" #include "xla/mlir/tools/mlir_interpreter/framework/interpreter...
#include "tensorflow/core/framework/registration/registration.h" #include <gmock/gmock.h> #include "tensorflow/core/platform/test.h" namespace tensorflow { namespace { using ::testing::Eq; #define STORE_NEXT_ID_IMPL(id, name) constexpr int name = id #define STORE_NEXT_ID(name) TF_NEW_ID_FOR_INIT(STORE_NEXT_ID_IMPL, nam...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/mlir/tools/mlir_interpreter/framework/registration.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/core/framework/registration/registration_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
21dfe8dd-d12e-423a-9396-e9855bfff713
cpp
tensorflow/tensorflow
interpreter_value
third_party/xla/xla/mlir/tools/mlir_interpreter/framework/interpreter_value.cc
third_party/xla/xla/mlir/tools/mlir_interpreter/framework/tests/interpreter_value_test.cc
#include "xla/mlir/tools/mlir_interpreter/framework/interpreter_value.h" #include <cassert> #include <complex> #include <cstdint> #include <functional> #include <iterator> #include <memory> #include <string> #include <string_view> #include <type_traits> #include <variant> #include "llvm/ADT/STLExtras.h" #include "llvm/...
#include "xla/mlir/tools/mlir_interpreter/framework/interpreter_value.h" #include <complex> #include <cstdint> #include <optional> #include <variant> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "llvm/ADT/ArrayRef.h" #include "xla/mlir/tools/mlir_interpreter/framework/tensor_or_memref.h" namespace mlir { ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/mlir/tools/mlir_interpreter/framework/interpreter_value.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/mlir/tools/mlir_interpreter/framework/tests/interpreter_value_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
52916fe4-bde7-4bfd-a579-9931b007d93f
cpp
tensorflow/tensorflow
math
third_party/xla/xla/hlo/builder/lib/math.cc
third_party/xla/xla/hlo/builder/lib/math_test.cc
#include "xla/hlo/builder/lib/math.h" #include <algorithm> #include <array> #include <cmath> #include <functional> #include <limits> #include <vector> #include "absl/algorithm/container.h" #include "absl/log/log.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/string_view.h" #...
#include "xla/hlo/builder/lib/math.h" #include <cmath> #include <complex> #include <functional> #include <limits> #include <memory> #include <string> #include <utility> #include <vector> #include <gtest/gtest.h> #include "xla/array3d.h" #include "xla/error_spec.h" #include "xla/hlo/builder/lib/constants.h" #include "xl...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/builder/lib/math.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/builder/lib/math_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
db56bb06-7c34-4ecb-b2e3-92e681833f69
cpp
tensorflow/tensorflow
tensor
tensorflow/lite/delegates/gpu/cl/tensor.cc
tensorflow/cc/experimental/base/tests/tensor_test.cc
#include "tensorflow/lite/delegates/gpu/cl/tensor.h" #include <cstdint> #include <cstring> #include <memory> #include <utility> #include <vector> #include "absl/strings/str_cat.h" #include "tensorflow/lite/delegates/gpu/cl/buffer.h" #include "tensorflow/lite/delegates/gpu/cl/cl_image_format.h" #include "tensorflow/lite...
#include "tensorflow/cc/experimental/base/public/tensor.h" #include <stddef.h> #include <stdint.h> #include <gtest/gtest.h> #include "absl/types/span.h" #include "tensorflow/c/tf_datatype.h" #include "tensorflow/cc/experimental/base/public/status.h" #include "tensorflow/cc/experimental/base/tests/tensor_types_test_util...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/lite/delegates/gpu/cl/tensor.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/cc/experimental/base/tests/tensor_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
36f6b8c3-4e4d-44d4-a114-9c8ef199e3e6
cpp
tensorflow/tensorflow
execution_trace_utils
third_party/xla/xla/mlir/tools/mlir_replay/public/execution_trace_utils.cc
third_party/xla/xla/mlir/tools/mlir_replay/public/execution_trace_utils_test.cc
#include "xla/mlir/tools/mlir_replay/public/execution_trace_utils.h" #include <cassert> #include <complex> #include <cstdint> #include <functional> #include <iterator> #include <memory> #include <type_traits> #include <utility> #include <variant> #include "absl/status/status.h" #include "absl/status/statusor.h" #includ...
#include "xla/mlir/tools/mlir_replay/public/execution_trace_utils.h" #include <cmath> #include <complex> #include <cstdint> #include <memory> #include <utility> #include <vector> #include <gtest/gtest.h> #include "llvm/ADT/STLExtras.h" #include "mlir/Support/LLVM.h" #include "xla/literal.h" #include "xla/literal_util.h...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/mlir/tools/mlir_replay/public/execution_trace_utils.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/mlir/tools/mlir_replay/public/execution_trace_utils_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
346598cf-4ab4-497e-b096-3d2dbd550eb3
cpp
tensorflow/tensorflow
error_util
tensorflow/compiler/mlir/tensorflow/utils/error_util.cc
tensorflow/compiler/mlir/tensorflow/utils/error_util_test.cc
#include "tensorflow/compiler/mlir/tensorflow/utils/error_util.h" #include <string_view> #include "absl/status/status.h" #include "mlir/IR/BuiltinAttributes.h" #include "mlir/IR/Diagnostics.h" #include "mlir/Support/LLVM.h" #include "tensorflow/core/platform/errors.h" #include "tensorflow/core/platform/status.h" ...
#include "tensorflow/compiler/mlir/tensorflow/utils/error_util.h" #include "llvm/ADT/Twine.h" #include "mlir/IR/Builders.h" #include "mlir/IR/MLIRContext.h" #include "xla/test.h" #include "tensorflow/core/lib/core/errors.h" #include "tensorflow/core/lib/core/status_test_util.h" namespace mlir { namespace { using te...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/tensorflow/utils/error_util.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/tensorflow/utils/error_util_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
e8206bd6-ec21-4c85-a0fb-f7ed53b0a6be
cpp
tensorflow/tensorflow
type_util
tensorflow/compiler/tf2xla/type_util.cc
tensorflow/compiler/tf2xla/type_util_test.cc
#include "tensorflow/compiler/tf2xla/type_util.h" #include "absl/container/flat_hash_map.h" #include "xla/xla_data.pb.h" #include "tensorflow/core/framework/types.h" #include "tensorflow/core/framework/types.pb.h" #include "tensorflow/core/lib/core/errors.h" #include "tensorflow/core/platform/status.h" namespace tensor...
#include "tensorflow/compiler/tf2xla/type_util.h" #include <array> #include "absl/status/statusor.h" #include "tensorflow/core/framework/types.h" #include "tensorflow/core/framework/types.pb.h" #include "tensorflow/core/platform/test.h" namespace tensorflow { namespace { bool DataTypeSupportsXlaConversion(DataType dt) ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/tf2xla/type_util.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/tf2xla/type_util_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
89bd881f-5e83-40d0-a29d-07fe18039cf9
cpp
tensorflow/tensorflow
type_id_registry
third_party/xla/xla/ffi/type_id_registry.cc
third_party/xla/xla/ffi/type_id_registry_test.cc
#include "xla/ffi/type_id_registry.h" #include <atomic> #include <cstdint> #include <string> #include <string_view> #include "absl/base/attributes.h" #include "absl/base/const_init.h" #include "absl/container/flat_hash_map.h" #include "absl/status/statusor.h" #include "absl/synchronization/mutex.h" #include "xla/util.h...
#include "xla/ffi/type_id_registry.h" #include <cstdint> #include "absl/status/status.h" #include "tsl/platform/statusor.h" #include "tsl/platform/test.h" namespace xla::ffi { namespace { using ::testing::HasSubstr; TEST(TypeIdRegistryTest, RegisterExternalTypeId) { TF_ASSERT_OK_AND_ASSIGN(auto type_id, ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/ffi/type_id_registry.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/ffi/type_id_registry_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
f97dfb87-0805-43bb-806b-b6193861e8fb
cpp
tensorflow/tensorflow
execution_state
third_party/xla/xla/ffi/execution_state.cc
third_party/xla/xla/ffi/execution_state_test.cc
#include "xla/ffi/execution_state.h" #include <utility> #include "absl/status/status.h" #include "xla/ffi/type_id_registry.h" #include "xla/util.h" #include "tsl/platform/logging.h" namespace xla::ffi { ExecutionState::ExecutionState() : type_id_(TypeIdRegistry::kUnknownTypeId), state_(nullptr), deleter...
#include "xla/ffi/execution_state.h" #include <cstdint> #include <memory> #include "xla/tsl/lib/core/status_test_util.h" #include "tsl/platform/statusor.h" #include "tsl/platform/test.h" namespace xla::ffi { using TypeId = ExecutionState::TypeId; using ::testing::HasSubstr; TEST(ExecutionStateTest, SetAndGet) { Execu...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/ffi/execution_state.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/ffi/execution_state_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
ead042dd-f68b-44ed-b69a-5679dbf2156e
cpp
tensorflow/tensorflow
execution_context
third_party/xla/xla/ffi/execution_context.cc
third_party/xla/xla/ffi/execution_context_test.cc
#include "xla/ffi/execution_context.h" #include <memory> #include <utility> #include "absl/container/flat_hash_map.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_cat.h" namespace xla::ffi { ExecutionContext::UserData::UserData(void* data, Deleter<void> deleter) : dat...
#include "xla/ffi/execution_context.h" #include <cstdint> #include <string> #include "absl/status/status.h" #include "xla/ffi/type_id_registry.h" #include "xla/tsl/lib/core/status_test_util.h" #include "tsl/platform/statusor.h" #include "tsl/platform/test.h" namespace xla::ffi { struct I32UserData { explicit I32UserD...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/ffi/execution_context.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/ffi/execution_context_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
87bbe468-7164-4411-b315-e073e50aa62f
cpp
tensorflow/tensorflow
call_frame
third_party/xla/xla/ffi/call_frame.cc
third_party/xla/xla/ffi/call_frame_test.cc
#include "xla/ffi/call_frame.h" #include <cstddef> #include <cstdint> #include <functional> #include <memory> #include <string> #include <type_traits> #include <utility> #include <variant> #include <vector> #include "absl/algorithm/container.h" #include "absl/base/optimization.h" #include "absl/container/inlined_vector...
#include "xla/ffi/call_frame.h" #include <cstddef> #include <cstdint> #include <optional> #include <utility> #include <vector> #include "absl/strings/str_cat.h" #include "xla/ffi/api/c_api.h" #include "xla/stream_executor/device_memory.h" #include "xla/tsl/lib/core/status_test_util.h" #include "xla/xla_data.pb.h" #incl...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/ffi/call_frame.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/ffi/call_frame_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
b0083186-28e1-4ea5-95ad-1a8f341b1df3
cpp
tensorflow/tensorflow
hlo_evaluator
third_party/xla/xla/hlo/evaluator/hlo_evaluator.cc
third_party/xla/xla/hlo/evaluator/hlo_evaluator_test.cc
#include "xla/hlo/evaluator/hlo_evaluator.h" #include <algorithm> #include <atomic> #include <cmath> #include <complex> #include <cstddef> #include <cstdint> #include <cstdlib> #include <cstring> #include <functional> #include <iterator> #include <limits> #include <memory> #include <numeric> #include <optional> #includ...
#include "xla/hlo/evaluator/hlo_evaluator.h" #include <array> #include <complex> #include <cstdint> #include <initializer_list> #include <limits> #include <memory> #include <numeric> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/base/inte...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/evaluator/hlo_evaluator.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/evaluator/hlo_evaluator_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
9d971230-2c49-4826-81f8-9511039c41a5
cpp
tensorflow/tensorflow
auto_sharding
third_party/xla/xla/hlo/experimental/auto_sharding/auto_sharding.cc
third_party/xla/xla/hlo/experimental/auto_sharding/auto_sharding_test.cc
#include "xla/hlo/experimental/auto_sharding/auto_sharding.h" #include <algorithm> #include <climits> #include <cstddef> #include <cstdint> #include <cstdlib> #include <functional> #include <iterator> #include <limits> #include <memory> #include <numeric> #include <optional> #include <queue> #include <string> #include ...
#include "xla/hlo/experimental/auto_sharding/auto_sharding.h" #include <cstddef> #include <cstdint> #include <memory> #include <numeric> #include <string> #include <tuple> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/algorithm/container.h" #include "absl/containe...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/experimental/auto_sharding/auto_sharding.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/experimental/auto_sharding/auto_sharding_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
bfb29bf7-6eab-4ad7-a819-b0a239d934ec
cpp
tensorflow/tensorflow
auto_sharding_solver
third_party/xla/xla/hlo/experimental/auto_sharding/auto_sharding_solver.cc
third_party/xla/xla/hlo/experimental/auto_sharding/auto_sharding_solver_test.cc
#include "xla/hlo/experimental/auto_sharding/auto_sharding_solver.h" #include <algorithm> #include <cmath> #include <cstddef> #include <cstdint> #include <functional> #include <limits> #include <memory> #include <optional> #include <string> #include <string_view> #include <utility> #include <vector> #include "absl/cont...
#include "xla/hlo/experimental/auto_sharding/auto_sharding_solver.h" #include <cstdint> #include <string> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/container/flat_hash_set.h" #include "absl/log/check.h" #include "absl/status/status.h" #include "xla/hlo/experim...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/experimental/auto_sharding/auto_sharding_solver.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/experimental/auto_sharding/auto_sharding_solver_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
37814792-efdc-4cb3-a712-b3397f948e72
cpp
tensorflow/tensorflow
auto_sharding_memory
third_party/xla/xla/hlo/experimental/auto_sharding/auto_sharding_memory.cc
third_party/xla/xla/hlo/experimental/auto_sharding/auto_sharding_memory_test.cc
#include "xla/hlo/experimental/auto_sharding/auto_sharding_memory.h" #include <algorithm> #include <cstdint> #include <functional> #include <limits> #include <optional> #include <utility> #include <vector> #include "absl/container/btree_map.h" #include "absl/container/btree_set.h" #include "absl/container/flat_hash_set...
#include "xla/hlo/experimental/auto_sharding/auto_sharding_memory.h" #include <cstdint> #include <functional> #include <utility> #include <vector> #include <gtest/gtest.h> #include "absl/container/btree_set.h" #include "absl/container/flat_hash_set.h" namespace xla { namespace spmd { namespace { std::function<tsl::prot...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/experimental/auto_sharding/auto_sharding_memory.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/experimental/auto_sharding/auto_sharding_memory_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
e9469ed1-6c77-4323-9ef8-b4a9ff678ff6
cpp
tensorflow/tensorflow
type_to_shape
third_party/xla/xla/hlo/translate/mhlo_to_hlo/type_to_shape.cc
third_party/xla/xla/hlo/translate/mhlo_to_hlo/type_to_shape_test.cc
#include "xla/hlo/translate/mhlo_to_hlo/type_to_shape.h" #include <algorithm> #include <cstdint> #include <numeric> #include <optional> #include <tuple> #include <utility> #include <vector> #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/STLExtras.h" #include "llvm/ADT/SmallVector.h" #include "llvm/Support/LogicalRes...
#include "xla/hlo/translate/mhlo_to_hlo/type_to_shape.h" #include <iostream> #include <utility> #include "absl/status/statusor.h" #include "llvm/ADT/SmallVector.h" #include "mlir/IR/Builders.h" #include "mlir/IR/BuiltinTypeInterfaces.h" #include "mlir/IR/BuiltinTypes.h" #include "mlir/IR/MLIRContext.h" #include "xla/hl...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/translate/mhlo_to_hlo/type_to_shape.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/translate/mhlo_to_hlo/type_to_shape_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
598c730c-79a4-40bf-874a-24f60c51c13a
cpp
tensorflow/tensorflow
mlir_hlo_to_hlo
third_party/xla/xla/hlo/translate/mhlo_to_hlo/mlir_hlo_to_hlo.cc
third_party/xla/xla/hlo/translate/mhlo_to_hlo/mlir_hlo_to_hlo_test.cc
#include "xla/hlo/translate/mhlo_to_hlo/mlir_hlo_to_hlo.h" #include <algorithm> #include <cassert> #include <cstddef> #include <cstdint> #include <memory> #include <optional> #include <string> #include <utility> #include <vector> #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/status/statusor...
#include "xla/hlo/translate/mhlo_to_hlo/mlir_hlo_to_hlo.h" #include <string> #include "mlir/Dialect/Func/IR/FuncOps.h" #include "mlir/Dialect/Shape/IR/Shape.h" #include "mlir/IR/BuiltinOps.h" #include "mlir/IR/MLIRContext.h" #include "mlir/IR/OwningOpRef.h" #include "mlir/Parser/Parser.h" #include "stablehlo/dialect/Re...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/translate/mhlo_to_hlo/mlir_hlo_to_hlo.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/translate/mhlo_to_hlo/mlir_hlo_to_hlo_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
bf1418cd-bbf0-470c-baf8-5dfca9a1e659
cpp
tensorflow/tensorflow
hlo_pass_pipeline
third_party/xla/xla/hlo/pass/hlo_pass_pipeline.cc
third_party/xla/xla/hlo/pass/hlo_pass_pipeline_test.cc
#include "xla/hlo/pass/hlo_pass_pipeline.h" #include <functional> #include <string> #include "absl/container/flat_hash_map.h" #include "absl/container/flat_hash_set.h" #include "absl/strings/str_format.h" #include "absl/strings/str_join.h" #include "xla/service/dump.h" #include "xla/service/hlo_graph_dumper.h" #include...
#include "xla/hlo/pass/hlo_pass_pipeline.h" #include <algorithm> #include <memory> #include <string> #include <utility> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "absl/container/flat_hash_set.h" #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/s...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/pass/hlo_pass_pipeline.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/pass/hlo_pass_pipeline_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
4db71c48-fba5-4815-b48c-8072b4eda2f0
cpp
tensorflow/tensorflow
backend_config
third_party/xla/xla/hlo/ir/backend_config.cc
third_party/xla/xla/hlo/ir/backend_config_test.cc
#include "xla/hlo/ir/backend_config.h" #include <memory> #include <string> #include <utility> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/synchronization/mutex.h" #include "xla/util.h" #include "tsl/platform/errors.h" #include "tsl/platform/human_readable_json.h" #include "tsl/platf...
#include "xla/hlo/ir/backend_config.h" #include <memory> #include <string> #include <thread> #include <utility> #include <vector> #include "absl/strings/string_view.h" #include "absl/synchronization/notification.h" #include "xla/service/gpu/backend_configs.pb.h" #include "xla/tsl/lib/core/status_test_util.h" #include...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/ir/backend_config.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/ir/backend_config_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
af3f2af3-6f07-4e3c-b1f8-a9fbaaa3332c
cpp
tensorflow/tensorflow
hlo_opcode
third_party/xla/xla/hlo/ir/hlo_opcode.cc
third_party/xla/xla/service/hlo_opcode_test.cc
#include "xla/hlo/ir/hlo_opcode.h" #include <optional> #include <string> #include "absl/container/flat_hash_map.h" #include "xla/util.h" namespace xla { absl::string_view HloOpcodeString(HloOpcode opcode) { switch (opcode) { #define CASE_OPCODE_STRING(enum_name, opcode_name, ...) \ case HloOpcode::enum_name: ...
#include "xla/hlo/ir/hlo_opcode.h" #include "xla/test.h" #include "xla/types.h" namespace xla { namespace { TEST(HloOpcodeTest, StringifyMultiply) { ASSERT_EQ("multiply", HloOpcodeString(HloOpcode::kMultiply)); } TEST(HloOpcodeTest, OpcodeProperties) { #define SOME_LIST(X) \ X(One) \ X(Two) ...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/ir/hlo_opcode.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/hlo_opcode_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
0bc63f44-f8b9-4765-a91f-c9b302a20911
cpp
tensorflow/tensorflow
hlo_schedule
third_party/xla/xla/hlo/ir/hlo_schedule.cc
third_party/xla/xla/service/hlo_schedule_test.cc
#include "xla/hlo/ir/hlo_schedule.h" #include <cstdint> #include <ostream> #include <queue> #include <string> #include <tuple> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/container/flat_hash_map.h" #include "absl/container/flat_hash_set.h" #include "absl/strings/str_format....
#include "xla/hlo/ir/hlo_schedule.h" #include <memory> #include <string> #include <vector> #include <gtest/gtest.h> #include "absl/algorithm/container.h" #include "absl/log/log.h" #include "xla/hlo/ir/hlo_computation.h" #include "xla/hlo/ir/hlo_instruction.h" #include "xla/hlo/ir/hlo_opcode.h" #include "xla/service/hlo...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/ir/hlo_schedule.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/hlo_schedule_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
576c35e6-cf82-4d5a-afeb-c1c2dc9dbaaf
cpp
tensorflow/tensorflow
hlo_module_metadata
third_party/xla/xla/hlo/ir/hlo_module_metadata.cc
third_party/xla/xla/service/hlo_module_metadata_test.cc
#include "xla/hlo/ir/hlo_module_metadata.h" #include <algorithm> #include "absl/container/flat_hash_set.h" #include "absl/log/log.h" #include "xla/util.h" #include "tsl/platform/env.h" #include "tsl/platform/protobuf.h" namespace xla { absl::StatusOr<HloPassMetadata*> HloModuleMetadata::GetCurrentHloPassMetadata() { ...
#include "xla/hlo/ir/hlo_module_metadata.h" #include "xla/test.h" #include "xla/test_helpers.h" namespace xla { namespace { using ::testing::ElementsAre; using ::testing::Property; using ::testing::StrEq; class TestEnv : public tsl::EnvWrapper { public: TestEnv() : EnvWrapper(Env::Default()) {} uint64_t NowMicros(...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/ir/hlo_module_metadata.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/hlo_module_metadata_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
23a79605-f8d1-470f-b2fc-6fc4ba7ce262
cpp
tensorflow/tensorflow
hlo_dfs_reachability
third_party/xla/xla/hlo/ir/hlo_dfs_reachability.cc
third_party/xla/xla/service/hlo_dfs_reachability_test.cc
#include "xla/hlo/ir/hlo_dfs_reachability.h" #include <cstddef> #include <memory> #include <vector> #include "absl/algorithm/container.h" #include "llvm/ADT/BitVector.h" #include "llvm/ADT/SmallVector.h" #include "xla/hlo/ir/hlo_computation.h" #include "xla/hlo/ir/hlo_instruction.h" namespace xla { bool HloDfsReachabil...
#include "xla/hlo/ir/hlo_dfs_reachability.h" #include <cstddef> #include <memory> #include <string> #include <string_view> #include "xla/hlo/ir/hlo_computation.h" #include "xla/hlo/ir/hlo_instruction.h" #include "xla/hlo/ir/hlo_opcode.h" #include "xla/literal_util.h" #include "xla/service/computation_placer.h" #include...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/ir/hlo_dfs_reachability.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/hlo_dfs_reachability_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
f6581bd4-a731-48f5-97bf-4572aa575fb6
cpp
tensorflow/tensorflow
collective_device_list
third_party/xla/xla/hlo/ir/collective_device_list.cc
third_party/xla/xla/hlo/ir/collective_device_list_test.cc
#include "xla/hlo/ir/collective_device_list.h" #include <cstdint> #include <memory> #include <string> #include <utility> #include <vector> #include "absl/log/check.h" #include "absl/log/log.h" #include "absl/strings/str_cat.h" #include "absl/strings/str_join.h" #include "absl/types/span.h" #include "xla/xla_data.pb.h" ...
#include "xla/hlo/ir/collective_device_list.h" #include <cstdint> #include <vector> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "xla/service/hlo.pb.h" #include "xla/xla_data.pb.h" namespace xla { CollectiveDeviceListProto CreateDeviceListProto( const std::vector<std::vector<int64_t>>& replica_groups)...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/ir/collective_device_list.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/ir/collective_device_list_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
0ec28ff5-400f-4eb8-b45c-475999016815
cpp
tensorflow/tensorflow
hlo_module_group
third_party/xla/xla/hlo/ir/hlo_module_group.cc
third_party/xla/xla/service/hlo_module_group_test.cc
#include "xla/hlo/ir/hlo_module_group.h" #include <memory> #include <ostream> #include <sstream> #include <string> #include <utility> #include <vector> namespace xla { HloModuleGroup::HloModuleGroup(std::unique_ptr<HloModule> module) : name_(module->name()) { push_back(std::move(module)); } HloModuleGroup::HloMod...
#include "xla/hlo/ir/hlo_module_group.h" #include "xla/hlo/utils/hlo_matchers.h" #include "xla/service/hlo.pb.h" #include "xla/service/hlo_module_group_metadata.h" #include "xla/test.h" #include "xla/tests/hlo_test_base.h" #include "xla/tsl/lib/core/status_test_util.h" namespace xla { namespace { namespace op = ::xla::...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/ir/hlo_module_group.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/hlo_module_group_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
ec92ce8c-32f6-44bf-8aec-55c051a57685
cpp
tensorflow/tensorflow
hlo_reachability
third_party/xla/xla/hlo/ir/hlo_reachability.cc
third_party/xla/xla/service/hlo_reachability_test.cc
#include "xla/hlo/ir/hlo_reachability.h" #include <memory> #include <queue> #include <vector> #include "absl/algorithm/container.h" #include "xla/hlo/ir/hlo_instruction.h" namespace xla { HloReachabilityMap::HloReachabilityMap( absl::Span<const HloInstruction* const> instructions) : bit_sets_(instructions.size(...
#include "xla/hlo/ir/hlo_reachability.h" #include <memory> #include <set> #include <string> #include <string_view> #include "absl/random/random.h" #include "xla/hlo/ir/hlo_instruction.h" #include "xla/hlo/ir/hlo_opcode.h" #include "xla/literal_util.h" #include "xla/service/computation_placer.h" #include "xla/service/hl...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/ir/hlo_reachability.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/hlo_reachability_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
30284e41-2319-4f52-8b80-30cb28be38ab
cpp
tensorflow/tensorflow
dynamic_parameter_binding
third_party/xla/xla/hlo/ir/dynamic_parameter_binding.cc
third_party/xla/xla/service/dynamic_parameter_binding_test.cc
#include "xla/hlo/ir/dynamic_parameter_binding.h" #include <optional> #include <ostream> #include <string> #include <vector> #include "absl/status/status.h" #include "absl/strings/str_format.h" #include "absl/strings/str_join.h" #include "xla/hlo/ir/hlo_computation.h" #include "xla/hlo/ir/hlo_instruction.h" #include "x...
#include "xla/hlo/ir/dynamic_parameter_binding.h" #include <memory> #include <optional> #include <string> #include <gtest/gtest.h> #include "xla/hlo/ir/hlo_computation.h" #include "xla/hlo/ir/hlo_instruction.h" #include "xla/shape_util.h" #include "xla/tests/hlo_test_base.h" #include "xla/tsl/lib/core/status_test_util....
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/ir/dynamic_parameter_binding.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/dynamic_parameter_binding_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
382f3e30-b23c-401e-9945-f8020eb0786a
cpp
tensorflow/tensorflow
hlo_computation
third_party/xla/xla/hlo/ir/hlo_computation.cc
third_party/xla/xla/service/hlo_computation_test.cc
#include "xla/hlo/ir/hlo_computation.h" #include <algorithm> #include <cstddef> #include <cstdint> #include <iterator> #include <memory> #include <optional> #include <ostream> #include <queue> #include <stack> #include <string> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/co...
#include "xla/hlo/ir/hlo_computation.h" #include <cstdint> #include <memory> #include <string> #include <string_view> #include <vector> #include <gmock/gmock.h> #include "absl/container/flat_hash_map.h" #include "absl/container/flat_hash_set.h" #include "absl/status/status.h" #include "xla/comparison_util.h" #include "...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/ir/hlo_computation.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/hlo_computation_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
fc21e004-d9cf-4df2-88e5-7f58d4352930
cpp
tensorflow/tensorflow
tile_assignment
third_party/xla/xla/hlo/ir/tile_assignment.cc
third_party/xla/xla/tests/tile_assignment_test.cc
#include "xla/hlo/ir/tile_assignment.h" #include <cstdint> #include <cstring> #include <memory> #include <optional> #include <string> #include <utility> #include "absl/container/inlined_vector.h" #include "absl/log/check.h" #include "absl/types/span.h" #include "xla/array.h" #include "xla/util.h" namespace xla { namesp...
#include "xla/hlo/ir/tile_assignment.h" #include <memory> #include <vector> #include "absl/hash/hash.h" #include "xla/array3d.h" #include "xla/test.h" namespace xla { namespace { using ::testing::ElementsAre; std::vector<int64_t> ToVectorUsingEach(const TileAssignment& tile) { std::vector<int64_t> result; result.re...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/ir/tile_assignment.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/tests/tile_assignment_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
7484ff92-acf1-42ef-86b8-36fb3c19fc85
cpp
tensorflow/tensorflow
hlo_instruction
third_party/xla/xla/hlo/ir/hlo_instruction.cc
third_party/xla/xla/service/hlo_instruction_test.cc
#include "xla/hlo/ir/hlo_instruction.h" #include <algorithm> #include <climits> #include <cstddef> #include <cstdint> #include <functional> #include <iostream> #include <iterator> #include <memory> #include <optional> #include <ostream> #include <string> #include <utility> #include <vector> #include "absl/algorithm/con...
#include "xla/hlo/ir/hlo_instruction.h" #include <cstddef> #include <cstdint> #include <initializer_list> #include <limits> #include <memory> #include <optional> #include <set> #include <string> #include <utility> #include <vector> #include "absl/container/flat_hash_map.h" #include "absl/status/status.h" #include "absl...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/ir/hlo_instruction.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/hlo_instruction_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
b385adf9-728d-43f0-a409-fe53a52414c6
cpp
tensorflow/tensorflow
hlo_input_output_alias_config
third_party/xla/xla/hlo/ir/hlo_input_output_alias_config.cc
third_party/xla/xla/service/hlo_input_output_alias_config_test.cc
#include "xla/hlo/ir/hlo_input_output_alias_config.h" #include <cstdint> #include <optional> #include <ostream> #include <string> #include <utility> #include <vector> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/str_format.h" #include "absl/strings/str_join.h" #include "xla/h...
#include "xla/hlo/ir/hlo_input_output_alias_config.h" #include <memory> #include <string> #include <gtest/gtest.h> #include "absl/algorithm/container.h" #include "xla/hlo/ir/hlo_computation.h" #include "xla/hlo/ir/hlo_instruction.h" #include "xla/hlo/ir/hlo_opcode.h" #include "xla/service/hlo_dce.h" #include "xla/servi...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/ir/hlo_input_output_alias_config.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/hlo_input_output_alias_config_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
c3a95f6c-7a3e-41ce-a6b7-c77b05f1b7d2
cpp
tensorflow/tensorflow
hlo_module
third_party/xla/xla/hlo/ir/hlo_module.cc
third_party/xla/xla/service/hlo_module_test.cc
#include "xla/hlo/ir/hlo_module.h" #include <algorithm> #include <atomic> #include <cstddef> #include <cstdint> #include <iterator> #include <memory> #include <optional> #include <string> #include <utility> #include <variant> #include <vector> #include "absl/algorithm/container.h" #include "absl/container/flat_hash_map...
#include "xla/hlo/ir/hlo_module.h" #include <algorithm> #include <cstdint> #include <memory> #include <optional> #include <string> #include <utility> #include <vector> #include <gtest/gtest.h> #include "absl/strings/str_cat.h" #include "absl/types/span.h" #include "xla/hlo/ir/hlo_computation.h" #include "xla/hlo/ir/hlo...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/ir/hlo_module.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/hlo_module_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
54892a0d-a6bd-4074-b1d2-de0af3d15773
cpp
tensorflow/tensorflow
hlo_sharding
third_party/xla/xla/hlo/ir/hlo_sharding.cc
third_party/xla/xla/service/hlo_sharding_test.cc
#include "xla/hlo/ir/hlo_sharding.h" #include <algorithm> #include <array> #include <cstdint> #include <iterator> #include <map> #include <memory> #include <optional> #include <ostream> #include <string> #include <tuple> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/container...
#include <algorithm> #include <set> #include <sstream> #include <string> #include <tuple> #include <utility> #include <vector> #include "absl/hash/hash.h" #include "xla/protobuf_util.h" #include "xla/service/hlo_parser.h" #include "xla/shape_util.h" #include "xla/test.h" #include "xla/test_helpers.h" #include "xla/test...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/ir/hlo_sharding.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/service/hlo_sharding_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
1ebc940d-e527-4074-8f1f-bd379b98050d
cpp
tensorflow/tensorflow
hlo_matchers
tensorflow/compiler/mlir/lite/stablehlo/transforms/hlo_matchers.cc
third_party/xla/xla/hlo/utils/hlo_matchers_test.cc
#include "tensorflow/compiler/mlir/lite/stablehlo/transforms/hlo_matchers.h" #include <cassert> #include <cstddef> #include <cstdint> #include <cstdlib> #include <optional> #include <utility> #include "llvm/ADT/APInt.h" #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/StringRef.h" #in...
#include "xla/hlo/utils/hlo_matchers.h" #include <optional> #include <string> #include <utility> #include <vector> #include <gmock/gmock.h> #include "xla/literal_util.h" #include "xla/shape_util.h" #include "xla/tests/hlo_test_base.h" #include "xla/xla_data.pb.h" namespace op = xla::testing::opcode_matchers; using ::te...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/tensorflow/compiler/mlir/lite/stablehlo/transforms/hlo_matchers.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/utils/hlo_matchers_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
3ae28366-5f5c-4685-9465-c15e3ed6cca1
cpp
tensorflow/tensorflow
hlo_live_range
third_party/xla/xla/hlo/utils/hlo_live_range.cc
third_party/xla/xla/hlo/utils/hlo_live_range_test.cc
#include "xla/hlo/utils/hlo_live_range.h" #include <algorithm> #include <cstdint> #include <memory> #include <optional> #include <string> #include <tuple> #include <utility> #include <vector> #include "absl/algorithm/container.h" #include "absl/container/flat_hash_map.h" #include "absl/status/statusor.h" #include "absl...
#include "xla/hlo/utils/hlo_live_range.h" #include <cstddef> #include <cstdint> #include <memory> #include <string> #include <utility> #include <vector> #include <gtest/gtest.h> #include "absl/container/flat_hash_map.h" #include "xla/comparison_util.h" #include "xla/hlo/ir/hlo_computation.h" #include "xla/hlo/ir/hlo_in...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/utils/hlo_live_range.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/utils/hlo_live_range_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
03d4180a-c3ad-4127-b9e0-08f2506c3923
cpp
tensorflow/tensorflow
hlo_query
third_party/xla/xla/hlo/utils/hlo_query.cc
third_party/xla/xla/hlo/utils/hlo_query_test.cc
#include "xla/hlo/utils/hlo_query.h" #include <algorithm> #include <cstdint> #include <utility> #include "absl/algorithm/container.h" #include "absl/strings/string_view.h" #include "xla/hlo/ir/hlo_casting_utils.h" #include "xla/hlo/ir/hlo_instruction.h" #include "xla/hlo/ir/hlo_instructions.h" #include "xla/hlo/ir/hlo_...
#include "xla/hlo/utils/hlo_query.h" #include <memory> #include <utility> #include <gtest/gtest.h> #include "absl/log/check.h" #include "absl/log/log.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #include "xla/hlo/ir/hlo_computation.h" #include "xla/hlo/ir/hlo_instruction.h" #include "xla/h...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/utils/hlo_query.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/utils/hlo_query_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
fa51a62f-98c3-4da9-956d-b566594678eb
cpp
tensorflow/tensorflow
hlo_sharding_util
third_party/xla/xla/hlo/utils/hlo_sharding_util.cc
third_party/xla/xla/hlo/utils/hlo_sharding_util_test.cc
#include "xla/hlo/utils/hlo_sharding_util.h" #include <algorithm> #include <cmath> #include <cstdint> #include <cstdlib> #include <iterator> #include <map> #include <memory> #include <numeric> #include <optional> #include <string> #include <tuple> #include <utility> #include <vector> #include "absl/algorithm/container....
#include "xla/hlo/utils/hlo_sharding_util.h" #include <cstdint> #include <initializer_list> #include <optional> #include <utility> #include <vector> #include <gtest/gtest.h> #include "absl/log/log.h" #include "absl/strings/string_view.h" #include "absl/types/span.h" #include "xla/array.h" #include "xla/hlo/ir/hlo_instr...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/utils/hlo_sharding_util.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/utils/hlo_sharding_util_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
94825b0c-0378-4fc1-b42d-9a415dd00c59
cpp
tensorflow/tensorflow
hlo_parser
third_party/xla/xla/hlo/parser/hlo_parser.cc
third_party/xla/xla/hlo/parser/hlo_parser_test.cc
#include "xla/hlo/parser/hlo_parser.h" #include <cmath> #include <complex> #include <cstdint> #include <functional> #include <iterator> #include <limits> #include <memory> #include <optional> #include <string> #include <tuple> #include <type_traits> #include <utility> #include <vector> #include "absl/algorithm/containe...
#include "xla/hlo/parser/hlo_parser.h" #include <cstdint> #include <memory> #include <string> #include <string_view> #include <utility> #include <vector> #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/a...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/parser/hlo_parser.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/parser/hlo_parser_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea
b24371fc-a9b3-45b6-b90e-9778a16abea8
cpp
tensorflow/tensorflow
hlo_constant_splitter
third_party/xla/xla/hlo/transforms/hlo_constant_splitter.cc
third_party/xla/xla/hlo/transforms/hlo_constant_splitter_test.cc
#include "xla/hlo/transforms/hlo_constant_splitter.h" #include <iterator> #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/log/log.h" #include "absl/status/status...
#include "xla/hlo/transforms/hlo_constant_splitter.h" #include <cstdint> #include "xla/hlo/ir/hlo_computation.h" #include "xla/hlo/ir/hlo_instruction.h" #include "xla/hlo/ir/hlo_opcode.h" #include "xla/service/hlo_dce.h" #include "xla/service/hlo_parser.h" #include "xla/test.h" #include "xla/tests/hlo_test_base.h" #inc...
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/transforms/hlo_constant_splitter.cc
https://github.com/tensorflow/tensorflow/blob/4a29233a7b7c1a3a4294e4ccdd1772f9083944ea/third_party/xla/xla/hlo/transforms/hlo_constant_splitter_test.cc
4a29233a7b7c1a3a4294e4ccdd1772f9083944ea