Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for OP_REQUIRES_OK (0.27 sec)

  1. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

        // Lock variables for the whole duration of compile + execute.
        OP_REQUIRES_OK(ctx, GetAndLockVariablesAndBuildXlaCompilerArguments(
                                *ctx, inputs, *constant_indices_or,
                                variable_indices, &variables, &args));
    
        PjRtDeviceCompiler* pjrt_device_compiler;
        xla::PjRtLoadedExecutable* pjrt_executable;
        OP_REQUIRES_OK(ctx, Compile(args, ctx, &pjrt_device_compiler, &profiler,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. tensorflow/c/kernels_experimental.cc

      OP_REQUIRES_OK(context, s);
      allocFunc(ctx, tmp_var_tf.get(), dtype, dims, num_dims, tf_status);
      s = tensorflow::StatusFromTF_Status(tf_status);
      if (!s.ok()) tmp_var->Unref();
      OP_REQUIRES_OK(context, s);
    
      OP_REQUIRES_OK(context, TF_TensorToTensor(tmp_var_tf.get(), &tmp_var->val));
      OP_REQUIRES_OK(context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:12:29 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/kernels/xla_ops.cc

              GatherVariableInfo(ctx, *closure.compilation_result(),
                                 closure.num_constant_args());
          OP_REQUIRES_OK(ctx, updated_variables.status());
          OP_REQUIRES_OK(ctx, LockVariables(absl::MakeSpan(*updated_variables)));
          OP_REQUIRES_OK(
              ctx, RunPjRtExecutable(closure.num_constant_args(), inputs,
                                     variable_snapshots, *updated_variables,
    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