Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 316 for ioperation (0.21 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. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// operations which are conditionally required. If the presence of an operation
    /// `foo` requires operation `bar` to be present, this is specified in `foo`. If
    /// the entire set of operations in a table is not provided, use `nullptr` for
    /// the struct pointer (e.g., when a file type is not supported).
    ///
    /// DEFAULT IMPLEMENTATIONS: Some operations have default implementations that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    _Decomposes TensorList operations into generic operations on tensors._
    
    This pass rewrites TensorList operations into generic and non-mutating
    operations on tensors. This results in operations that can be legalized to XLA.
    
    The list is converted to a single large tensor that includes all list elements,
    with a new first dimension for the list index. List update operations are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  10. 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)
Back to top