Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for inputs_0 (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    LogicalResult XlaVariadicSortOp::verify() {
      XlaVariadicSortOp op = *this;
      const auto &inputs_ty = op.getInputs().getType();
      int n_inputs = inputs_ty.size();
      auto input_ty_0 = inputs_ty[0].cast<ShapedType>();
      if (input_ty_0.hasStaticShape()) {
        for (int i = 1; i < n_inputs; ++i) {
          auto input_ty_i = inputs_ty[i].cast<ShapedType>();
          if (input_ty_i.hasStaticShape() &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        # Create and save a simple model that involves a hash table.
        inputs, outputs = self._create_and_save_vocab_table_lookup_qat_model_tf1(
            self._input_saved_model_path, tags, signature_def_key
        )
    
        # Make sure that the desired input key and output key is present.
        self.assertIn('input_vocabs', inputs.keys())
        self.assertIn('lookup', outputs.keys())
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      if (max && !IsOfRankedFloatTensorType(max, 1))
        return op.emitOpError("requires max to be a 1d float tensor");
    
      Value inputs = op.getInputs();
      if (!HasRankAtLeast(inputs, 1))
        return op.emitError("requires inputs to be at least 1d float tensor");
    
      int64_t num_bits = op.getNumBits();
      if (num_bits < 2 || num_bits > 16) {
        return op.emitOpError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_control_test.go

    func TestStatefulSetAvailability(t *testing.T) {
    	tests := []struct {
    		name                   string
    		inputSTS               *apps.StatefulSet
    		expectedActiveReplicas int32
    		readyDuration          time.Duration
    	}{
    		{
    			name:                   "replicas running for required time, when minReadySeconds is enabled",
    			inputSTS:               setMinReadySeconds(newStatefulSet(1), int32(3600)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    	// To avoid problems on case-insensitive files, we reject any package
    	// where two different input files have equal names under a case-insensitive
    	// comparison.
    	inputs := p.AllFiles()
    	f1, f2 := str.FoldDup(inputs)
    	if f1 != "" {
    		setError(fmt.Errorf("case-insensitive file name collision: %q and %q", f1, f2))
    		return
    	}
    
    	// If first letter of input file is ASCII, it must be alphanumeric.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //
    // The -fuzzcache flag causes clean to remove files stored in the Go build
    // cache for fuzz testing. The fuzzing engine caches files that expand
    // code coverage, so removing them may make fuzzing less effective until
    // new inputs are found that provide the same coverage. These files are
    // distinct from those stored in testdata directory; clean does not remove
    // those files.
    //
    // For more about build flags, see 'go help build'.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. src/reflect/value.go

    			stackArgs = unsafe_New(frametype)
    		}
    	}
    	frameSize := frametype.Size()
    
    	if debugReflectCall {
    		println("reflect.call", stringFor(&t.Type))
    		abid.dump()
    	}
    
    	// Copy inputs into args.
    
    	// Handle receiver.
    	inStart := 0
    	if rcvrtype != nil {
    		// Guaranteed to only be one word in size,
    		// so it will only take up exactly 1 abiStep (either
    		// in a register or on the stack).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top