Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 551 for input1 (0.5 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/tests/pick-subgraphs.mlir

        %0 = func.call @func_0_CPU_QUANTIZED_INT8(%arg0, %arg1, %arg2) {tac.device = "CPU", tac.inference_type = "QUANTIZED_INT8", tac.interface_name = "func_0"} : (tensor<100x!quant.uniform<i8:f32, 2.000000e-01:-3>>,...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/modify_io_nodes.mlir

    }
    
    func.func @not_modified(%arg0: tensor<f32>, %arg1: tensor<1x224x224x3xf32>) -> (tensor<1x401408xf32>, tensor<1x224x224x3xf32>) attributes {tf.entry_function = {control_outputs = "", inputs = "input0,input1", outputs = "output0,output1"}} {
      %cst = arith.constant dense<[1, 401408]> : tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composite_functions_xla.mlir

      func.func @gather_with_float_output(%arg0: tensor<1x3x2x1024xf32> {tf_saved_model.index_path = ["input1"]}, %arg1: tensor<1xi32> {tf_saved_model.index_path = ["input2"]}) -> (tensor<1x3x1x1xf32> {tf_saved_model.index_path = ["output"]}) attributes {tf.entry_function = {control_outputs = "", inputs = "serving_default_input:0", outputs = "PartitionedCall:0"}, tf_saved_model.exported_names = ["serving_default"]} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 01:16:10 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. src/fmt/scan.go

    					// it must find at least one space to consume.
    					if !isSpace(inputc) && inputc != eof {
    						s.errorString("expected space in input to match format")
    					}
    					if inputc == '\n' {
    						s.errorString("newline in input does not match format")
    					}
    				}
    				for isSpace(inputc) && inputc != '\n' {
    					inputc = s.getRune()
    				}
    				if inputc != eof {
    					s.UnreadRune()
    				}
    			}
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  5. src/internal/fuzz/fuzz.go

    		if input.limit > remaining {
    			input.limit = remaining
    		}
    	}
    	return input, true
    }
    
    // sentInput updates internal counters after an input is sent to c.inputC.
    func (c *coordinator) sentInput(input fuzzInput) {
    	c.inputQueue.dequeue()
    	c.countWaiting += input.limit
    }
    
    // refillInputQueue refills the input queue from the corpus after it becomes
    // empty.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

    is used instead.
    
    Operands are replicated inputs and packed inputs.
    
    replicated_inputs: each group of `n` inputs corresponds to an input for a single
    individual replica and is mapped to a single region argument. Inside one group
    the operands are matching in order the `devices` attribute. Each replicated
    input must have compatible shapes and types.
    packed_inputs: each input corresponds to an input broadcasted across all
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

            }
            if (TF::TPUReplicatedInputOp input =
                    llvm::dyn_cast<TF::TPUReplicatedInputOp>(user)) {
              if (!input.getIsPacked()) {
                input.emitOpError() << "unexpected variable input, not packed";
                return LogicalResult::failure();
              }
    
              if (is_variable) {
                input.emitOpError() << "unexpected multiple TPUReplicatedInputOp "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_launch_util.cc

          arg.kind = XlaCompiler::Argument::kConstant;
          arg.type = input->dtype();
          arg.shape = input->shape();
          arg.constant_value = *input;
        } else {
          // Normal inputs.
          TF_RET_CHECK(input->dtype() != DT_RESOURCE);
          if (input->NumElements() > 0) {
            arg.kind = XlaCompiler::Argument::kParameter;
          } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

        rep.emitOpError(
            "TF2XLA TPU bridge input check: packed with number of inputs not 1.")
            << " num_replicas=" << num_replicas << " no. of inputs=" << arity;
        return false;
      } else if (!rep.getIsPacked() && arity != num_replicas) {
        rep.emitOpError(
            "TF2XLA TPU bridge input check: number of inputs inconsistent.")
            << " num_replicas=" << num_replicas << " no. of inputs=" << arity;
        return false;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    [[implementation_unknown]]
    == Cannot use an input with an unknown implementation
    
    This error indicates that a task uses a class as an input and Gradle cannot track the implementation of the class.
    Gradle considers the implementation of the following classes as inputs to a task:
    
    - the task class,
    - the classes of the actions of the task,
    - and the classes of nested inputs of the task, i.e. inputs annotated with `@Nested`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top