Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for Float32 (0.08 sec)

  1. src/cmd/asm/internal/asm/asm.go

    		default:
    			p.errorf("bad int size for DATA argument: %d", sz)
    		}
    	case obj.TYPE_FCONST:
    		switch sz {
    		case 4:
    			nameAddr.Sym.WriteFloat32(p.ctxt, nameAddr.Offset, float32(valueAddr.Val.(float64)))
    		case 8:
    			nameAddr.Sym.WriteFloat64(p.ctxt, nameAddr.Offset, valueAddr.Val.(float64))
    		default:
    			p.errorf("bad float size for DATA argument: %d", sz)
    		}
    	case obj.TYPE_SCONST:
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Oct 21 14:11:44 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_function_test.cc

      ASSERT_EQ(TF_OK, TF_GetCode(s.get())) << TF_Message(s.get());
      ASSERT_NE(*func, nullptr);
    }
    
    REGISTER_OP("CustomOp")
        .Output("output: float32")
        .Attr("index: int")
        .SetShapeFn(tensorflow::shape_inference::UnknownShape);
    
    void NodeWithPlaceholderAttrHelper(TF_Graph* graph, TF_Status* s,
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg math, func Erfc(float64) float64
    pkg math, func Exp(float64) float64
    pkg math, func Exp2(float64) float64
    pkg math, func Expm1(float64) float64
    pkg math, func Float32bits(float32) uint32
    pkg math, func Float32frombits(uint32) float32
    pkg math, func Float64bits(float64) uint64
    pkg math, func Float64frombits(uint64) float64
    pkg math, func Floor(float64) float64
    pkg math, func Frexp(float64) (float64, int)
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/LittleEndianByteArray.java

       *
       * @param source the input bytes
       * @param offset the offset into the array at which to start
       * @return the value found in the array in the form of a long
       */
      static int load32(byte[] source, int offset) {
        // TODO(user): Measure the benefit of delegating this to LittleEndianBytes also.
        return (source[offset] & 0xFF)
            | ((source[offset + 1] & 0xFF) << 8)
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. api/go1.1.txt

    pkg reflect, const Array = 17
    pkg reflect, const Bool = 1
    pkg reflect, const BothDir = 3
    pkg reflect, const Chan = 18
    pkg reflect, const Complex128 = 16
    pkg reflect, const Complex64 = 15
    pkg reflect, const Float32 = 13
    pkg reflect, const Float64 = 14
    pkg reflect, const Func = 19
    pkg reflect, const Int = 2
    pkg reflect, const Int16 = 4
    pkg reflect, const Int32 = 5
    pkg reflect, const Int64 = 6
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top