Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 84 for PassRegistration (0.32 sec)

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

      }
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreateConvertTfXlaOpToTfOpPass() {
      return std::make_unique<ConvertTfXlaOpToTfOpPass>();
    }
    
    static PassRegistration<ConvertTfXlaOpToTfOpPass> pass;
    
    }  // namespace quant
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/get_alternative_subgraph.cc

    std::unique_ptr<OperationPass<ModuleOp>> CreateAlternativeSubgraphPass(
        llvm::ArrayRef<std::string> device_specs) {
      return std::make_unique<AlternativeSubgraphPass>(device_specs);
    }
    
    static PassRegistration<AlternativeSubgraphPass> pass;
    
    }  // namespace tac
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/transforms/raise_target_subgraphs.cc

        bool skip_raise_cpu_ops, bool ignore_inference_type) {
      return std::make_unique<RaiseTargetSubgraphsPass>(skip_raise_cpu_ops,
                                                        ignore_inference_type);
    }
    
    static PassRegistration<RaiseTargetSubgraphsPass> pass;
    
    }  // namespace tac
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/reduce_while_operands.cc

      return erase_indices.any();
    }
    
    void ReduceWhileOperandsPass::runOnOperation() {
      auto fn = getOperation();
      fn.walk([&](TFL::WhileOp while_op) { ReduceWhileOperands(while_op); });
    }
    
    static PassRegistration<ReduceWhileOperandsPass> pass;
    }  // namespace
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreateReduceWhileOperandsPass() {
      return std::make_unique<ReduceWhileOperandsPass>();
    }
    
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_dump_tensor_op.cc

                  return !isa<TF::DumpTensorOp>(use.getOwner());
                });
          }
        }
      }
    
      DebuggerType debugger_type_;
      std::string log_dir_path_;
    };
    
    static PassRegistration<AddDumpTensorOpPass> pass;
    
    void AddDumpTensorOpPass::runOnOperation() {
      MLIRContext *ctx = &getContext();
      RewritePatternSet patterns(ctx);
      ModuleOp module = getOperation();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreatePrepareLiftingPass(
        const OpSet target_opset) {
      return std::make_unique<PrepareLiftingPass>(target_opset);
    }
    
    static PassRegistration<PrepareLiftingPass> pass;
    
    }  // namespace quant
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/tensorflow/fallback_to_flex_ops.cc

    }  // namespace internal
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreateFallbackToFlexOpsPass(
        const std::string &mode) {
      return std::make_unique<internal::FallbackToFlexOps>(mode);
    }
    
    static PassRegistration<internal::FallbackToFlexOps> pass([] {
      return CreateFallbackToFlexOpsPass(/*mode=*/internal::kDefaultMode);
    });
    
    }  // namespace TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateUnfreezeConstantsPass() {
      return std::make_unique<UnfreezeConstantsPass>();
    }
    
    static PassRegistration<UnfreezeConstantsPass> pass([] {
      return CreateUnfreezeConstantsPass();
    });
    
    }  // namespace quant
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

    std::unique_ptr<OperationPass<ModuleOp>>
    CreateMergeInitializerFunctionOpsToMainPass() {
      return std::make_unique<MergeInitializerFunctionOpsToMainPass>();
    }
    
    // Registers MergeInitializerFunctionOpsToMainPass.
    static PassRegistration<MergeInitializerFunctionOpsToMainPass> pass([] {
      return CreateMergeInitializerFunctionOpsToMainPass();
    });
    
    }  // namespace quant
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.cc

            op->print(log_stream);
            VLOG(2) << log_message;
          }
        });
      }
    
      const QuantizationOptions& quant_options_;
    };
    
    static PassRegistration<LiftQuantizableSpotsAsFunctionsPass> pass;
    
    #include "tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.inc"
    
    void LiftQuantizableSpotsAsFunctionsPass::runOnOperation() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top