Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 316 for enter_1 (0.14 sec)

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

      } else if (auto sink = llvm::dyn_cast<tf_executor::NextIterationSinkOp>(op)) {
        return ops_have_same_device(sink.GetSource(), sink);
      }
    
      return llvm::isa<tf_executor::EnterOp, tf_executor::ExitOp,
                       tf_executor::IslandOp, tf_executor::MergeOp,
                       tf_executor::SwitchOp>(op);
    }
    
    // Assigns all data results to a specified device.
    void PopulateDeviceForOpResults(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableMap.java

      }
    
      static void checkNoConflict(
          boolean safe, String conflictDescription, Object entry1, Object entry2) {
        if (!safe) {
          throw conflictException(conflictDescription, entry1, entry2);
        }
      }
    
      static IllegalArgumentException conflictException(
          String conflictDescription, Object entry1, Object entry2) {
        return new IllegalArgumentException(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/interface.go

    	// Note that dumping process will stop the queue-set from proceeding
    	// any requests.
    	// For debugging only.
    	Dump(includeRequestDetails bool) debug.QueueSetDump
    }
    
    // QueueNoteFn is called when a request enters and leaves a queue
    type QueueNoteFn func(inQueue bool)
    
    // Request represents the remainder of the handling of one request
    type Request interface {
    	// Finish determines whether to execute or reject the request and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Codec.kt

        val id = identities.getId(reference)
        if (id != null) {
            writeSmallInt(id)
        } else {
            val newId = identities.putInstance(reference)
            writeSmallInt(newId)
            circularReferences.enter(reference)
            try {
                encode(reference)
            } finally {
                circularReferences.leave(reference)
            }
        }
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/continuous/ContinuousBuildActionExecutor.java

        }
    
        private String determineExitHint(BuildRequestMetaData requestContext) {
            if (requestContext.isInteractive()) {
                if (operatingSystem.isWindows()) {
                    return " (ctrl-d then enter to exit)";
                } else {
                    return " (ctrl-d to exit)";
                }
            } else {
                return "";
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:41:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    		markLastImplicit(&inst, PrefixDataSize)
    
    	case CVTSI2SD, CVTSI2SS:
    		if !isMem(inst.Args[1]) {
    			markLastImplicit(&inst, PrefixDataSize)
    		}
    
    	case CVTSD2SI, CVTSS2SI, CVTTSD2SI, CVTTSS2SI,
    		ENTER, FLDENV, FNSAVE, FNSTENV, FRSTOR, LGDT, LIDT, LRET,
    		POP, PUSH, RET, SGDT, SIDT, SYSRET, XBEGIN:
    		markLastImplicit(&inst, PrefixDataSize)
    
    	case LOOP, LOOPE, LOOPNE, MONITOR:
    		markLastImplicit(&inst, PrefixAddrSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/connection/RealCall.kt

        eventListener.canceled(this)
      }
    
      override fun isCanceled(): Boolean = canceled
    
      override fun execute(): Response {
        check(executed.compareAndSet(false, true)) { "Already Executed" }
    
        timeout.enter()
        callStart()
        try {
          client.dispatcher.executed(this)
          return getResponseWithInterceptorChain()
        } finally {
          client.dispatcher.finished(this)
        }
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/resource_operation_safety_analysis_test.cc

      Output init_value = ops::Placeholder(root.WithOpName("init"), DT_FLOAT);
      Output loop_cond = ops::Placeholder(root.WithOpName("init"), DT_BOOL);
      Output enter_value =
          ops::internal::Enter(root.WithOpName("enter"), init_value, "fr");
      ops::Merge iv(root.WithOpName("iv"), {enter_value, enter_value});
      ops::Switch latch(root.WithOpName("latch"), iv.output, loop_cond);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 28 16:53:59 UTC 2020
    - 18.7K bytes
    - Viewed (0)
  9. pkg/scheduler/metrics/metrics.go

    		&metrics.HistogramOpts{
    			Subsystem: SchedulerSubsystem,
    			Name:      "pod_scheduling_sli_duration_seconds",
    			Help:      "E2e latency for a pod being scheduled, from the time the pod enters the scheduling queue and might involve multiple scheduling attempts.",
    			// Start with 10ms with the last bucket being [~88m, Inf).
    			Buckets:        metrics.ExponentialBuckets(0.01, 2, 20),
    			StabilityLevel: metrics.BETA,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tpu_device_propagation.mlir

    func.func @testEnterOp(%arg0: tensor<i64> {tf.device = "/job:localhost/replica:0/task:0/device:TPU:0"}) -> tensor<i64> {
      %0 = tf_executor.graph {
        // CHECK:      tf_executor.Enter
        // CHECK-SAME: device = "/job:localhost/replica:0/task:0/device:TPU:0"
        %1:2 = tf_executor.Enter %arg0 frame "frame" : tensor<i64>
        tf_executor.fetch %1#0 : tensor<i64>
      }
      func.return %0 : tensor<i64>
    }
    
    // CHECK-LABEL: func @testExitOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 19K bytes
    - Viewed (0)
Back to top