Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for TensorFlowDialect (0.26 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_quantized_functions.cc

        // This is a brief description of the pass.
        return "Insert quantized functions into the module";
      }
    
      void getDependentDialects(DialectRegistry& registry) const override {
        registry.insert<TF::TensorFlowDialect, func::FuncDialect>();
      }
    
     private:
      void runOnOperation() override;
    
      // Returns the function library for the given quantization method and opset
      // pair.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.cc

      registry.insert<mlir::arith::ArithDialect,
                      mlir::func::FuncDialect,
                      mlir::scf::SCFDialect,
                      mlir::shape::ShapeDialect,
                      mlir::TF::TensorFlowDialect,
                      mlir::tf_device::TensorFlowDeviceDialect,
                      mlir::tf_executor::TensorFlowExecutorDialect,
                      mlir::TFR::TFRDialect>();
      // clang-format on
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 29 02:34:43 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla.cc

        // remove this restriction altogether except for the terminators that
        // require function signature change and shouldn't be
        if (op->getName().getDialectNamespace() !=
            TF::TensorFlowDialect::getDialectNamespace())
          return failure();
    
        // Refining types may have implications to the attached regions or symbol
        // references so do not update such ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top