OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:max_images_tmp
(Results
1 - 2
of
2
) sorted by null
/external/tensorflow/tensorflow/core/kernels/
summary_image_op.cc
34
int64
max_images_tmp
;
local
35
OP_REQUIRES_OK(context, context->GetAttr("max_images", &
max_images_tmp
));
36
OP_REQUIRES(context,
max_images_tmp
< (1LL << 31),
38
max_images_ = static_cast<int32>(
max_images_tmp
);
summary_kernels.cc
220
int64
max_images_tmp
;
local
221
OP_REQUIRES_OK(ctx, ctx->GetAttr("max_images", &
max_images_tmp
));
222
OP_REQUIRES(ctx,
max_images_tmp
< (1LL << 31),
224
max_images_ = static_cast<int32>(
max_images_tmp
);
Completed in 126 milliseconds