Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for isTestable (0.33 sec)

  1. 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)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            return when {
                this is FirSmartCastExpression -> {
                    val result = originalExpression.toKtReceiverValue()
                    if (result != null && isStable) {
                        KaSmartCastedReceiverValue(result, smartcastType.coneType.asKtType())
                    } else {
                        result
                    }
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: [[RNG:%.*]] = "mhlo.rng"([[LOWER]], [[UPPER]], [[SHAPE]]) <{rng_distribution = #mhlo.rng_distribution<UNIFORM>}>
      // CHECK: [[SORT:%.*]]:2 = "mhlo.sort"([[RNG]], [[INPUT]]) <{dimension = -1 : i64, is_stable = {{.*}}}> ({
      // CHECK: ^{{.*}}([[ARG1:%.*]]: tensor<i32>, [[ARG2:%.*]]: tensor<i32>, {{.*}}: tensor<f32>, {{.*}}: tensor<f32>):
      // CHECK:   mhlo.compare LT, [[ARG1]], [[ARG2]], TOTALORDER
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

        "mhlo.return"(%3) : (tensor<i1>) -> ()
      }) {dimension = 1 : i64, is_stable = true} : (tensor<3x6xf32>, tensor<3x6xi32>) -> (tensor<3x6xf32>, tensor<3x6xi32>)
      func.return %2#0, %2#1 : tensor<3x6xf32>, tensor<3x6xi32>
    }
    
    // CHECK-LABEL:   func @convert_sort_to_topk_iotacst_broadcast(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      void add_dimension(int64_t dimension) {
        fbb_.AddElement<int64_t>(StablehloSortOptions::VT_DIMENSION, dimension, 0);
      }
      void add_is_stable(bool is_stable) {
        fbb_.AddElement<uint8_t>(StablehloSortOptions::VT_IS_STABLE, static_cast<uint8_t>(is_stable), 0);
      }
      void add_comparator_subgraph_index(int32_t comparator_subgraph_index) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

            auto sorted = createSortOp(
                &rewriter, op.getLoc(), {keys, current},
                {rewriter.getIntegerType(32), input_type.getElementType()},
                /*dimension=*/-1, /*isStable=*/false,
                /*direction=*/ComparisonDirection::LT);
            current = sorted.getResult(1);
          }
          rewriter.replaceOp(op, current);
          return success();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    is_stable attributes.
      }];
    
      let arguments = (ins
        Arg<Variadic<TF_Tensor>, [{A list of `Tensor` of identical shape but possibly different types.}]>:$inputs,
        Arg<TF_Int32Tensor, [{The dimension along which to sort. Must be a compile-time constant.}]>:$dimension,
    
        SymbolRefAttr:$comparator,
        BoolAttr:$is_stable
      );
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top