Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for input_span (0.11 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      for (auto elem : vals.getValues<float>())
        if (elem != 0.0f) return false;
      return true;
    }
    
    bool IsF32Splat(Attribute input_splat) {
      if (!input_splat) return false;
      auto val = dyn_cast_or_null<DenseElementsAttr>(input_splat);
      if (val) {
        return !val.empty() && val.getElementType().isF32() && val.isSplat();
      }
      return false;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. RELEASE.md

            shapes with `None` entries for axes that are meant to be dynamic). You
            can also disable the input checking entirely by setting
            `model.input_spec = None`.
        *   Several changes have been made to
            `tf.keras.mixed_precision.experimental`. Note that it is now recommended
            to use the non-experimental `tf.keras.mixed_precision` API.
    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