Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 542 for input1 (0.2 sec)

  1. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

                                                    ctx.device(), inputs,
                                                    variable_indices, variables));
      TF_RETURN_IF_ERROR(LockVariables(absl::MakeSpan(*variables)));
      TF_ASSIGN_OR_RETURN(*args,
                          XlaComputationLaunchContext::BuildXlaCompilerArguments(
                              constant_indices, inputs, *variables,
                              static_cast<Device*>(ctx.device())));
    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/cc/framework/scope.cc

                                 const Scope& scope, Output* output) {
      TF_RETURN_IF_ERROR(scope.status());
      const auto unique_name = scope.GetUniqueNameForOp(op_name);
      auto builder = ::tensorflow::NodeBuilder(unique_name, op_name);
      for (const auto& input : inputs) {
        TF_RETURN_IF_ERROR(scope.status());
        builder = builder.Input(input.node());
      }
      ::tensorflow::Node* ret;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      opcode_index:uint;
    
      // Optional input are indicated by -1.
      inputs:[int];
      outputs:[int];
    
      builtin_options:BuiltinOptions;
      custom_options:[ubyte];
      custom_options_format:CustomOptionsFormat;
    
      // A list of booleans indicating the input tensors which are being mutated by
      // this operator.(e.g. used by RNN and LSTM).
      // For example, if the "inputs" array refers to 5 tensors and the second and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

     * As these phases gradually become more interleaved, we might generalize these states so that the value is "changing" only until its inputs are known and all such inputs have a "fixed" value.
     * A provider whose inputs are only configuration time inputs would become fixed once the configuration of those inputs has completed. A provider whose inputs include a task output would become
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

        }
    
        def "out-of-date when any input property removed"() {
            given:
            execute(builder.withProperty("prop2", "value").build())
    
            expect:
            outOfDate(unitOfWork, "Input property 'prop2' has been removed for ${unitOfWork.displayName}")
        }
    
        def "up to date when no inputs"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/get_compiler_ir.cc

              th->CopyToDevice(*context, /*d=*/nullptr, &inputs_storage.back()));
          inputs[i + offset] = &inputs_storage.back();
        } else {
          inputs[i + offset] = t;
        }
      }
    
      if (dev != nullptr) {
        TF_RETURN_IF_ERROR(GetVariableInfosFromInputs(dev->resource_manager(), dev,
                                                      inputs, resource_arg_indices,
                                                      &variable_infos));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                    'typeName' : 'MyTask',
                    'propertyName' : 'setPropertyInput',
                ]
            }
        }
    
        def "detects problems with file inputs"() {
            file("input.txt").text = "input"
            file("input").createDir()
    
            javaTaskSource << """
                import org.gradle.api.*;
                import org.gradle.api.file.*;
                import org.gradle.api.tasks.*;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-quant.mlir

      // CHECK-DAG: %[[INPUT:.*]] = mhlo.bitcast_convert %arg0 : (tensor<3x2xi32>) -> tensor<3x2x!quant.uniform<i32:f32:1, {2.000000e+00:4,2.000000e+00:4}>>
      // CHECK-DAG: %[[MAX:.*]] = mhlo.bitcast_convert %arg1 : (tensor<3x2xi32>) -> tensor<3x2x!quant.uniform<i32:f32:1, {2.000000e+00:4,2.000000e+00:4}>>
      // CHECK-DAG: %[[INPUT_1:.*]] = chlo.broadcast_maximum
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 01:25:29 UTC 2024
    - 37.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/AggregateFuture.java

    /**
     * A future whose value is derived from a collection of input futures.
     *
     * @param <InputT> the type of the individual inputs
     * @param <OutputT> the type of the output (i.e. this) future
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    abstract class AggregateFuture<InputT extends @Nullable Object, OutputT extends @Nullable Object>
        extends AggregateFutureState<OutputT> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

                                    PatternRewriter& rewriter) const override {
        auto input = op.getOptional();
        auto elementType = getElementTypeOrSelf(input.getType());
        if (isa<TF::VariantType>(elementType)) {
          // We can only replace OptionalGetValue after the inputs have been
          // replaced.
          return failure();
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top