Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 254 for mspan (0.07 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

      }
    
      absl::StatusOr<xla::Literal> CreateRandomF32Literal(
          absl::Span<const int64_t> dims, float min = -100, float max = 100) {
        TF_ASSIGN_OR_RETURN(auto shape,
                            xla::ShapeUtil::MakeValidatedShape(xla::F32, dims));
        return xla::LiteralUtil::CreateLiteralWithGenerator<xla::F32, float>(
            shape, [this, min, max](absl::Span<const int64_t> dims) -> float {
              return absl::Uniform(bitgen_, min, max);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/node_matchers.cc

    impl::NodeMatcherProperties impl::Inputs(
        absl::Span<const ::testing::Matcher<OutEdge>> inputs) {
      std::vector<::testing::Matcher<OutEdge>> inputs_vector;
      absl::c_copy(inputs, std::back_inserter(inputs_vector));
    
      impl::NodeMatcherProperties props;
      props.set_inputs(std::move(inputs_vector));
      return props;
    }
    
    impl::NodeMatcherProperties impl::CtrlDeps(
        absl::Span<const ::testing::Matcher<const Node*>> control_deps) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 03 16:15:20 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.cc

    absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>>
    SavedModelObjectGraphToMlirImport(absl::string_view saved_model_dir,
                                      const std::unordered_set<std::string>& tags,
                                      absl::Span<std::string> exported_names,
                                      mlir::MLIRContext* context,
                                      bool unconditionally_use_set_output_shapes) {
      tensorflow::SavedModelV2Bundle bundle;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 11:51:44 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. JavadocStyleGuide.md

     * </code></pre>
     */
    ```
    
    In order to label the coding language used in the multi-line snippet, you can use additional HTML, `<div class="code-block"><span class="label">Groovy</span>...</div>`:
    
    ```java
    /**
     * <div class="code-block">
     * <span class="label">Groovy</span>
     * <pre><code class="language-groovy">
     * defaultTasks('some-task')
     * reportsDir = file('reports')
     * </code></pre>
     * </div>
     */
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. docs/de/docs/advanced/behind-a-proxy.md

    Um dies zu erreichen, können Sie die Kommandozeilenoption `--root-path` wie folgt verwenden:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --root-path /api/v1
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Falls Sie Hypercorn verwenden, das hat auch die Option `--root-path`.
    
    !!! note "Technische Details"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:30:07 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. docs/zh/docs/advanced/behind-a-proxy.md

    ### 提供 `root_path`
    
    为此,要以如下方式使用命令行选项 `--root-path`:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --root-path /api/v1
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Hypercorn 也支持 `--root-path `选项。
    
    !!! note "技术细节"
    
        ASGI 规范定义的 `root_path` 就是为了这种用例。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. tensorflow/c/eager/parallel_device/parallel_device_lib.h

    #define TENSORFLOW_C_EAGER_PARALLEL_DEVICE_PARALLEL_DEVICE_LIB_H_
    
    #include <memory>
    #include <optional>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "absl/types/optional.h"
    #include "absl/types/span.h"
    #include "absl/types/variant.h"
    #include "tensorflow/c/c_api.h"
    #include "tensorflow/c/eager/c_api.h"
    #include "tensorflow/c/eager/c_api_experimental.h"
    #include "tensorflow/c/eager/tfe_op_internal.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 25 15:21:13 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/plugin/admin_plugin.jsp

                                                                                        aria-label="Close">
                                                                                    <span aria-hidden="true">×</span>
                                                                                </button>
                                                                            </div>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 10.5K bytes
    - Viewed (0)
  9. src/internal/trace/event/go122/event.go

    // Experimental events.
    const (
    	_ event.Type = 127 + iota
    
    	// Experimental events for AllocFree.
    
    	// Experimental heap span events. Added in Go 1.23.
    	EvSpan      // heap span exists [timestamp, id, npages, type/class]
    	EvSpanAlloc // heap span alloc [timestamp, id, npages, type/class]
    	EvSpanFree  // heap span free [timestamp, id]
    
    	// Experimental heap object events. Added in Go 1.23.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

            int size = section.errors.size();
            contents.append("<a class=\"uk-accordion-title\" href=\"#\"><span uk-icon=\"chevron-right\"></span>").append(section.title)
                .append("&nbsp;<span class=\"uk-badge\">")
                .append(size)
                .append(size < 2 ? " error" : " errors")
                .append("</span></a>");
        }
    
        private void renderSection(Section section) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top