Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getComparisonDirection (0.21 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      auto return_op = dyn_cast_or_null<ReturnOpType>(&operations.back());
      if (!compare_op || !return_op) return false;
      // TODO(xuanyuanluo): Support mhlo::ComparisonDirection::LT direction.
      if (compare_op.getComparisonDirection() != mhlo::ComparisonDirection::GT) {
        return false;
      }
      if (compare_op.getOperands()[0] != comparator_blk.getArgument(0) ||
          compare_op.getOperands()[1] != comparator_blk.getArgument(1)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                builder_,
                static_cast<tflite::StablehloComparisonDirection>(
                    mlir::cast<mlir::vhlo::ComparisonDirectionV1Attr>(
                        vhlo_op.getComparisonDirection())
                        .getValue()),
                compare_type);
    
            return tflite::CreateOperator(
                builder_, opcode_index, builder_.CreateVector(operands),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top