Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 63 of 63 for disambiguate (0.25 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    the slice becomes (2, 1, 5, 5, 2, 5).
    Let us walk step by step through each argument specification.
    
    1.  The first argument in the example slice is turned into `begin = 1` and
    `end = begin + 1 = 2`. To disambiguate from the original spec `2:4` we
    also set the appropriate bit in `shrink_axis_mask`.
    
    2. `2:4` is contributes 2, 4, 1 to begin, end, and stride. All masks have
    zero bits contributed.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. RELEASE.md

            `tf.data.Options.experimental_optimization.autotune_buffers`.
        *   Add support for user-defined names of tf.data core Python API, which can
            be used to disambiguate tf.data events in TF Profiler Trace Viewer.
        *   Promote `tf.data.experimental.sample_from_datasets` API to
            `tf.data.Dataset.sample_from_datasets` and deprecate the experimental
            endpoint.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	Param AST
    	Arg   AST
    }
    
    func (tpqa *TemplateParamQualifiedArg) print(ps *printState) {
    	// We only demangle the actual template argument.
    	// That is what the LLVM demangler does.
    	// The parameter disambiguates the argument,
    	// but is hopefully not required by a human reader.
    	ps.print(tpqa.Arg)
    }
    
    func (tpqa *TemplateParamQualifiedArg) Traverse(fn func(AST) bool) {
    	if fn(tpqa) {
    		tpqa.Param.Traverse(fn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top