Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for minutou (0.36 sec)

  1. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.cc

            } else {
              block->state = FetchState::ERROR;
            }
            block->cond_var.SignalAll();
            return;
          case FetchState::FETCHING:
            block->cond_var.WaitWithTimeout(&block->mu, absl::Minutes(1));
            if (block->state == FetchState::FINISHED) {
              return TF_SetStatus(status, TF_OK, "");
            }
            // Re-loop in case of errors.
            break;
          case FetchState::FINISHED:
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Jul 16 01:39:09 GMT 2020
    - 11.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/gradients/math_grad.cc

        name = "Neg_Div_Grad_Y";
        TF_RETURN_IF_ERROR(Neg(ctx, upstream_grad, &temp_output,
                               name.c_str()));  // -U
        AbstractTensorHandlePtr MinusU(temp_output);
    
        name = "Mul_Div_Grad_Y";
        TF_RETURN_IF_ERROR(Mul(ctx, MinusU.get(), Z, &temp_output,
                               name.c_str()));  // -U*Z
        AbstractTensorHandlePtr UZ(temp_output);
    
        name = "Div_Grad_Y";
    C++
    - Registered: Tue Mar 26 12:39:09 GMT 2024
    - Last Modified: Wed Feb 28 13:53:47 GMT 2024
    - 15.2K bytes
    - Viewed (0)
Back to top