Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 343 for stdx (0.04 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/io.cc

      }
    }
    
    absl::StatusOr<std::vector<std::string>> ListDirectory(
        absl::string_view directory) {
      std::vector<std::string> children;
      TF_RETURN_IF_ERROR(
          tsl::Env::Default()->GetChildren(std::string(directory), &children));
      return children;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    GTEST_API_ void PrintStringTo(const ::std::string&s, ::std::ostream* os);
    inline void PrintTo(const ::std::string& s, ::std::ostream* os) {
      PrintStringTo(s, os);
    }
    
    // Overloads for ::wstring and ::std::wstring.
    #if GTEST_HAS_GLOBAL_WSTRING
    GTEST_API_ void PrintWideStringTo(const ::wstring&s, ::std::ostream* os);
    inline void PrintTo(const ::wstring& s, ::std::ostream* os) {
      PrintWideStringTo(s, os);
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/gradients.cc

      std::unordered_set<int> GetStopBackpropNodes(
          const std::vector<bool>& reachable_nodes,
          const std::unordered_set<int>& output_nodes) const;
    
      const Scope& scope_;
      const ops::GradOpRegistry* registry_;
      const std::vector<Output>& outputs_;
      const std::vector<Output>& inputs_;
      const std::vector<Output>& grad_inputs_;
      std::vector<Output>* grad_outputs_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/kernels/xla_ops.cc

              const absl::flat_hash_map<std::string, std::string>& frontend_attrs)
              -> absl::StatusOr<tsl::AsyncValueRef<std::unique_ptr<se::Event>>> {
            auto iter = frontend_attrs.find("_xla_host_transfer_rendezvous");
    
            // Generate the Rendezvous key.
            const std::string& rendezvous_key_base =
                absl::StrCat(program_key, iter->second);
    
            const std::string& dst_device = ctx->device()->name();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.cc

    }
    
    absl::StatusOr<std::optional<SaverDef>> CreateSaverDef(
        const std::vector<std::string>& control_ret_node_names,
        const GraphDef& graph_def) {
      const std::string filename_tensor_name = FindFilePrefixTensorName(graph_def);
      const std::string restore_op_name =
          GetNodeName(control_ret_node_names, kTfSavedModelInitializerRestoreType);
      const std::string save_node_name =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/util.cc

    namespace tensorflow {
    namespace saved_model {
    
    std::string GetWriteVersion(const SavedModel& saved_model) {
      if (saved_model.meta_graphs_size() == 1 &&
          saved_model.meta_graphs()[0].has_object_graph_def()) {
        return "2";
      }
      return "1";
    }
    
    std::set<std::string> GetMapKeys(
        const ::google::protobuf::Map<std::string, ::tensorflow::TensorProto>& map) {
      std::set<std::string> keys;
      for (const auto& it : map) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 10 10:25:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_launch_util.cc

    Status PreparePjRtExecutableArguments(
        int num_missing_prefix_ctx_inputs, const std::vector<int>& input_mapping,
        const std::vector<const Tensor*>& inputs,
        const absl::flat_hash_map<int, const Tensor*>& variable_snapshots,
        xla::PjRtClient* pjrt_client, xla::PjRtDevice* pjrt_device,
        bool use_pjrt_tensor_buffer, std::vector<xla::PjRtBuffer*>* args,
        std::vector<std::unique_ptr<xla::PjRtBuffer>>* owned_args,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/python/flatbuffer_to_mlir.cc

      const llvm::MemoryBuffer* input =
          source_mgr->getMemoryBuffer(source_mgr->getMainFileID());
      std::string error;
      auto loc =
          mlir::FileLineColLoc::get(context, input->getBufferIdentifier(), 0, 0);
      std::vector<std::string> inputs;
      std::vector<std::string> outputs;
      return tflite::FlatBufferToMlir(
          absl::string_view(input->getBufferStart(), input->getBufferSize()),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op_test.cc

    TEST_F(CalibrationStatisticsSaverTest, SimpleMinMax) {
      std::vector<std::string> ids{"1"};
      std::vector<int32_t> calibration_methods{
          CalibrationOptions::CALIBRATION_METHOD_MIN_MAX};
    
      std::vector<NodeDefBuilder::NodeOut> inputs;
      inputs.emplace_back("min", 0, DT_FLOAT);
      inputs.emplace_back("max", 0, DT_FLOAT);
      inputs.emplace_back("histogram", 0, DT_INT64);
    
      const std::string dir = testing::TmpDir();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.cc

        const absl::string_view src_saved_model_path,
        absl::flat_hash_map<FunctionName, FunctionAlias> function_aliases,
        std::unordered_set<std::string> tags,
        absl::flat_hash_map<std::string, SignatureDef> signature_def_map,
        std::vector<std::string> signature_keys)
        : ctx_(ABSL_DIE_IF_NULL(ctx)),                          // Crash OK
          py_function_lib_(ABSL_DIE_IF_NULL(py_function_lib)),  // Crash OK
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top