Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for flipper (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions.mlir

    // omitted from the graph as the lifted function's out_scale and out_zp are
    // already calculated based on the clipped distribution.
    // Note that the resulting scale and zero point should be calculated based on
    // clipped range [0, r_max].
    
    module attributes {tf_saved_model.semantics} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary = "Clips tensor values to a specified min and max.";
    
      let description = [{
    Given a tensor `x`, this operation returns a tensor of the same type and
    shape as `x` with its values clipped to `clip_value_min` and `clip_value_max`.
    Any values less than `clip_value_min` are set to `clip_value_min`. Any values
    greater than `clip_value_max` are set to `clip_value_max`.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  3. .bazelrc

    build --experimental_link_static_libraries_once=false
    
    # Prevent regressions on those two incompatible changes
    # TODO: remove those flags when they are flipped in the default Bazel version TF uses.
    build --incompatible_enforce_config_setting_visibility
    # TODO: also enable this flag after fixing the visibility violations
    # build --incompatible_config_setting_private_default_visibility
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				'li.jstree-closed > ul { display:none; } ';
    		// Correct IE 6 (does not support the > CSS selector)
    		if(/msie/.test(u) && parseInt(v, 10) == 6) {
    			is_ie6 = true;
    
    			// fix image flicker and lack of caching
    			try {
    				document.execCommand("BackgroundImageCache", false, true);
    			} catch (err) { }
    
    			css_string += '' +
    				'.jstree li { height:18px; margin-left:0; margin-right:0; } ' +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  5. src/net/dnsclient_unix_test.go

    }
    
    func (f *fakeDNSPacketConn) SetDeadline(t time.Time) error {
    	return f.fakeDNSConn.SetDeadline(t)
    }
    
    func (f *fakeDNSPacketConn) Close() error {
    	return f.fakeDNSConn.Close()
    }
    
    // UDP round-tripper algorithm should ignore invalid DNS responses (issue 13281).
    func TestIgnoreDNSForgeries(t *testing.T) {
    	c, s := Pipe()
    	go func() {
    		b := make([]byte, maxDNSPacketSize)
    		n, err := s.Read(b)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    type MainModuleSet struct {
    	// versions are the module.Version values of each of the main modules.
    	// For each of them, the Path fields are ordinary module paths and the Version
    	// fields are empty strings.
    	// versions is clipped (len=cap).
    	versions []module.Version
    
    	// modRoot maps each module in versions to its absolute filesystem path.
    	modRoot map[module.Version]string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top