Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 52 of 52 for isS32 (0.05 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

            return op.emitOpError()
                   << "Missing " << attr_name << " attribute in backend_config";
          }
          auto attr = backend_config.getAs<FloatAttr>(attr_name);
          if (!attr || !attr.getType().isF32()) {
            return op.emitOpError()
                   << attr_name
                   << " attribute in backend_config must be of f32 type";
          }
          return success();
        };
        auto check_bool_attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

            Eigen::NumTraits<Eigen::bfloat16>::epsilon());
        auto value = APFloat(APFloat::BFloat(), APInt(16, raw_epsilon));
        return DenseElementsAttr::get(scalar_ty, value);
      } else if (element_ty.isF32()) {
        auto value = APFloat(std::numeric_limits<float>::epsilon());
        return DenseElementsAttr::get(scalar_ty, value);
      } else if (element_ty.isF64()) {
        auto value = APFloat(std::numeric_limits<double>::epsilon());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top