Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for isTestable (0.15 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftBinary.java

            return identity.isDebuggable();
        }
    
        @Override
        public boolean isOptimized() {
            return identity.isOptimized();
        }
    
        @Override
        public boolean isTestable() {
            return testable;
        }
    
        @Override
        public FileCollection getSwiftSource() {
            return source;
        }
    
        @Override
        public FileCollection getCompileModules() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/vhlo.mlir

    //CHECK-NEXT: return %0 : tensor<1x1x64xf32>
    //CHECK-NEXT:}
    
    func.func @sort(%arg0: tensor<448xf32>, %arg1: tensor<448xi32>) -> tensor<448xf32> {
      %0, %1 = "vhlo.sort_v1"(%arg0, %arg1) <{dimension = #vhlo.integer_v1<0 : i64>, is_stable = #vhlo.bool_v1<true>}> ({
        ^bb0(%arg23: tensor<f32>, %arg24: tensor<f32>, %arg25: tensor<i32>, %arg26: tensor<i32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  4. 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)
  5. 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