Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for fComplex128 (0.33 sec)

  1. tensorflow/compiler/mlir/lite/schema/schema.fbs

    enum TensorType : byte {
      FLOAT32 = 0,
      FLOAT16 = 1,
      INT32 = 2,
      UINT8 = 3,
      INT64 = 4,
      STRING = 5,
      BOOL = 6,
      INT16 = 7,
      COMPLEX64 = 8,
      INT8 = 9,
      FLOAT64 = 10,
      COMPLEX128 = 11,
      UINT64 = 12,
      // Experimental: Resource and variant types are experimental, that are subject
      // to change. Do not implement custom kernels using resource & variant types
      // now.
      RESOURCE = 13,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. src/go/types/expr.go

    Error:
    	x.mode = invalid
    	x.expr = e
    	return statement // avoid follow-up errors
    }
    
    // keyVal maps a complex, float, integer, string or boolean constant value
    // to the corresponding complex128, float64, int64, uint64, string, or bool
    // Go value if possible; otherwise it returns x.
    // A complex constant that can be represented as a float (such as 1.2 + 0i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/expr.go

    Error:
    	x.mode = invalid
    	x.expr = e
    	return statement // avoid follow-up errors
    }
    
    // keyVal maps a complex, float, integer, string or boolean constant value
    // to the corresponding complex128, float64, int64, uint64, string, or bool
    // Go value if possible; otherwise it returns x.
    // A complex constant that can be represented as a float (such as 1.2 + 0i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    (e.g. tf.complex64 or tf.complex128) as tf.cast() make imaginary part 0 while tf.bitcast()
    gives module error.
    For example,
    
    Example 1:
    
    >>> a = [1., 2., 3.]
    >>> equality_bitcast = tf.bitcast(a, tf.complex128)
    Traceback (most recent call last):
    ...
    InvalidArgumentError: Cannot bitcast from 1 to 18 [Op:Bitcast]
    >>> equality_cast = tf.cast(a, tf.complex128)
    >>> print(equality_cast)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. RELEASE.md

            `tf.float64` (for which there was no GPU implementation). In this
            current release, GPU support for other floating-point types
            (`tf.float16`, `tf.float64`, `tf.complex64`, and `tf.complex128`) has
            been added for this op. If you were relying on the determinism of the
            `tf.float64` CPU implementation being automatically selected because of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    	{ir.OBITNOT, types.TINT64}:  ssa.OpCom64,
    	{ir.OBITNOT, types.TUINT64}: ssa.OpCom64,
    
    	{ir.OIMAG, types.TCOMPLEX64}:  ssa.OpComplexImag,
    	{ir.OIMAG, types.TCOMPLEX128}: ssa.OpComplexImag,
    	{ir.OREAL, types.TCOMPLEX64}:  ssa.OpComplexReal,
    	{ir.OREAL, types.TCOMPLEX128}: ssa.OpComplexReal,
    
    	{ir.OMUL, types.TINT8}:    ssa.OpMul8,
    	{ir.OMUL, types.TUINT8}:   ssa.OpMul8,
    	{ir.OMUL, types.TINT16}:   ssa.OpMul16,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/schema_generated.h

        "FLOAT32",
        "FLOAT16",
        "INT32",
        "UINT8",
        "INT64",
        "STRING",
        "BOOL",
        "INT16",
        "COMPLEX64",
        "INT8",
        "FLOAT64",
        "COMPLEX128",
        "UINT64",
        "RESOURCE",
        "VARIANT",
        "UINT32",
        "UINT16",
        "INT4",
        "BFLOAT16",
        nullptr
      };
      return names;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top