Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 143 for freezes (0.27 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/quantize_preprocess.cc

      pm.addPass(mlir::createCanonicalizerPass());
      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::TFDevice::CreateDecomposeResourceOpsPass());
    
      // FreezeVariables only freezes variables for TF v1 types. Separately handle
      // freezing of TF v2 GlobalTensor ops. (Ref: b/206855389)
      pm.addPass(mlir::tf_saved_model::CreateOptimizeGlobalTensorsPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      if (!pass_config.disable_variable_freezing) {
        // This pass 'freezes' immutable global tensors and inlines them as tf
        // constant ops.
        pass_manager->addPass(mlir::tf_saved_model::CreateFreezeGlobalTensorsPass(
            /*allow_mutable_tensors=*/pass_config.enable_tflite_variables));
      }
    
      if (!saved_model_dir.empty()) {
        // This pass 'freezes' tf saved model asset ops and inlines as string values
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. tensorflow/cc/tools/freeze_saved_model.cc

      if (var_handle_name.ok() && variable_node_names.count(*var_handle_name)) {
        return var_handle_name;
      }
      return absl::NotFoundError("No VarHandleOp ancestor found");
    }
    
    // Freezes the subgraph of all nodes needed by `outputs`.
    Status FreezeGraphDef(const SavedModelBundle& saved_model_bundle,
                          const std::unordered_set<string>& outputs,
                          GraphDef* frozen_graph_def) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. src/runtime/extern.go

    	their needs before then. See https://go.dev/doc/gc-guide#Linux_transparent_huge_pages.
    
    	dontfreezetheworld: by default, the start of a fatal panic or throw
    	"freezes the world", preempting all threads to stop all running
    	goroutines, which makes it possible to traceback all goroutines, and
    	keeps their state close to the point of panic. Setting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. cmd/notification.go

    }
    
    // ServiceFreeze freezes all S3 API calls when 'freeze' is true,
    // 'freeze' is 'false' would resume all S3 API calls again.
    // NOTE: once a tenant is frozen either two things needs to
    // happen before resuming normal operations.
    //   - Server needs to be restarted 'mc admin service restart'
    //   - 'freeze' should be set to 'false' for this call
    //     to resume normal operations.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  6. src/runtime/panic.go

    		// only gets us to the caller's fp.
    		gp.sched.bp = sp - goarch.PtrSize
    	}
    	gp.sched.ret = 1
    	gogo(&gp.sched)
    }
    
    // fatalthrow implements an unrecoverable runtime throw. It freezes the
    // system, prints stack traces starting from its caller, and terminates the
    // process.
    //
    //go:nosplit
    func fatalthrow(t throwType) {
    	pc := getcallerpc()
    	sp := getcallersp()
    	gp := getg()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/order.go

    	// after it reaches 255 and so, if an edge is executed at least one time, the entry is
    	// never 0.
    	// Another policy presented in the paper is the Saturated Counters policy which
    	// freezes the counter when it reaches the value of 255. However, a range
    	// of experiments showed that that decreases overall performance.
    	o.append(ir.NewIfStmt(base.Pos,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  8. src/net/rpc/server.go

    }
    
    // Server represents an RPC Server.
    type Server struct {
    	serviceMap sync.Map   // map[string]*service
    	reqLock    sync.Mutex // protects freeReq
    	freeReq    *Request
    	respLock   sync.Mutex // protects freeResp
    	freeResp   *Response
    }
    
    // NewServer returns a new [Server].
    func NewServer() *Server {
    	return &Server{}
    }
    
    // DefaultServer is the default instance of [*Server].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

        llvm::cl::desc("Smuggle disallowed ops via stablehlo.custom_calls."),
        llvm::cl::Optional, llvm::cl::init(true));
    
    // NOLINTNEXTLINE
    opt<bool> freeze_tf_graph(
        "freeze-tf-graph",
        llvm::cl::desc("Freeze TF graph to remove tf.ResourceVariable, etc."),
        llvm::cl::Optional, llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<std::string> exported_model_signatures(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. cmd/globals.go

    		Timeout: 5 * time.Second,
    	}
    
    	globalForwarder *handlers.Forwarder
    
    	globalTierConfigMgr *TierConfigMgr
    
    	globalConsoleSrv *consoleapi.Server
    
    	// handles service freeze or un-freeze S3 API calls.
    	globalServiceFreeze atomic.Value
    
    	// Only needed for tracking
    	globalServiceFreezeCnt int32
    	globalServiceFreezeMu  sync.Mutex // Updates.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top