Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for elide (0.28 sec)

  1. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

      'main' entry-point, separating tensors with ':', dimension with ',', and
      using '?' for unknown sizes. For example, `input-arg-shapes=1,2::1,?`
      expresses argument shapes `[1,2]`, `[]` and `[1,?]`.
    * `--e`: Elide large elements attrs while dumping the output StableHLO.
    * `--output_filename`: Path to the output file where the textual StableHLO MLIR
      module will be written (default: stdout).
    
    
    ### Examples
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo_translate.cc

                       "Ignored for MLIR input"),
        llvm::cl::Optional, llvm::cl::init("serve"));
    
    // NOLINTNEXTLINE
    opt<bool> elide_large_elements_attrs(
        "e",
        llvm::cl::desc(
            "Elide large elements attrs while dumping the output StableHLO."),
        llvm::cl::Optional, llvm::cl::init(false));
    
    }  // namespace
    
    namespace mlir {
    
    namespace {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. src/internal/trace/raw/doc.go

    The trailer begins on the following line from the event. That line consists
    of a single argument 'data' and a Go-quoted string representing the byte data
    within. Note: an explicit argument for the length is elided, because it's
    just the length of the unquoted string.
    
    For example:
    
    	String id=5
    		data="hello world\x00"
    
    These events are identified in their spec by the HasData flag.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. docs/tr/docs/python-types.md

    Ardından, programcıların en iyi arkadaşı olan otomatik tamamlama ile denediniz.
    
    'first_name', ardından bir nokta ('.') yazıp otomatik tamamlamayı tetiklemek için 'Ctrl+Space' tuşlarına bastınız.
    
    Ancak, ne yazık ki, yararlı hiçbir şey elde edemediniz:
    
    <img src="/img/python-types/image01.png">
    
    ### Tipleri ekle
    
    Önceki sürümden sadece bir satırı değiştirelim.
    
    Tam olarak bu parçayı, işlevin parametrelerini  değiştireceğiz:
    
    ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. src/internal/buildcfg/exp.go

    	}
    	return flags, nil
    }
    
    // String returns the canonical GOEXPERIMENT string to enable this experiment
    // configuration. (Experiments in the same state as in the baseline are elided.)
    func (exp *ExperimentFlags) String() string {
    	return strings.Join(expList(&exp.Flags, &exp.baseline, false), ",")
    }
    
    // expList returns the list of lower-cased experiment names for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:38:52 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/main/resources/footer.html

            }
    
            // Only scroll if the device is a desktop.
            //
            // Mobile's `docs-navigation` is always at bottom of `content`,
            // so we should not slide down to where `docs-navigation` lays.
            if (desktopMediaQuery.matches) {
                // Scroll to center of the page
                link.scrollIntoView({behavior: 'auto', block: 'center', inline: 'center'})
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. src/html/template/doc.go

    # Introduction
    
    This package wraps [text/template] so you can share its template API
    to parse and execute HTML templates safely.
    
    	tmpl, err := template.New("name").Parse(...)
    	// Error checking elided
    	err = tmpl.Execute(out, data)
    
    If successful, tmpl will now be injection-safe. Otherwise, err is an error
    defined in the docs for ErrorCode.
    
    HTML templates treat data values as plain text which should be encoded so they
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top