Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for bt (0.06 sec)

  1. tensorflow/compiler/mlir/lite/transforms/prepare_patterns.td

    // transposed.
    def ConvertMatmulWithTranspose : Pat<(TF_MatMulOp $a, $b, ConstBoolAttrTrue, $bt, $grad_a, $grad_b),
              (TF_MatMulOp (TF_TransposeOp $a, (TF_SubOp (TF_RangeOp
                 /*start=*/(TF_RankOp $a),
                 /*limit=*/(TF_ConstOp TFi32<0>),
                 /*delta=*/(TF_ConstOp TFi32<-1>)), (TF_ConstOp TFi32<1>))), $b,
               ConstBoolAttrFalse, $bt, $grad_a, $grad_b)>;
    
    // Pattern to fuse redundant tanspose op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. cmd/batch-handlers_gen.go

    				return
    			}
    		case "dmf":
    			z.DeleteMarkersFailed, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "DeleteMarkersFailed")
    				return
    			}
    		case "bt":
    			z.BytesTransferred, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "BytesTransferred")
    				return
    			}
    		case "bf":
    			z.BytesFailed, err = dc.ReadInt64()
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 20:27:52 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. test/codegen/bits.go

    	}
    	// amd64:"BTL\t[$]7"
    	if (a[6]>>5)&4 == 0 {
    		return 1
    	}
    	return 0
    }
    
    func bitcheck64_var(a, b uint64) (n int) {
    	// amd64:"BTQ"
    	if a&(1<<(b&63)) != 0 {
    		return 1
    	}
    	// amd64:"BTQ",-"BT.\t[$]0"
    	if (b>>(a&63))&1 != 0 {
    		return 1
    	}
    	return 0
    }
    
    func bitcheck64_mask(a uint64) (n int) {
    	// amd64:"BTQ\t[$]63"
    	if a&0x8000000000000000 != 0 {
    		return 1
    	}
    	// amd64:"BTQ\t[$]59"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/types.go

    			return true // Probably a type check problem.
    		}
    		panic("unreachable")
    	}
    
    	return false
    }
    
    func isConvertibleToString(typ types.Type) bool {
    	if bt, ok := aliases.Unalias(typ).(*types.Basic); ok && bt.Kind() == types.UntypedNil {
    		// We explicitly don't want untyped nil, which is
    		// convertible to both of the interfaces below, as it
    		// would just panic anyway.
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/config/initconfiguration.go

    	// because of possible security concerns, and more practically
    	// because we can't return errors in the API object defaulting
    	// process but here we can.
    	for i, bt := range *cfg {
    		if bt.Token != nil && len(bt.Token.String()) > 0 {
    			continue
    		}
    
    		tokenStr, err := bootstraputil.GenerateBootstrapToken()
    		if err != nil {
    			return errors.Wrap(err, "couldn't generate random token")
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

            it.destinationDir = file("$buildDir/reports/binary-compatibility")
            it.reportName = "report.html"
            it.description = """
                <p>See the <a href="https://bt-internal-docs.grdev.net/gbt/how-to/release/release-troubleshooting/#binary-compatibility-check-failed-">documentation</a> for more details.</p>
                <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. src/time/time_test.go

    		bsec.SetInt64(sec)
    		bnsec.SetInt64(nsec)
    		bt.Mul(bsec, b1e9)
    		bt.Add(bt, bnsec)
    
    		// Compute quotient and remainder mod d.
    		bd.SetInt64(int64(d))
    		bq.DivMod(bt, bd, br)
    
    		// To truncate, subtract remainder.
    		// br is < d, so it fits in an int64.
    		r := br.Int64()
    		t1 := t0.Add(-Duration(r))
    
    		// Check that time.Truncate works.
    		if trunc := t0.Truncate(d); trunc != t1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. architecture/networking/pilot.md

    ### Controllers overview
    
    Below provides a high level overview of controllers in Istiod. For more information about each controller, consulting the controllers Go docs is recommended.
    
    ```mermaid
    graph BT
        crd("CRD Watcher")
        subgraph Service Discovery
            ksd("Kubernetes Controller")
            sesd("Service Entry Controller")
            msd("Memory Controller")
            asd("Aggregate")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/init.go

    			return nil, err
    		}
    	}
    	return client, nil
    }
    
    // Tokens returns an array of token strings.
    func (d *initData) Tokens() []string {
    	tokens := []string{}
    	for _, bt := range d.cfg.BootstrapTokens {
    		tokens = append(tokens, bt.Token.String())
    	}
    	return tokens
    }
    
    // PatchesDir returns the folder where patches for components are stored
    func (d *initData) PatchesDir() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // Handle bit-testing in the form (a>>b)&1 != 0 by building the above rules
    // and further combining shifts.
    (BT(Q|L)const [c] (SHRQconst [d] x)) && (c+d)<64 => (BTQconst [c+d] x)
    (BT(Q|L)const [c] (SHLQconst [d] x)) && c>d      => (BT(Q|L)const [c-d] x)
    (BT(Q|L)const [0] s:(SHRQ x y)) => (BTQ y x)
    (BTLconst [c] (SHRLconst [d] x)) && (c+d)<32 => (BTLconst [c+d] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top