Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 178 for assignOps (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

    //  variables to match the TPUExecute op. This is optional in some context,
    //  e.g., guaranteed by replication.
    //  - `check_same_region` specifies whether the reads/assigns need to be in the
    //  same region as `execute`. This is needed if `execute` is inside ReplicateOp.
    VariableAccessesForTPUExecute BuildVariableAccessInfo(
        tf_device::LaunchOp execute_launch,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassGeneratorSuffixRegistry.java

            if (previous != null) {
                throw new IllegalStateException("A class generator with suffix '" + suffix + "' is already registered.", previous);
            }
            return suffix;
        }
    
        /**
         * Assigns a suffix to use for generated class names.
         */
        public static String assign(String suffix) {
            if (SUFFIXES.putIfAbsent(suffix, markerForSuffix(suffix)) == null) {
                return suffix;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/TextStreamOutputEventListener.java

    import org.gradle.internal.logging.events.StyledTextOutputEvent;
    
    import java.util.concurrent.atomic.AtomicReference;
    
    /**
     * A {@link OutputEventListener} implementation which assigns log levels to text output
     * events that have no associated log level. This implementation is thread-safe.
     */
    public class TextStreamOutputEventListener implements OutputEventListener {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/eventbus/AsyncEventBus.java

     * @author Cliff Biffle
     * @since 10.0
     */
    @ElementTypesAreNonnullByDefault
    public class AsyncEventBus extends EventBus {
    
      /**
       * Creates a new AsyncEventBus that will use {@code executor} to dispatch events. Assigns {@code
       * identifier} as the bus's name for logging purposes.
       *
       * @param identifier short name for the bus, for logging purposes.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/portgen.go

    	g.used[port] = struct{}{}
    	return g
    }
    
    // IsUsed indicates if the given port has already been used.
    func (g *portGenerator) IsUsed(port int) bool {
    	_, ok := g.used[port]
    	return ok
    }
    
    // Next assigns the next port for the given protocol.
    func (g *portGenerator) Next(protocol protocol.Instance) int {
    	for {
    		v := g.next[protocol]
    
    		if v == 0 {
    			panic("echo port generator: unsupported protocol " + protocol)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 04 00:24:04 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/mark_input_output_aliases.cc

        // TODO(b/184420848): We may not need to skip aliasing for entire function
        // in case of multiple assigns.
        if (alias_info.output_index != kUnassigned) {
          LLVM_DEBUG(llvm::dbgs()
                     << "Skip adding aliasing information because of multiple "
                        "assigns to "
                        "the same resource from tf_device.cluster_func outputs. "
                        "This can "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 04:14:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/resource_variable_ops.h

                          AbstractTensorHandle** value, DataType dtype,
                          const char* name = nullptr,
                          const char* raw_device_name = nullptr);
    
    // Assigns a new value to a variable.
    Status AssignVariableOp(AbstractContext* ctx,
                            AbstractTensorHandle* const resource,
                            AbstractTensorHandle* const value,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 10 19:11:36 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

    name: Bug Report
    description: Create a report to help us improve
    labels: [ "a:bug", "to-triage" ]
    assignees: [ ]
    body:
      - type: markdown
        attributes:
          value: |
            Please follow the instructions below.
            We receive dozens of issues every week, so to stay productive, we will close issues that don't provide enough information.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/eventbus/AsyncEventBus.java

     * @author Cliff Biffle
     * @since 10.0
     */
    @ElementTypesAreNonnullByDefault
    public class AsyncEventBus extends EventBus {
    
      /**
       * Creates a new AsyncEventBus that will use {@code executor} to dispatch events. Assigns {@code
       * identifier} as the bus's name for logging purposes.
       *
       * @param identifier short name for the bus, for logging purposes.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  10. src/internal/fuzz/coverage.go

    	coverageSnapshot = make([]byte, len(coverage()))
    
    	// _counters and _ecounters mark the start and end, respectively, of where
    	// the 8-bit coverage counters reside in memory. They're known to cmd/link,
    	// which specially assigns their addresses for this purpose.
    	_counters, _ecounters [0]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top