Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for 2xcomplex (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

        tf_device.return
      }) : () -> ()
      func.return
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

    // CHECK-SAME: (%[[Y:.*]]: tensor<*xcomplex<f32>>, %[[DY:.*]]: tensor<*xcomplex<f32>>)
    func.func @tanhgrad_complex(%y : tensor<*xcomplex<f32>>, %dy: tensor<*xcomplex<f32>>) -> tensor<*xcomplex<f32>> {
      // CHECK-NOT: tf.TanhGrad
      %0 = "tf.TanhGrad"(%y, %dy) : (tensor<*xcomplex<f32>>, tensor<*xcomplex<f32>>) -> tensor<*xcomplex<f32>>
    
      func.return %0 : tensor<*xcomplex<f32>>
    }
    
    // CHECK-LABEL: func @ZerosLike_unranked
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  3. src/fmt/fmt_test.go

    	{"%.1f", complex(posInf, posInf), "(+Inf+Infi)"},
    	{"% f", complex(posInf, posInf), "( Inf+Infi)"},
    	{"% f", complex(negInf, negInf), "(-Inf-Infi)"},
    	{"% f", complex(NaN, NaN), "( NaN+NaNi)"},
    	{"%8e", complex(posInf, posInf), "(    +Inf    +Infi)"},
    	{"%8x", complex(posInf, posInf), "(    +Inf    +Infi)"},
    	{"% 8E", complex(posInf, posInf), "(     Inf    +Infi)"},
    	{"% 8X", complex(posInf, posInf), "(     Inf    +Infi)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    typedef GoUintGOINTBITS GoUint;
    typedef size_t GoUintptr;
    typedef float GoFloat32;
    typedef double GoFloat64;
    #ifdef _MSC_VER
    #include <complex.h>
    typedef _Fcomplex GoComplex64;
    typedef _Dcomplex GoComplex128;
    #else
    typedef float _Complex GoComplex64;
    typedef double _Complex GoComplex128;
    #endif
    
    /*
      static assertion to make sure the file is being used on architecture
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/go/types/expr.go

    			check.error(&y, DivByZero, invalidOp+"division by zero")
    			x.mode = invalid
    			return
    		}
    
    		// check for divisor underflow in complex division (see go.dev/issue/20227)
    		if x.mode == constant_ && y.mode == constant_ && isComplex(x.typ) {
    			re, im := constant.Real(y.val), constant.Imag(y.val)
    			re2, im2 := constant.BinaryOp(re, token.MUL, re), constant.BinaryOp(im, token.MUL, im)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/expr.go

    			check.error(&y, DivByZero, invalidOp+"division by zero")
    			x.mode = invalid
    			return
    		}
    
    		// check for divisor underflow in complex division (see go.dev/issue/20227)
    		if x.mode == constant_ && y.mode == constant_ && isComplex(x.typ) {
    			re, im := constant.Real(y.val), constant.Imag(y.val)
    			re2, im2 := constant.BinaryOp(re, token.MUL, re), constant.BinaryOp(im, token.MUL, im)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  7. tensorflow/cc/gradients/math_grad.cc

      auto re = Real(scope, op.input(0));
      auto im = Imag(scope, op.input(0));
      auto z_inv = Reciprocal(scope, Complex(scope, im, re));
      auto zero = Cast(scope, Const(scope, 0), grad_inputs[0].type());
      auto grad = Complex(scope, grad_inputs[0], zero);
      auto dx = Neg(scope, Mul(scope, grad, z_inv));
      grad_outputs->push_back(dx);
      return scope.status();
    }
    REGISTER_GRADIENT_OP("Angle", AngleGrad);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/type.go

    	constant.Int:     UntypedInt,
    	constant.Float:   UntypedFloat,
    	constant.Complex: UntypedComplex,
    }
    
    // DefaultKinds maps from a constant.Kind to its default Kind.
    var DefaultKinds = [...]Kind{
    	constant.Bool:    TBOOL,
    	constant.String:  TSTRING,
    	constant.Int:     TINT,
    	constant.Float:   TFLOAT64,
    	constant.Complex: TCOMPLEX128,
    }
    
    // A Type represents a Go type.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/parser.go

    		pos := p.pos()
    		p.next()
    		switch p.tok {
    		case _Name:
    			// We may have an array type or a type parameter list.
    			// In either case we expect an expression x (which may
    			// just be a name, or a more complex expression) which
    			// we can analyze further.
    			//
    			// A type parameter list may have a type bound starting
    			// with a "[" as in: P []E. In that case, simply parsing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    				matchesAll(noError(), transitionRule(true)),
    				matchesAll(invalidError("optional")),
    				matchesAll(invalidError("orValue")),
    			},
    		},
    		{
    			name: "optional complex transition rule type checking",
    			input: schema.Structural{
    				Generic: schema.Generic{
    					Type: "object",
    				},
    				Properties: map[string]schema.Structural{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top