Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 96 for partitioned (0.17 sec)

  1. src/net/http/cookie.go

    				if err != nil {
    					c.Expires = time.Time{}
    					break
    				}
    			}
    			c.Expires = exptime.UTC()
    			continue
    		case "path":
    			c.Path = val
    			continue
    		case "partitioned":
    			c.Partitioned = true
    			continue
    		}
    		c.Unparsed = append(c.Unparsed, parts[i])
    	}
    	return c, nil
    }
    
    // readSetCookies parses all "Set-Cookie" values from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

    using PartitionedClusterOutputMap = absl::flat_hash_map<
        uint64_t, llvm::SmallVector<mlir::TF::TPUPartitionedOutputV2Op, 8>>;
    
    // Returns the partitioned output ops from the cluster if there are any,
    // along with any single user identity ops between them. Not all outputs
    // of a cluster must be partitioned, so the output is a map from cluster
    // output ids to ops.
    std::tuple<PartitionedClusterOutputMap,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  3. src/net/http/cookie_test.go

    		"cookie-15=samesite-none; SameSite=None",
    	},
    	{
    		&Cookie{Name: "cookie-16", Value: "partitioned", SameSite: SameSiteNoneMode, Secure: true, Path: "/", Partitioned: true},
    		"cookie-16=partitioned; Path=/; Secure; SameSite=None; Partitioned",
    	},
    	// The "special" cookies have values containing commas or spaces which
    	// are disallowed by RFC 6265 but are common in the wild.
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/transforms/raise_target_subgraphs.cc

      added_func_op.setName(builder.getStringAttr(function_name));
      added_call_op.setCallee(builder.getStringAttr(function_name));
    }
    
    // Raises partitioned sequential `Operations` from a block to a new function
    // definition. `Operations` are partitioned into classes from the cartesian
    // product of possible devices and inference datatypes. For example, we might
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf.cc

      // Add TF->TF lowering patterns.
      TF::PopulateTFLoweringBeforeHLOPatterns(context, &legalize_lower_patterns);
    
      if (tf2xla_fallback_device_type && prefer_tf2xla) {
        VLOG(1) << "TF to XLA legalization patterns are partitioned by op into "
                   "either native MLIR legalization, or TF2XLA fallback "
                   "legalzation, with a preference toward TF2XLA.";
      } else if (tf2xla_fallback_device_type) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    std::unique_ptr<OperationPass<ModuleOp>> CreateTPUResourceReadForWritePass();
    
    // Creates a pass that reorders partitiioned resource reads and replicated
    // inputs.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateTPUReorderReplicateAndPartitionedInputsPass();
    
    // Creates a pass that partitions unpartitioned resource read/write to
    // partitioned resource variables.
    std::unique_ptr<OperationPass<func::FuncOp>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

    // in this function should be on the same host.
    struct FunctionMetadata {
      // The original function name before partition.
      llvm::StringRef original_name;
      // The insertion point of partition functions.
      Block::iterator insertion_point;
      // The partitioned function name.
      llvm::StringRef partition_name;
      // The input values of the function.
      llvm::SmallVector<Value, 4> inputs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tpu_sharding_identification.mlir

    func.func @cluster_func(%arg0: tensor<*xi32>) -> tensor<*xi32> {
      func.return %arg0 : tensor<*xi32>
    }
    
    // -----
    
    // Tests output sharding of unpartitioned resource write takes on same sharding
    // as unpartitioned resource.
    
    // CHECK-LABEL: func @partitioned_input_output
    func.func @partitioned_input_output(%arg0: tensor<!tf_type.resource<tensor<f32>>>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 19:07:52 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

    // which returns a dict of string key -> EITHER:
    // 1. python callable (taking a checkpoint key) returning SaveableObject OR
    // 2. variable (partitioned/resource/reference or otherwise)
    // https://github.com/tensorflow/tensorflow/blob/ddc1bbad3dfd4a089eb96014f26cc16664b1b2f8/tensorflow/python/training/saving/saveable_object.py#L58.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top