Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TF32 (0.45 sec)

  1. test/ken/convert.go

    	{ tu64, tf32, 175 }, { tu64, tf64, 175 },
    
    	{ tf32, tu8,  175 }, { tf32, ti16, 175 }, { tf32, tu16, 175 },
    	{ tf32, ti32, 175 }, { tf32, tu32, 175 }, { tf32, ti64, 175 }, { tf32, tu64, 175 },
    	{ tf32, tf32, 175 }, { tf32, tf64, 175 },
    
    	{ tf64, tu8,  175 }, { tf64, ti16, 175 }, { tf64, tu16, 175 },
    	{ tf64, ti32, 175 }, { tf64, tu32, 175 }, { tf64, ti64, 175 }, { tf64, tu64, 175 },
    	{ tf64, tf32, 175 }, { tf64, tf64, 175 },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 14.9K bytes
    - Viewed (0)
  2. src/fmt/stringer_test.go

    type TI int
    type TI8 int8
    type TI16 int16
    type TI32 int32
    type TI64 int64
    type TU uint
    type TU8 uint8
    type TU16 uint16
    type TU32 uint32
    type TU64 uint64
    type TUI uintptr
    type TF float64
    type TF32 float32
    type TF64 float64
    type TB bool
    type TS string
    
    func (v TI) String() string   { return Sprintf("I: %d", int(v)) }
    func (v TI8) String() string  { return Sprintf("I8: %d", int8(v)) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      int64_t axis = intAttr.getInt();
      if (axis < 0) {
        axis += rank;
      }
      return b->getI64IntegerAttr(axis);
    }
    
    // Returns a PrecisionConfig as an array attribute based on whether TF32
    // execution is enabled
    static ArrayAttr GetPrecisionConfig(Builder *builder) {
      mlir::mhlo::Precision precision = tsl::tensor_float_32_execution_enabled()
                                            ? mhlo::Precision::DEFAULT
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. RELEASE.md

        Additional details below.
    
    *   Adds Support for
        [TensorFloat-32](https://blogs.nvidia.com/blog/2020/05/14/tensorfloat-32-precision-format/)
        on Ampere based GPUs. TensorFloat-32, or TF32 for short, is a math mode for
        NVIDIA Ampere based GPUs and is enabled by default.
    
    *   A major refactoring of the internals of the Keras Functional API has been
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top