HomeSort by relevance Sort by last modified time
    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 217 int64 max_images_tmp; local
218 OP_REQUIRES_OK(ctx, ctx->GetAttr("max_images", &max_images_tmp));
219 OP_REQUIRES(ctx, max_images_tmp < (1LL << 31),
221 max_images_ = static_cast<int32>(max_images_tmp);

Completed in 893 milliseconds