Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for tfsplits (0.3 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        SameOperandsAndResultsScale]> {
      let summary = "Splits a tensor into `num_split` tensors along one dimension.";
    
      let description = [{
        Splits the `value` tensor along `split_dim` into a number of sub-tensors
        with same shape as the original one, except for `split_dim`. The grouping
        of the resultant sub-tensors is decided by `size-splits`. Same as tf.SplitV.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Computes and applies all necessary control dependencies based on side effect analysis.";
      let description = [{
        This pass is intended to run after the split_into_island_per_op
        pass. That pass splits up multi-op islands into multiple individual islands
        wrapping a single op without applying any control deps between the new
        islands. So, this pass is needed in order to make preservation of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	// clang says "unknown argument".
    	// tcc says "unsupported"
    	// AIX says "not recognized"
    	// Older versions of GCC say "unrecognised debug output level".
    	// For -fsplit-stack GCC says "'-fsplit-stack' is not supported".
    	supported := !bytes.Contains(out, []byte("unrecognized")) &&
    		!bytes.Contains(out, []byte("unknown")) &&
    		!bytes.Contains(out, []byte("unrecognised")) &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        rewriter.replaceOpWithNewOp<TFL::QConstOp>(
            op, /*qtype=*/TypeAttr::get(op.getOutput().getType()),
            /*value=*/op.getValue());
      }
    };
    
    // Splits hybrid quantized `stablehlo.dot_general` into `tfl.dequantize` and
    // float `stablehlo.dot_general` op. Legalization of float
    // `stablehlo.dot_general` op relies on existing passes for conversion of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    		return
    	}
    
    	// if already replicated, return true if a new reset was requested.
    	splits := strings.SplitN(rs, ";", 2)
    	if len(splits) != 2 {
    		return
    	}
    	newReset := splits[1] != resetID
    	if !newReset && tgtStatus == replication.Completed {
    		// already replicated and no reset requested
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

    			},
    			Count: 1,
    			Check: check.Status(http.StatusTeapot),
    		},
    		workloadAgnostic: true,
    	})
    
    	splits := [][]int{
    		{50, 25, 25},
    		{80, 10, 10},
    	}
    	if skipVM {
    		splits = [][]int{
    			{50, 50},
    			{80, 20},
    		}
    	}
    	for _, split := range splits {
    		split := split
    		t.RunTraffic(TrafficTestCase{
    			name:           fmt.Sprintf("shifting-%d", split[0]),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

    //  tile_assignment_dimensions: 1
    //  tile_assignment_devices: 1
    // Serialized string:
    //  "\08\01\1A\01\01\22\01\01"
    //
    // -----
    
    
    // Tests tile sharding of inputs with number of splits that does not evenly divide
    // the input results in an error.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      DenseIntElementsAttr split_sizes_attr;
      if (!matchPattern(op.getSizeSplits(), m_Constant(&split_sizes_attr)))
        return success();
    
      int64_t total_dim_size = 0;  // Total dimension size assigned to splits
      std::optional<int64_t> dynamic_dim_index;
    
      SmallVector<int64_t, 4> split_sizes;
      split_sizes.reserve(
          split_sizes_attr.getType().cast<ShapedType>().getNumElements());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      const int64_t base_inner_size =
          std::accumulate(base_inner_dims.begin(), base_inner_dims.end(), 1,
                          std::multiplies<int64_t>());
    
      // Splits each input operand into outer_size pieces and combines them in
      // round-robin ordering.
      std::vector<Attribute> out_attrs(output_type.getNumElements());
      int64_t out = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  10. src/net/http/server.go

    	writeStatusLine(w.conn.bufw, w.req.ProtoAtLeast(1, 1), code, w.statusBuf[:])
    	cw.header.WriteSubset(w.conn.bufw, excludeHeader)
    	setHeader.Write(w.conn.bufw)
    	w.conn.bufw.Write(crlf)
    }
    
    // foreachHeaderElement splits v according to the "#rule" construction
    // in RFC 7230 section 7 and calls fn for each non-empty element.
    func foreachHeaderElement(v string, fn func(string)) {
    	v = textproto.TrimString(v)
    	if v == "" {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top