Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for pbdoc (0.03 sec)

  1. tensorflow/compiler/mlir/lite/python/converter_python_api_wrapper.cc

          },
          R"pbdoc(
          Returns and clears the list of collected errors in ErrorCollector.
        )pbdoc");
      m.def(
          "FlatBufferToMlir",
          [](const std::string& model, bool input_is_filepath) {
            return tflite::FlatBufferFileToMlir(model, input_is_filepath);
          },
          R"pbdoc(
          Returns MLIR dump of the given TFLite model.
        )pbdoc");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization.cc

      m.def("populate_default_configs", &PywrapPopulateDefaults,
            R"pbdoc(
            Populates `QuantizationConfig` with default values.
    
            Returns an updated `QuantizationConfig` (serialized) after populating
            default values to fields that the user did not explicitly specify.
            )pbdoc",
            py::arg("user_provided_config_serialized"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 13:51:40 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper/tac_wrapper_pybind11.cc

             const std::string& model_output_path) {
            return ::tflite::run_tac(model_file_path, device_specs,
                                     model_output_path);
          },
          R"pbdoc(
        Run target-aware-conversion with the given device specs.
      )pbdoc");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_quantize_model.cc

            }
            py_function_library.SaveExportedModel(
                dst_saved_model_path, *exported_model, src_saved_model_path, tags,
                signature_def_map);
    
            return absl::OkStatus();
          },
          R"pbdoc(
          Quantizes a model that went through quantization-aware training (QAT)
          saved at `src_saved_model_path`. The resulting model will be saved to
          `dst_saved_model_path`. Returns an OK sataus when successful, otherwise
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/pywrap_tensorflow_to_stablehlo.cc

                              module_bytecode.status().ToString().c_str());
              throw py::error_already_set();
            }
            return py::bytes(module_bytecode.value());
          },
          R"pbdoc(
            Converts a TensorFlow SavedModel into StableHLO bytecode.
    
            * input-path: The path to the input TensorFlow SavedModel.
            * exported-model-signatures: Comma-separated list of exported model
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. cmd/site-replication.go

    			return errSRBackendIssue(err)
    		}
    
    		for pname, pdoc := range allPolicyDocs {
    			policyJSON, err := json.Marshal(pdoc.Policy)
    			if err != nil {
    				return wrapSRErr(err)
    			}
    			err = c.IAMChangeHook(ctx, madmin.SRIAMItem{
    				Type:      madmin.SRIAMItemPolicy,
    				Name:      pname,
    				Policy:    policyJSON,
    				UpdatedAt: pdoc.UpdateDate,
    			})
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top