Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Unary (0.04 sec)

  1. doc/go_spec.html

    as they are accessible.
    </p>
    
    
    <h3 id="Primary_expressions">Primary expressions</h3>
    
    <p>
    Primary expressions are the operands for unary and binary expressions.
    </p>
    
    <pre class="ebnf">
    PrimaryExpr =
    	Operand |
    	Conversion |
    	MethodExpr |
    	PrimaryExpr Selector |
    	PrimaryExpr Index |
    	PrimaryExpr Slice |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      func.return %0 : tensor<4x?xf32>
    }
    
    //===----------------------------------------------------------------------===//
    // Unary op legalizations.
    //===----------------------------------------------------------------------===//
    
    // -----
    
    // CHECK-LABEL: @abs
    func.func @abs(%arg0: tensor<2xf32>) -> tensor<2xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    		return s.variable(n, types.Types[types.TBOOL])
    	case ir.OCOMPLEX:
    		n := n.(*ir.BinaryExpr)
    		r := s.expr(n.X)
    		i := s.expr(n.Y)
    		return s.newValue2(ssa.OpComplexMake, n.Type(), r, i)
    
    	// unary ops
    	case ir.ONEG:
    		n := n.(*ir.UnaryExpr)
    		a := s.expr(n.X)
    		if n.Type().IsComplex() {
    			tp := types.FloatForComplex(n.Type())
    			negop := s.ssaOp(n.Op(), tp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top