Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TFL_Op (0.14 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      }];
    }
    
    def TFL_LogicalNotOp : TFL_Op<"logical_not", [
        Pure,
        SameOperandsAndResultShape]> {
      let summary = "Logical NOT operator";
    
      let description = [{
        Element-wise logical NOT operation.
      }];
    
      let arguments = (ins TFL_BoolTensor:$lhs);
    
      let results = (outs TFL_BoolTensor:$output);
    }
    
    def TFL_LogicalOrOp : TFL_Op<"logical_or", [Pure]> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/converter_gen.cc

    static bool OperatorWritersMain(raw_ostream &os, RecordKeeper &records) {
      emitSourceFileHeader("MLIR TFLite FlatBuffer Builders", os);
    
      // Retrieve all the definitions derived from TFL_Op and sort by record name.
      std::vector<Record *> defs = records.getAllDerivedDefinitions("TFL_Op");
      llvm::sort(defs, LessRecord());
    
      for (const auto *def : defs) {
        // TFLite ops in the .td file are expected to follow the naming convention:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

      target.addLegalOp<QConstOp>();
      if (run_tfl_runtime_verification_) {
        target.addDynamicallyLegalDialect<TensorFlowLiteDialect>([](Operation* op) {
          auto tfl_op = dyn_cast_or_null<TflRuntimeVerifyOpInterface>(op);
          if (!tfl_op) return false;
          return succeeded(tfl_op.VerifyTflRuntimeConstraints(
              op, /*emit_error_on_verify_fail=*/false));
        });
      } else {
        target.addLegalDialect<TensorFlowLiteDialect>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/tools/tflite_op_coverage_spec_getters_gen.cc

    }
    
    static bool TFLiteOpCoverageSpecWritersMain(raw_ostream &os,
                                                RecordKeeper &records) {
      std::vector<Record *> op_defs = records.getAllDerivedDefinitions("TFL_Op");
      EmitStaticQuantOp(op_defs, &os);
      EmitDynamicRangeOp(op_defs, &os);
      EmitStaticQuantWithInt16ActOp(op_defs, &os);
      EmitStaticQuantWithInt16ActTocoOp(op_defs, &os);
      EmitSparseOp(op_defs, &os);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 12.7K bytes
    - Viewed (0)
Back to top