Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 72 for Boundaries (0.23 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    				last.flat += fn.flat
    				last.cum += fn.cum
    				funcs[len(funcs)-1] = last
    				continue
    			}
    		}
    
    		// Add new function.
    		funcs = append(funcs, fn)
    	}
    
    	// Expand function boundaries to show neighborhood.
    	const expand = 5
    	for i, f := range funcs {
    		if i == 0 {
    			// Extend backwards, stopping at line number 1, but do not disturb 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  2. src/strings/strings.go

    	return unicode.IsSpace(r)
    }
    
    // Title returns a copy of the string s with all Unicode letters that begin words
    // mapped to their Unicode title case.
    //
    // Deprecated: The rule Title uses for word boundaries does not handle Unicode
    // punctuation properly. Use golang.org/x/text/cases instead.
    func Title(s string) string {
    	// Use a closure here to remember state.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      BucketizeOptionsBuilder builder_(_fbb);
      builder_.add_boundaries(boundaries);
      return builder_.Finish();
    }
    
    inline ::flatbuffers::Offset<BucketizeOptions> CreateBucketizeOptionsDirect(
        ::flatbuffers::FlatBufferBuilder &_fbb,
        const std::vector<float> *boundaries = nullptr) {
      auto boundaries__ = boundaries ? _fbb.CreateVector<float>(*boundaries) : 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      Status GetFunctionNameAttr(Node const* node, string* attr) const;
    
      // Copies edges local to a subgraph. Adds _Arg and _Retval nodes to
      // subgraphs for data edges that cross subgraph boundaries.
      Status CopySubgraphEdges(
          const absl::flat_hash_map<const Node*, Node*>& node_images,
          std::vector<std::pair<const Node*, Node*>>* src_arg_pairs);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "Bucketizes 'input' based on 'boundaries'.";
    
      let description = [{
    Example:
    
    If the inputs are `boundaries = [0, 10, 100]` and
    `input = [[-5, 10000][150, 10][5, 100]]`,
    then the output will be `output = [[0, 3][3, 2][1, 3]]`.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[F32, F64, I32, I64]>:$input,
        F32ArrayAttr:$boundaries
      );
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/obj9.go

    }
    
    // Encode a doubleword rotate mask into mb (mask begin) and
    // me (mask end, inclusive). Note, POWER ISA labels bits in
    // big endian order.
    func encodePPC64RLDCMask(mask int64) (mb, me int) {
    	// Determine boundaries and then decode them
    	mb = bits.LeadingZeros64(uint64(mask))
    	me = 64 - bits.TrailingZeros64(uint64(mask))
    	mbn := bits.LeadingZeros64(^uint64(mask))
    	men := 64 - bits.TrailingZeros64(^uint64(mask))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    	sc.setNonEmpty()
    }
    
    type piController struct {
    	kp float64 // Proportional constant.
    	ti float64 // Integral time constant.
    	tt float64 // Reset time.
    
    	min, max float64 // Output boundaries.
    
    	// PI controller state.
    
    	errIntegral float64 // Integral of the error from t=0 to now.
    
    	// Error flags.
    	errOverflow   bool // Set if errIntegral ever overflowed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. src/time/time.go

    //
    // The calendar runs on an exact 400 year cycle: a 400-year calendar
    // printed for 1970-2369 will apply as well to 2370-2769. Even the days
    // of the week match up. It simplifies the computations to choose the
    // cycle boundaries so that the exceptional years are always delayed as
    // long as possible. That means choosing a year equal to 1 mod 400, so
    // that the first leap year is the 4th year, the first missed leap year
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/elf.go

    	pph.Paddr = uint64(*FlagTextAddr) - uint64(HEADR) + pph.Off
    	pph.Align = uint64(*FlagRound)
    
    	/*
    	 * PHDR must be in a loaded segment. Adjust the text
    	 * segment boundaries downwards to include it.
    	 */
    	{
    		o := int64(Segtext.Vaddr - pph.Vaddr)
    		Segtext.Vaddr -= uint64(o)
    		Segtext.Length += uint64(o)
    		o = int64(Segtext.Fileoff - pph.Off)
    		Segtext.Fileoff -= uint64(o)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    }
    
    func.func @Bucketize(%arg0: tensor<3x2xf32>) -> tensor<3x2xi32> {
      %0 = "tf.Bucketize"(%arg0) {boundaries = [1.0 : f32, 10.0 : f32, 100.0 : f32]} : (tensor<3x2xf32>) -> tensor<3x2xi32>
      func.return %0: tensor<3x2xi32>
    
    // CHECK-LABEL: Bucketize
    // CHECK:  "tfl.bucketize"(%arg0) <{boundaries = [1.000000e+00 : f32, 1.000000e+01 : f32, 1.000000e+02 : f32]}> : (tensor<3x2xf32>) -> tensor<3x2xi32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
Back to top