Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for TensorFlowLiteDialect (0.25 sec)

  1. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

        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)
  2. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      registry.insert<mlir::arith::ArithDialect, mlir::func::FuncDialect,
                      mlir::quant::QuantizationDialect,
                      mlir::quantfork::QuantizationForkDialect,
                      mlir::TFL::TensorFlowLiteDialect, mlir::TF::TensorFlowDialect,
                      mlir::stablehlo::StablehloDialect, mlir::vhlo::VhloDialect>();
      mlir::func::registerAllExtensions(registry);
      context->appendDialectRegistry(registry);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        }
        tf_dialect_ =
            module.getContext()->getOrLoadDialect<mlir::TF::TensorFlowDialect>();
        tfl_dialect_ = module.getContext()
                           ->getOrLoadDialect<mlir::TFL::TensorFlowLiteDialect>();
        vhlo_dialect_ =
            module.getContext()->getOrLoadDialect<mlir::vhlo::VhloDialect>();
        // Right now the TF executor dialect is still needed to build NodeDef.
        module.getContext()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

            /*max_bcast_rank=*/6);
      }
      return false;
    }
    
    //===----------------------------------------------------------------------===//
    // TensorFlowLiteDialect
    //===----------------------------------------------------------------------===//
    
    struct TensorFlowLiteInlinerInterface : public DialectInlinerInterface {
      using DialectInlinerInterface::DialectInlinerInterface;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top