Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 176 for GetIps (0.11 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

          bool use_mhlo_const = false) {
        auto module_op = parseSourceString<ModuleOp>(program, ctx_.get());
        CHECK(module_op);
        auto func_op = llvm::dyn_cast<func::FuncOp>(
            *module_op->getBodyRegion().getOps().begin());
        if (!func_op) {
          return absl::InternalError("Input MLIR must have only 1 func");
        }
        if (arguments.size() != func_op.getNumArguments()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  2. Makefile

    	@(env bash $(PWD)/docs/site-replication/run-ssec-object-replication-with-compression.sh)
    
    verify: install-race ## verify minio various setups
    	@echo "Verifying build with race"
    	@(env bash $(PWD)/buildscripts/verify-build.sh)
    
    verify-healing: install-race ## verify healing and replacing disks with minio binary
    	@echo "Verify healing build with race"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

      void runOnOperation() override {
        MLIRContext *context = &getContext();
        ModuleOp module_op = getOperation();
        SmallVector<func::FuncOp, 4> original_func;
        for (auto func_op : module_op.getOps<func::FuncOp>()) {
          original_func.push_back(func_op);
        }
        for (auto func_op : original_func) {
          std::optional<llvm::StringMap<FunctionMetadata>> metadatas =
              GetFunctionMetadatas(func_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

    // does the same thing for `Ts`.
    template <typename T, typename... Ts>
    void DuplicateShapeDeterminingConstants(func::FuncOp func_op) {
      for (auto op : func_op.getOps<typename T::OpType>()) {
        RecursivelyDuplicateConstantsForOperands(
            GetOperands(*op, T::OperandIndices()));
      }
    
      // Do the same thing for the rest of `Ts`.
      if constexpr (sizeof...(Ts) != 0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    		if lockFile != "" {
    			if err := mount(lockFile, "/run/xtables.lock"); err != nil {
    				return fmt.Errorf("bind mount of %q failed: %v", lockFile, err)
    			}
    		}
    
    		// In some setups, iptables can make remote network calls(!!). Since these come from a partially initialized pod network namespace,
    		// these calls can be blocked (or NetworkPolicy, etc could block them anyways).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      TF_RETURN_IF_ERROR(importer.ImporterBase::ConvertDeferredFunctions());
    
      // Mark main function public, others private.
      for (auto function : module.get().getOps<mlir::func::FuncOp>()) {
        auto visibility = function.getName() == graph_func_name
                              ? mlir::func::FuncOp::Visibility::Public
                              : mlir::func::FuncOp::Visibility::Private;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/anames.go

    	"SCASW",
    	"SETCC",
    	"SETCS",
    	"SETEQ",
    	"SETGE",
    	"SETGT",
    	"SETHI",
    	"SETLE",
    	"SETLS",
    	"SETLT",
    	"SETMI",
    	"SETNE",
    	"SETOC",
    	"SETOS",
    	"SETPC",
    	"SETPL",
    	"SETPS",
    	"SFENCE",
    	"SGDT",
    	"SHA1MSG1",
    	"SHA1MSG2",
    	"SHA1NEXTE",
    	"SHA1RNDS4",
    	"SHA256MSG1",
    	"SHA256MSG2",
    	"SHA256RNDS2",
    	"SHLB",
    	"SHLL",
    	"SHLQ",
    	"SHLW",
    	"SHLXL",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

      // populates `op_side_effect_map_`.
      explicit OpSideEffectCollector(ModuleOp module) {
        symbol_table_collection_.getSymbolTable(module);
        for (auto func : module.getOps<func::FuncOp>()) {
          CollectOpSideEffects(func);
        }
      }
    
      // Returns op-based side effects by resource ID for `op`.
      const SideEffectsByResourceId& GetSideEffectsForOp(Operation* op) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  9. cmd/admin-handlers_test.go

    type adminErasureTestBed struct {
    	erasureDirs []string
    	objLayer    ObjectLayer
    	router      *mux.Router
    	done        context.CancelFunc
    }
    
    // prepareAdminErasureTestBed - helper function that setups a single-node
    // Erasure backend for admin-handler tests.
    func prepareAdminErasureTestBed(ctx context.Context) (*adminErasureTestBed, error) {
    	ctx, cancel := context.WithCancel(ctx)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

        q_op->replaceAllUsesWith(new_qcast);
        return success();
      }
    };
    
    bool PrepareQuantizePass::ContainsQuantizeOps(func::FuncOp func) {
      for (const auto& op : func.getOps()) {
        if (llvm::isa<quantfork::DequantizeCastOp>(op)) return true;
      }
      return false;
    }
    
    using PrepareQuantStats =
        quant::ConvertStatsToQDQs<quantfork::QuantizeCastOp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top