Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 507 for input1 (0.13 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_custom_aggregation_ops.cc

              GetCompsiteFunctionName(op);
          if (!composite_function_name.has_value()) return failure();
    
          // Quantize inputs of quantizable composite functions.
          for (OpOperand &input : op->getOpOperands()) {
            Type element_type = getElementTypeOrSelf(input.get().getType());
            // Non-float cases won't be calibrated.
            if (!element_type.isF32()) {
              continue;
            }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/bean/DefaultPropertyWalkerTest.groovy

            visitProperties(task)
    
            then:
            _ * visitor.visitNested() >> true
            1 * visitor.visitInputProperty('bean', { it.call() == null }, false)
        }
    
        def "cycle in nested inputs is detected"() {
            def task = project.tasks.create("myTask", TaskWithNestedObject)
            def cycle = new Tree(value: "cycle", left: new Tree(value: "left"))
            cycle.right = cycle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_dynamic_range.cc

            return false;
          }
    
          // Special case handling for UnidirectionalSequenceLSTMOp, which doesn't
          // support partial quantization of its inputs.
          // Below, we check all of the input constants for the
          // UnidirectionalSequenceLSTMOp to see if any of them would not be
          // quantized due to not meeting the minimum_elements_for_weights
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Iterables.java

      @SafeVarargs
      public static <T extends @Nullable Object> Iterable<T> concat(Iterable<? extends T>... inputs) {
        return FluentIterable.concat(inputs);
      }
    
      /**
       * Combines multiple iterables into a single iterable. The returned iterable has an iterator that
       * traverses the elements of each iterable in {@code inputs}. The input iterators are not polled
       * until necessary.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/lift_hashtable_ops_as_args.mlir

    // CHECK: "tf.LookupTableSizeV2"(%arg1)
    // CHECK: "tf.LookupTableFindV2"(%arg1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 15 05:41:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

    LogicalResult BuildExecuteOp(
        const int core_id, llvm::ArrayRef<xla::OpSharding> output_sharding_config,
        llvm::ArrayRef<Value> inputs, tf_device::ClusterFuncOp cluster_func,
        OpBuilder* builder, TF::TPUExecuteOp* execute_op) {
      // TODO(b/139377366): Need to snapshot all resource variable inputs in
      // follow-up CLs.
      llvm::SmallVector<Type, 4> output_types;
      llvm::SmallVector<int, 4> cluster_to_core_index;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

      // fully qualified) or a short form with a single type (in which case the data
      // input and the outputs are all using this type).
      if (FunctionType type = mlir::dyn_cast<FunctionType>(types.front())) {
        // One data input, and any number of control inputs.
        if (type.getNumInputs() >= 1) {
          result.types.assign(type.getResults().begin(), type.getResults().end());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top