Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 262 for ioperation (0.3 sec)

  1. pkg/scheduler/internal/cache/cache_test.go

    		expectedUsedPVCSet           sets.Set[string]
    	}{
    		{
    			name:               "Empty cache",
    			operations:         []operation{},
    			expected:           []*v1.Node{},
    			expectedUsedPVCSet: sets.New[string](),
    		},
    		{
    			name:               "Single node",
    			operations:         []operation{addNode(1)},
    			expected:           []*v1.Node{nodes[1]},
    			expectedUsedPVCSet: sets.New[string](),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    Status IgnoreResourceOpForSafetyAnalysis(
        jit::DeviceInfoCache* device_info_cache, const Node& n, bool* ignore) {
      // If a resource operation is assigned to XLA_CPU or XLA_GPU explicitly then
      // ignore it during resource operation safety analysis.  We need this hack
      // because of two reasons:
      //
      //  1. Operations assigned to XLA_CPU and XLA_GPU have to always be compiled.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.h

    //              below).
    //  opers - Array of operations to become the body of the function or null.
    //          - If no array is given (`num_opers` = -1), all the
    //          operations in `fn_body` will become part of the function
    //          except operations referenced in `inputs`. These operations
    //          must have a single output (these operations are typically
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route.go

    	}
    
    	authority := ""
    	if in.Headers != nil {
    		operations := TranslateHeadersOperations(in.Headers)
    		out.RequestHeadersToAdd = operations.RequestHeadersToAdd
    		out.ResponseHeadersToAdd = operations.ResponseHeadersToAdd
    		out.RequestHeadersToRemove = operations.RequestHeadersToRemove
    		out.ResponseHeadersToRemove = operations.ResponseHeadersToRemove
    		authority = operations.Authority
    	}
    
    	var hostnames []host.Name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      return LogicalResult::success();
    }
    
    LogicalResult FindCoreTPUOps(
        llvm::SetVector<Operation*>& core_tpu_ops,
        const llvm::SetVector<Operation*>& forward_pass_ops,
        const llvm::SetVector<Operation*>& backward_pass_ops,
        const llvm::SetVector<Operation*>& merged_set,
        func::FuncOp loop_body_func) {
      // Find all of the Ops that are part of the forward/backward pass but aren't
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Multimaps.java

       * the map are reflected in the multimap, and vice versa. If the map is modified while an
       * iteration over one of the multimap's collection views is in progress (except through the
       * iterator's own {@code remove} operation, or through the {@code setValue} operation on a map
       * entry returned by the iterator), the results of the iteration are undefined.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Multimaps.java

       * the map are reflected in the multimap, and vice versa. If the map is modified while an
       * iteration over one of the multimap's collection views is in progress (except through the
       * iterator's own {@code remove} operation, or through the {@code setValue} operation on a map
       * entry returned by the iterator), the results of the iteration are undefined.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        return success();
      };
    };
    
    static LogicalResult static_dag_matcher(
        PatternRewriter &rewriter, Operation *op,
        ::llvm::SmallVector<Operation *, 4> &target_ops,
        Operation::operand_range &max, Operation::operand_range &min,
        Operation::operand_range &input, IntegerAttr &num_bits,
        BoolAttr &narrow_range) {
      auto fakequant_op = ::llvm::dyn_cast<TF::FakeQuantWithMinMaxVarsOp>(op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    llvm::SmallSetVector<Value, 4> GetAllExternalOperands(
        const llvm::SmallSetVector<Operation*, 4>& cluster_ops) {
      llvm::SmallSetVector<Value, 4> external_values;
      for (Operation* op : cluster_ops) {
        op->walk([&](Operation* walked_op) {
          for (Value v : walked_op->getOperands()) {
            if (!tensorflow::TypeValidForXLA(v.getType())) continue;
            Operation* defining_op = v.getDefiningOp();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      bool IsWritten(Value resource) const {
        return written_resources_.contains(resource);
      }
    
      static LogicalResult HoistResourcesOutOfIfCaseCluster(Operation* op);
      static LogicalResult HoistResourcesOutOfWhileRegion(TF::WhileRegionOp op);
    
      Operation* op_;
    
      // Per resource information about accesses to that resource.
      struct ResourceInfo {
        // Is this resource read in any of the regions?
        bool is_read;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top