Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 650 for bundles (0.1 sec)

  1. tensorflow/compiler/mlir/lite/quantization/stablehlo/quantization_test.cc

      ASSERT_THAT(tmp_saved_model_dir, IsOk());
    
      // Dummy SavedModelBundle to pass a non-nullptr argument.
      SavedModelBundle bundle{};
      QuantizationConfig config;
      const absl::StatusOr<mlir::ModuleOp> quantized_module_op = RunQuantization(
          /*saved_model_bundle=*/&bundle, *tmp_saved_model_dir,
          /*saved_model_tags=*/{}, config,
          /*quantization_py_function_lib=*/nullptr, /*module_op=*/{});
      EXPECT_THAT(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. tests/fuzz/pki_fuzzer.go

    	if err != nil {
    		return 0
    	}
    	_, err = rootCertFile.Write(rootCertFileBytes)
    	if err != nil {
    		return 0
    	}
    	bundle, err := util.NewVerifiedKeyCertBundleFromFile("certfile", "privKeyFile", []string{"certChainFile"}, "rootCertFile")
    	if err != nil {
    		return 0
    	}
    	_, err = bundle.CertOptions()
    	if err == nil {
    		panic("Ran successfully")
    	}
    
    	newCertFile, err := os.Create("newCertfile")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 05 14:00:25 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. platforms/software/plugins-version-catalog/src/integTest/groovy/org/gradle/catalog/VersionCatalogIntegrationTest.groovy

            buildFile << """
                plugins {
                    id("version-catalog")
                }
    
                catalog {
                    versionCatalog {
                        bundle('my', ['foo', 'bar'])
                    }
                }
                dependencies {
                    versionCatalog 'org:foo:1.0'
                    versionCatalog('org:bar') {
                        version {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import.cc

                                              import_options, &bundle);
      if (!module_op.status().ok()) {
        return absl::InternalError(absl::StrCat("Failed to import SavedModel: ",
                                                module_op.status().ToString()));
      }
    
      return std::make_pair(std::move(*module_op), std::move(bundle));
    }
    
    absl::StatusOr<absl::flat_hash_map<FunctionName, FunctionAlias>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. docs/features/r8_proguard.md

    R8 / ProGuard
    =============
    
    If you use OkHttp as a dependency in an Android project which uses R8 as a default compiler you
    don't have to do anything. The specific rules are [already bundled][okhttp3_pro] into the JAR which can be
    interpreted by R8 automatically.
    
    If you, however, don't use R8 you have to apply the rules from [this file][okhttp3_pro]. You might
    also need rules from [Okio][okio] which is a dependency of this library.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 607 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/readme-templates/application-summary.adoc.template

    * Run the build and view the test report
    * Execute a ${language.raw} application using the `run` task from the `application` plugin
    * Bundle the application in an archive
    
    == Next steps
    
    To learn more about how you can further customize ${language.raw} application projects, check out the following user manual chapters:
    
     - link:{userManualPath}/building_java_projects.html[Building Java & JVM projects]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 493 bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/pjrt_base_device.h

        // (e.g., "XLA_CPU_JIT");
        std::string compilation_device_name;
    
        // A vector of ShapeDeterminationFn (i.e., a bundle of LayoutSelectionFn,
        // ShapeRepresentationFn). Each bundle describes how the on-host shapes of
        // a) argument and return value, for entry computations b) variables, for
        // all computations, should be represented in XLA. Parameters/return values
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_island_coarsening/BUILD

    licenses(["notice"])
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "@llvm-project//mlir:run_lit.sh",
        test_file_exts = [
            "mlir",
            "pbtxt",
        ],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir:tf-opt",
            "@llvm-project//llvm:FileCheck",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 694 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_outline_island/BUILD

    licenses(["notice"])
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "@llvm-project//mlir:run_lit.sh",
        test_file_exts = [
            "mlir",
            "pbtxt",
        ],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir:tf-opt",
            "@llvm-project//llvm:FileCheck",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 694 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf_to_hlo_pipeline/BUILD

    licenses(["notice"])
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "@llvm-project//mlir:run_lit.sh",
        test_file_exts = [
            "mlir",
            "pbtxt",
        ],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir:tf-opt",
            "@llvm-project//llvm:FileCheck",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 694 bytes
    - Viewed (0)
Back to top