Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for exp5 (0.14 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    		n := n.(*ir.UnaryExpr)
    		a := s.expr(n.X)
    		return s.newValue1(ssa.OpIData, n.Type(), a)
    
    	case ir.OMAKEFACE:
    		n := n.(*ir.BinaryExpr)
    		tab := s.expr(n.X)
    		data := s.expr(n.Y)
    		return s.newValue2(ssa.OpIMake, n.Type(), tab, data)
    
    	case ir.OSLICEHEADER:
    		n := n.(*ir.SliceHeaderExpr)
    		p := s.expr(n.Ptr)
    		l := s.expr(n.Len)
    		c := s.expr(n.Cap)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. prow/config/calico.yaml

                      ... }  ->  true if the value of label X is not one of \"a\", \"b\",
                      \"c\" \thas(label_name)  -> True if that label is present \t! expr
                      -> negation of expr \texpr && expr  -> Short-circuit and \texpr
                      || expr  -> Short-circuit or \t( expr ) -> parens for grouping \tall()
                      or the empty selector -> matches all endpoints. \n Label names are
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      %1 = "tfl.sub"(%arg0, %0) {fused_activation_function = "NONE"} : (tensor<8x128xf32>, tensor<8x1xf32>) -> tensor<8x128xf32>
      %2 = "tfl.exp"(%1) : (tensor<8x128xf32>) -> tensor<8x128xf32>
      %3 = "tfl.sum"(%2, %cst) {keep_dims = true} : (tensor<8x128xf32>, tensor<1xi32>) -> tensor<8x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  4. pkg/registry/core/service/storage/storage_test.go

    				if !ok {
    					return
    				}
    				svc = &list.Items[0]
    			}
    
    			exp, ok := tc.expect.(*api.Service)
    			if !ok {
    				list, ok := tc.expect.(*api.ServiceList)
    				if !ok {
    					return
    				}
    				exp = &list.Items[0]
    			}
    
    			// Verify fields we know are affected
    			if want, got := exp.Spec.ClusterIP, svc.Spec.ClusterIP; want != got {
    				t.Errorf("clusterIP: expected %v, got %v", want, got)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      %0 = "tf.Cos"(%arg0) : (tensor<?xf32>) -> tensor<?xf32>
      func.return %0 : tensor<?xf32>
    }
    
    // -----
    
    // CHECK-LABEL: @exp
    func.func @exp(%arg0: tensor<2xf32>) -> tensor<2xf32> {
      // CHECK:  mhlo.exponential %arg0 : tensor<2xf32>
      %0 = "tf.Exp"(%arg0) : (tensor<2xf32>) -> tensor<2xf32>
      func.return %0 : tensor<2xf32>
    }
    
    // -----
    
    // CHECK-LABEL: @expm1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  6. doc/go_spec.html

    One of the integer part or the fractional part may be elided; one of the decimal point
    or the exponent part may be elided.
    An exponent value exp scales the mantissa (integer and fractional part) by 10<sup>exp</sup>.
    </p>
    
    <p>
    A hexadecimal floating-point literal consists of a <code>0x</code> or <code>0X</code>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.28.md

    - go.opencensus.io: v0.23.0 → v0.24.0
    - go.starlark.net: 8dd3e2e → a134d8f
    - go.uber.org/atomic: v1.7.0 → v1.10.0
    - go.uber.org/multierr: v1.6.0 → v1.11.0
    - golang.org/x/crypto: v0.1.0 → v0.11.0
    - golang.org/x/exp: 6cc2880 → a9213ee
    - golang.org/x/mod: v0.9.0 → v0.10.0
    - golang.org/x/net: v0.8.0 → v0.13.0
    - golang.org/x/oauth2: ee48083 → v0.8.0
    - golang.org/x/sync: v0.1.0 → v0.2.0
    - golang.org/x/sys: v0.6.0 → v0.10.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
Back to top