Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  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)
Back to top