Home
last modified time | relevance | path

Searched refs:max_images_tmp (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/
Dsummary_image_op.cc34 int64 max_images_tmp; in SummaryImageOp() local
35 OP_REQUIRES_OK(context, context->GetAttr("max_images", &max_images_tmp)); in SummaryImageOp()
36 OP_REQUIRES(context, max_images_tmp < (1LL << 31), in SummaryImageOp()
38 max_images_ = static_cast<int32>(max_images_tmp); in SummaryImageOp()
Dsummary_kernels.cc220 int64 max_images_tmp; in WriteImageSummaryOp() local
221 OP_REQUIRES_OK(ctx, ctx->GetAttr("max_images", &max_images_tmp)); in WriteImageSummaryOp()
222 OP_REQUIRES(ctx, max_images_tmp < (1LL << 31), in WriteImageSummaryOp()
224 max_images_ = static_cast<int32>(max_images_tmp); in WriteImageSummaryOp()