Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CtxFailureWithWarning (0.31 sec)

  1. tensorflow/c/kernels_experimental.cc

        if (LookupResource(cc_ctx, HandleFromInput(cc_ctx, input), maybe_resource)
                .ok()) {
          return (*maybe_resource)->mu();
        } else {
          cc_ctx->CtxFailureWithWarning(
              tensorflow::errors::Internal("Invalid variable reference."));
          return nullptr;
        }
      }
      return cc_ctx->input_ref_mutex(input);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:12:29 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/kernels/xla_ops.cc

      do {                                                      \
        ::tensorflow::Status _s(__VA_ARGS__);                   \
        if (!TF_PREDICT_TRUE(_s.ok())) {                        \
          (CTX)->CtxFailureWithWarning(__FILE__, __LINE__, _s); \
          return RET;                                           \
        }                                                       \
      } while (0)
    
    namespace tensorflow {
    
    namespace {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top