Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,148 for Constant2 (0.35 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/preprocess_op.td

    include "tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td"
    
    // Converts tf.Const to arith.constant for statically shaped, non-opaque constants.
    // Needed for QuantizationDriver to recognize constants.
    def ConvertTfConstToArithConst : Pat<
      (TF_ConstOp:$res DenseElementsAttr:$value),
      (Arith_ConstantOp $value),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    literal.
    </p>
    
    
    <h2 id="Constants">Constants</h2>
    
    <p>There are <i>boolean constants</i>,
    <i>rune constants</i>,
    <i>integer constants</i>,
    <i>floating-point constants</i>, <i>complex constants</i>,
    and <i>string constants</i>. Rune, integer, floating-point,
    and complex constants are
    collectively called <i>numeric constants</i>.
    </p>
    
    <p>
    A constant value is represented by a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ir/const.go

    	floatOne   = constant.ToFloat(intOne)
    	complexOne = constant.ToComplex(intOne)
    )
    
    const (
    	// Maximum size in bits for big.Ints before signaling
    	// overflow and also mantissa precision for big.Floats.
    	ConstPrec = 512
    )
    
    func BigFloat(v constant.Value) *big.Float {
    	f := new(big.Float)
    	f.SetPrec(ConstPrec)
    	switch u := constant.Val(v).(type) {
    	case int64:
    		f.SetInt64(u)
    	case *big.Int:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 18:53:26 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. src/cmd/doc/testdata/pkg.go

    // license that can be found in the LICENSE file.
    
    // Package comment.
    package pkg
    
    import "io"
    
    // Constants
    
    // Comment about exported constant.
    const ExportedConstant = 1
    
    // Comment about internal constant.
    const internalConstant = 2
    
    // Comment about block of constants.
    const (
    	// Comment before ConstOne.
    	ConstOne   = 1
    	ConstTwo   = 2 // Comment on line with ConstTwo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    			_, _ = fmt.Fprintln(&b, "COMMIT")
    		}
    	}
    	return b.String()
    }
    
    func (rb *IptablesRuleBuilder) buildRestore(rules []*Rule) string {
    	tableRulesMap := map[string][]string{
    		constants.FILTER: {},
    		constants.NAT:    {},
    		constants.MANGLE: {},
    	}
    
    	chainTableLookupMap := sets.New[string]()
    	for _, r := range rules {
    		chainTable := fmt.Sprintf("%s:%s", r.chain, r.table)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

      // larger than this threshold will not be unfrozen and will remain as
      // constants.
      Option<int64_t> size_threshold_in_bytes_;
    };
    
    // Adds the symbol to the "initializers" attribute of the session_initializer
    // op.
    void AddSymbolToInitializersAttr(SessionInitializerOp session_init_op,
                                     FlatSymbolRefAttr symbol) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskConstantChangesIncrementalJavaCompilationIntegrationTest.groovy

        }
    
        def "changing upstream constant does not cause recompilation if not public dependent of constant for literal"() {
            source api: ["class A { final static int x = 1; }"],
                impl: ["class X { final static int x = A.x; }",
                       "class Y { final static int x = 1; int method() { return X.x; } }",
                       // Z is not recompiled, since Y has constant of X in method body
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  8. doc/go_spec.html

    literal.
    </p>
    
    
    <h2 id="Constants">Constants</h2>
    
    <p>There are <i>boolean constants</i>,
    <i>rune constants</i>,
    <i>integer constants</i>,
    <i>floating-point constants</i>, <i>complex constants</i>,
    and <i>string constants</i>. Rune, integer, floating-point,
    and complex constants are
    collectively called <i>numeric constants</i>.
    </p>
    
    <p>
    A constant value is represented by a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  9. src/cmd/vendor/golang.org/x/sys/unix/README.md

    these constants are written to `zerrors_${GOOS}_${GOARCH}.go` via a C program,
    `_errors.c`, which prints out all the constants.
    
    To add a constant, add the header that includes it to the appropriate variable.
    Then, edit the regex (if necessary) to match the desired constant. Avoid making
    the regex too broad to avoid matching unintended constants.
    
    ### internal/mkmerge
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 14:32:58 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/kernels/xla_ops.h

    namespace tensorflow {
    
    
    // XlaLocalLaunchBase is almost the same as XlaLocalLaunchOp.
    // The only difference is that it does not require arguments to follow
    // the "constants, then regular args, then resources" order.
    // It takes vectors of constant and resource arguments explicitly.
    // It does not have corresponding OpDef because it is never present
    // in the GraphDef.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 23:44:26 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top