Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 116 for stateful (0.26 sec)

  1. tensorflow/compiler/jit/build_xla_ops_pass.cc

        if (!e->IsControlEdge()) {
          args[e->dst_input()] = Output(e->src(), e->src_output());
        }
      }
    
      // In theory we can use PartitionedCall if the XLA cluster does not have any
      // stateful operations.  However, for now we choose to be conservative since
      // we don't have any evidence that choosing a stateless partitioned call helps
      // for performance.
      ops::StatefulPartitionedCall call(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

          FunctionType::get(func.getContext(), new_input_types,
                            func.front().getTerminator()->getOperandTypes()));
    }
    
    // Contains cached information for decomposed callee functions for (stateful)
    // partitioned call ops.
    struct PartitionedCallStackOpsInfo {
      bool signature_change;
      func::FuncOp decomposed_callee;
      llvm::SmallDenseMap<int64_t, int64_t> stack_var_arg_to_size_arg;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. architecture/ambient/ztunnel.md

    ## Goals
    
    Ztunnel should:
    * **Not break users**. This means that deploying Ztunnel should retain all existing Kubernetes behavior.
      * This includes UDP, non-compliant HTTP, server-first protocols, stateful sets, external services, etc.
      * Explicitly opting into behavioral changes can be acceptable. For example, introducing Istio multi-cluster semantics.
    * Ensure traffic between mesh workloads is securely encrypted with an Istio identity.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/compilability_check_util.cc

        LogNotCompilable(node, "unsupported case");
        return false;
      }
    
      if (!op_filter_.allow_stateful_rng_ops &&
          IsStatefulRandomOp(node.type_string())) {
        absl::string_view uncompilable_reason = "stateful random op";
        MaybeMarkUncompilableNode(uncompilable_reason, *stack_trace,
                                  encapsulating_function, uncompilable_nodes);
        LogNotCompilable(node, uncompilable_reason);
        return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/passes.td

      let summary = "TFLite runtime verification";
      let constructor = "CreateRuntimeVerifyPass()";
    }
    
    def SplitMergedOperandsPass : Pass<"tfl-split-merged-operands", "mlir::func::FuncOp"> {
      let summary = "Split merged stateful operands for tfl operations.";
      let constructor = "CreateSplitMergedOperandsPass()";
    }
    
    def TrimFunctionsPass : Pass<"tfl-trim-funcs-tf", "mlir::ModuleOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. cmd/metacache-stream.go

    	return s2.NewReader(nil, s2.ReaderAllocBlock(16<<10))
    }}
    
    // metacacheReader allows reading a cache stream.
    type metacacheReader struct {
    	mr      *msgp.Reader
    	current metaCacheEntry
    	err     error // stateful error
    	closer  func()
    	creator func() error
    }
    
    // newMetacacheReader creates a new cache reader.
    // Nothing will be read from the stream yet.
    func newMetacacheReader(r io.Reader) *metacacheReader {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/BloomFilter.java

         * values in the [-128, 127] range are valid for the compact serial form. Non-negative values
         * are reserved for enums defined in BloomFilterStrategies; negative values are reserved for any
         * custom, stateful strategy we may define (e.g. any kind of strategy that would depend on user
         * input).
         */
        int ordinal();
      }
    
      /** The bit set of the BloomFilter (not necessarily power of 2!) */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    mlir::LogicalResult LSTMOp::verify() {
      LSTMOp op = *this;
      auto operands = op.GetStatefulOperands();
      if (operands.size() != 2 || operands[0] != 18 || operands[1] != 19) {
        return op.emitOpError("LSTMOp expected to have two stateful operands");
      }
    
      const auto input_type = op.getInput().getType().cast<ShapedType>();
      // Since TFLite runtime generally supports dynamic shape/rank, if `input_type`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/BloomFilter.java

         * values in the [-128, 127] range are valid for the compact serial form. Non-negative values
         * are reserved for enums defined in BloomFilterStrategies; negative values are reserved for any
         * custom, stateful strategy we may define (e.g. any kind of strategy that would depend on user
         * input).
         */
        int ordinal();
      }
    
      /** The bit set of the BloomFilter (not necessarily power of 2!) */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/util/util.go

    	// which determines the endpoint level transport socket configuration.
    	EnvoyTransportSocketMetadataKey = "envoy.transport_socket_match"
    
    	// Well-known header names
    	AltSvcHeader = "alt-svc"
    
    	// Envoy Stateful Session Filter
    	// TODO: Move to well known.
    	StatefulSessionFilter = "envoy.filters.http.stateful_session"
    
    	// AlpnOverrideMetadataKey is the key under which metadata is added
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top