Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for isTestable (0.35 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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