Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for nudge (0.04 sec)

  1. tensorflow/compiler/mlir/quantization/common/ir/FakeQuantSupport.cc

    // a consequence some values, which are supposed in the original [rmin, rmax]
    // range will be outside the shifted range and be clamped during quantization.
    // TODO: we should nudge the scale as well, but that requires the
    // fake quant op used in the training to use the nudged scale as well.
    static void getNudgedScaleAndZeroPoint(int64_t qmin, int64_t qmax, double rmin,
                                           double rmax, double &scale,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:52:27 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. src/html/template/escape.go

    		// The contexts differ only by jsCtx.
    		c.jsCtx = jsCtxUnknown
    		return c
    	}
    
    	// Allow a nudged context to join with an unnudged one.
    	// This means that
    	//   <p title={{if .C}}{{.}}{{end}}
    	// ends in an unquoted value state even though the else branch
    	// ends in stateBeforeValue.
    	if c, d := nudge(a), nudge(b); !(c.eq(a) && d.eq(b)) {
    		if e := join(c, d, node, nodeName); e.state != stateError {
    			return e
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modcmd/vendor.go

    // Note that this list could be arbitrarily extended, and it is longer
    // in other tools (such as godep or dep). By using this limited set of
    // prefixes and also insisting on capitalized file names, we are trying
    // to nudge people toward more agreement on the naming
    // and also trying to avoid false positives.
    var metaPrefixes = []string{
    	"AUTHORS",
    	"CONTRIBUTORS",
    	"COPYLEFT",
    	"COPYING",
    	"COPYRIGHT",
    	"LEGAL",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        auto float_to_quant =
            rewriter.create<DivOp>(op.getLoc(), quant_diff, float_diff);
    
        // During quantization, the quantized min/max values may not line up
        // perfectly with the specified min/max. Nudge them into the right range.
        auto min_scaled =
            rewriter.create<DivOp>(op.getLoc(), float_min, quant_to_float);
        auto min_scaled_sub =
            rewriter.create<SubOp>(op.getLoc(), quant_min, min_scaled);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/internal/environment/GradleBuildEnvironmentIntegrationTest.groovy

                        assert buildEnvironment.isLongLivingProcess() == ${daemon}
                    }
                }
    
                task judge(type: DaemonJudge)
            """
            // Force to start a new JVM
            file("gradle.properties") << "org.gradle.jvmargs=-Xmx32m"
    
            expect:
            succeeds('judge', arg)
    
            where:
            daemon | arg
            true   | '--daemon'
            false  | '--no-daemon'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/security_context_windows.go

    // https://github.com/kubernetes/enhancements/tree/master/keps/sig-windows/116-windows-node-support#v1container
    // Windows does not have a root user, we cannot judge the root identity of the windows container by the way to judge the root(uid=0) of the linux container.
    // According to the discussion of sig-windows, at present, we assume that ContainerAdministrator is the windows container root user,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 22:23:13 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcher.java

    import static org.apache.commons.lang.StringUtils.substringAfterLast;
    
    /**
     * This class has two public APIs:
     *
     * <ul>
     * <li>Judge whether a test class might be included. For example, class 'org.gradle.Test' can't
     * be included by pattern 'org.apache.Test'
     * <li>Judge whether a test method is matched exactly.
     * </ul>
     *
     * In both cases, if the pattern starts with an upper-case letter, it will be used to match
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/ir/FakeQuantSupport.h

    //   - numBits < 8 is promoted to uint8 or int8
    //   - "narrow_range" narrows the lower bound of the storage type's range by
    //     1
    //   - the specified min/max values are "nudged" so that the result has a zero
    //     that can be exactly expressed
    //   - min=max=0 implies scale=0 and zero_point=0
    //
    // With the above assumptions applied, every conforming specified FakeQuant op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:52:27 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. pkg/volume/util/recyclerclient/recycler_client.go

    // whichever comes first. An attempt to delete a recycler pod is always
    // attempted before returning.
    //
    // In case there is a pod with the same namespace+name already running, this
    // function deletes it as it is not able to judge if it is an old recycler
    // or user has forged a fake recycler to block Kubernetes from recycling.//
    //
    //	 pod - the pod designed by a volume plugin to recycle the volume. pod.Name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  10. src/net/ip_test.go

    			}
    		} else if !testing.Short() {
    			// We can't control what the host resolver does; if it can resolve, say,
    			// 127.0.0.256 or fe80::1%911 or a host named 'abc', who are we to judge?
    			// Warn about these discrepancies but don't fail the test.
    			addrs, err := LookupHost(tt.in)
    			if err == nil {
    				t.Logf("warning: LookupHost(%q) = %v, want error", tt.in, addrs)
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top