Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,363 for inter (0.04 sec)

  1. tensorflow/compiler/jit/xla_launch_util.h

      // multiple streams and so se::Events must be defined and waited for. If
      // 'use_multiple_streams' is true, 'allocate_xla_tensors' must also be true
      // because we track inter-stream dependencies through events inside XlaTensor
      // objects.
      XlaComputationLaunchContext(xla::LocalClient* client,
                                  se::DeviceMemoryAllocator* xla_allocator,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/resource_operation_safety_analysis.cc

        return absl::OkStatus();
      }
    
      // We conservatively assume that functions will both read and write resource
      // variables.  In the future we may consider doing some form of
      // inter-procedural analysis.
      if (MayCallFunction(n, flib_def)) {
        *out_resource_op_kind = XlaResourceOpKind::kReadWrite;
      } else {
        *out_resource_op_kind = std::nullopt;
      }
    
      return absl::OkStatus();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    Artifacts are typically designed to be used or consumed by users or other projects, or deployed to hosting systems.
    In such cases, the artifact is a single file.
    Directories are common in the case of inter-project dependencies to avoid the cost of producing the publishable artifact.
    
    [[sub:terminology_capability]]
    == Capability
    
    A capability identifies a feature offered by one or multiple components.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. pkg/registry/core/service/strategy.go

    		return false
    	}
    	for i := range a {
    		if a[i] != b[i] {
    			return false
    		}
    	}
    	return true
    }
    
    // This is an unusual case.  Service has a number of inter-related fields and
    // in order to avoid breaking clients we try really hard to infer what users
    // mean when they change them.
    //
    // Services are effectively a discriminated union, where `type` is the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption.go

    	// we are almost done and this node is not suitable for preemption. The only
    	// condition that we could check is if the "pod" is failing to schedule due to
    	// inter-pod affinity to one or more victims, but we have decided not to
    	// support this case for performance reasons. Having affinity to lower
    	// priority pods is not a recommended configuration anyway.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 25 19:36:04 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  6. common/scripts/kind_provisioner.sh

      C2_DOCKER_IP=$(docker inspect -f "{{ .NetworkSettings.Networks.kind.IPAddress }}" "${C2_NODE}")
      if [ "${POD_TO_POD_AND_SERVICE_CONNECTIVITY}" -eq 1 ]; then
        # Set up routing rules for inter-cluster direct pod to pod & service communication
        C1_POD_CIDR=$(KUBECONFIG="${C1_KUBECONFIG}" kubectl get node -ojsonpath='{.items[0].spec.podCIDR}')
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    +
    A build scan will make it easier to visualize what's happening in the build.
    For Gradle builds, you'll be able to see the project structure, the dependencies (regular and inter-project ones), what plugins are being used and the console output of the build.
    +
    Your build may fail at this point, but that's ok; the scan will still run.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  8. src/runtime/runtime-gdb.py

    				continue
    
    			print("{0}: {1}".format(obj.type, dtype))
    
    # TODO: print interface's methods and dynamic type's func pointers thereof.
    #rsc: "to find the number of entries in the itab's Fn field look at
    # itab.inter->numMethods
    # i am sure i have the names wrong but look at the interface type
    # and its method count"
    # so Itype will start with a commontype which has kind = interface
    
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        TfeControlType:$control
      );
    }
    
    def TfExecutor_EnterOp : TfExecutor_Op<"Enter",
        [ControlOperandsAfterAllData, HasParent<"GraphOp">,
         PredOpTrait<"data operand must be broadcastable to result",
                     TF_OpIsBroadcastableToRes<0, 0>>]>{
      let summary = [{
        The "tf_executor.Enter" operation forwards its input to Tensorflow while
        loop.
      }];
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    [it acts as`pivot` for marking the loop termination condition](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/kernels/control_flow_ops.h#L115-L118).
    
    ### `tf_executor.Enter` Operation
    
    [`tf_executor.Enter`](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/kernels/control_flow_ops.h##77-L79):
    takes a single input and a`name` string attribute that identifies the execution
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
Back to top