Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RegisterOps (0.32 sec)

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

      dialect.addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.cc.inc"
          >();
    }
    
    void RegisterOps() {
      TF_DIALECT_REGISTER_ADDITIONAL_OPERATIONS(RegisterOpsHook);
    }
    
    static auto kRegistration = (RegisterOps(), true);
    
    }  // namespace quant
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 24 12:48:34 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.h

    #define GET_OP_CLASSES
    #include "tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.h.inc"
    
    namespace mlir {
    namespace quant {
    
    // Function to register TensorFlow Uniform Quantized ops.
    void RegisterOps();
    
    }  // namespace quant
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 29 08:20:46 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

      stablehlo::registerAllDialects(registry);
      registry.insert<mlir::func::FuncDialect, mlir::tf_type::TFTypeDialect,
                      mlir::quant::QuantizationDialect>();
      mlir::quant::RegisterOps();
    
      MLIRContext context(registry);
      context.loadAllAvailableDialects();
    
      llvm::SourceMgr source_mgr;
      SourceMgrDiagnosticHandler sourceMgrHandler(source_mgr, &context);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top