OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bytes_accessed
(Results
1 - 4
of
4
) sorted by null
/external/tensorflow/tensorflow/compiler/xla/service/
human_readable_profile_builder.h
50
int64 transcendental_count, int64
bytes_accessed
,
54
bytes_accessed
, optimal_seconds});
68
int64
bytes_accessed
; // -1 if unknown
member in struct:xla::HumanReadableProfileBuilder::OpInfo
hlo_cost_analysis_test.cc
157
EXPECT_EQ(analysis.
bytes_accessed
(),
186
EXPECT_EQ(analysis.
bytes_accessed
(),
215
EXPECT_EQ(analysis.
bytes_accessed
(),
238
EXPECT_EQ(analysis.
bytes_accessed
(),
256
EXPECT_EQ(analysis.
bytes_accessed
(), 80);
284
EXPECT_EQ(analysis.
bytes_accessed
(),
313
EXPECT_EQ(analysis.
bytes_accessed
(),
489
constexpr int64
bytes_accessed
= sizeof(float) * 4 * 2 * 2;
local
490
static_assert(
bytes_accessed
== 64, "");
491
EXPECT_EQ(fusion_analysis.
bytes_accessed
(), bytes_accessed)
[
all
...]
hlo_cost_analysis.cc
52
float
bytes_accessed
= GetShapeSize(hlo->shape());
local
54
bytes_accessed
+= GetShapeSize(operand->shape());
56
current_properties_[kBytesAccessedKey] =
bytes_accessed
;
551
float
bytes_accessed
= GetShapeSize(hlo->operand(0)->shape()) / 2.0f;
local
552
bytes_accessed
+= GetShapeSize(hlo->operand(1)->shape());
553
current_properties_[kBytesAccessedKey] =
bytes_accessed
;
565
float
bytes_accessed
= GetShapeSize(hlo->operand(0)->shape()) / 2.0f;
local
566
current_properties_[kBytesAccessedKey] =
bytes_accessed
;
753
float HloCostAnalysis::
bytes_accessed
() const {
function in class:xla::HloCostAnalysis
769
int64 HloCostAnalysis::
bytes_accessed
(const HloInstruction& hlo) const
function in class:xla::HloCostAnalysis
[
all
...]
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
parallel_task_assignment.cc
67
const int64
bytes_accessed
=
variable
68
std::max(int64{1}, cost_analysis_->
bytes_accessed
(*instruction));
71
static_cast<float>(
bytes_accessed
);
92
10 * cost_analysis_->
bytes_accessed
(*instruction);
Completed in 261 milliseconds