Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for mutex_lock (0.08 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/lift_variables.cc

    #include "tensorflow/core/public/session.h"
    
    namespace mlir {
    namespace tf_saved_model {
    
    using llvm::SmallSet;
    using ::tensorflow::Device;
    using ::tensorflow::DeviceMgr;
    using ::tensorflow::mutex_lock;
    using ::tensorflow::ResourceHandle;
    using ::tensorflow::Session;
    using ::tensorflow::Status;
    using ::tensorflow::StatusOr;
    using ::tensorflow::Tensor;
    using ::tensorflow::Var;
    
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. src/runtime/lock_futex.go

    //	futexwakeup(addr *uint32, cnt uint32)
    //		If any procs are sleeping on addr, wake up at most cnt.
    
    const (
    	mutex_unlocked = 0
    	mutex_locked   = 1
    	mutex_sleeping = 2
    
    	active_spin     = 4
    	active_spin_cnt = 30
    	passive_spin    = 1
    )
    
    // Possible lock states are mutex_unlocked, mutex_locked and mutex_sleeping.
    // mutex_sleeping means that there is presumably at least one sleeping thread.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top