Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isTestable (0.44 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

        attributes.emplace_back(builder.getNamedAttr(
            "dimension", BuildVhloIntV1Attr(op->dimension, builder)));
        attributes.emplace_back(builder.getNamedAttr(
            "is_stable",
            mlir::vhlo::BooleanV1Attr::get(builder.getContext(), op->is_stable)));
        return;
      }
      if (const auto* op = op_union.AsStablehloScatterOptions()) {
        attributes.emplace_back(builder.getNamedAttr(
            "update_window_dims",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

                !resolvedType.isNullableType()
            }
    
            when (val fir = expression.getOrBuildFir(analysisSession.firResolveSession)) {
                is FirSmartCastExpression -> if (fir.isStable) {
                    if (fir.smartcastTypeWithoutNullableNothing != null) {
                        return DefiniteNullability.DEFINITELY_NULL
                    } else if (fir.isNotNullable()) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema.fbs

      body_subgraph_index : int;
    }
    
    table StablehloWhileOptions{
      cond_subgraph_index : int;
      body_subgraph_index : int;
    }
    
    table StablehloSortOptions{
      dimension : long;
      is_stable : bool;
      comparator_subgraph_index : int;
    }
    
    table StablehloConcatenateOptions {
      dimension : long;
    }
    
    table StablehloBroadcastInDimOptions{
      broadcast_dimensions : [long];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top