Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 660 for stdx (0.04 sec)

  1. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      static void InitializeTestRNG() {
        std::random_device rd;
        std::mt19937 gen(rd());
        std::uniform_int_distribution<> distribution;
        rng_val_ = distribution(gen);
      }
    
      static void SetCloudPath(const std::string& cloud_path) {
        cloud_path_ = cloud_path;
        if (cloud_path_.back() == '/') cloud_path_.pop_back();
      }
    
      static void SetTmpDir(const std::string& tmp_dir) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_compilation_cache.h

      // corresponding `request_count`. Only arguments that are not std::nullopt are
      // updated in the cache.
      void Store(const Key& key, std::optional<DeviceCompileState> compile_state,
                 std::optional<Status> compilation_status,
                 std::optional<std::unique_ptr<XlaCompiler::CompilationResult>>
                     compilation_result,
                 std::optional<std::unique_ptr<ExecutableType>> executable);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/tensorflow/utils/tpu_cluster_util.cc

      SymbolTableCollection symbol_table;
      // List pending nodes to traverse with their root TPU cluster.
      llvm::SmallVector<std::pair<CallGraphNode*, tf_device::ClusterOp>>
          pending_call_nodes;
      // Cache the host device for each TPU cluster.
      std::unordered_map<Operation*, std::optional<std::string>> cluster_to_host;
    
      auto insert_pending_op = [&](Operation* op,
                                   tf_device::ClusterOp tpu_cluster) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. tensorflow/cc/gradients/array_grad.cc

                        const std::vector<Output>& grad_inputs,
                        std::vector<Output>* grad_outputs) {
      grad_outputs->push_back(Identity(scope, grad_inputs[0]));
      return scope.status();
    }
    REGISTER_GRADIENT_OP("Identity", IdentityGrad);
    
    Status RefIdentityGrad(const Scope& scope, const Operation& op,
                           const std::vector<Output>& grad_inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/jit/node_matchers.cc

          }
        }
        return false;
      }
    
      std::optional<string> op;
      std::optional<string> name;
      std::optional<string> assigned_device;
      std::optional<Tensor> constant_value;
      std::optional<std::vector<::testing::Matcher<OutEdge>>> input_matchers;
      std::optional<::testing::Matcher<absl::Span<const Node* const>>>
          control_dep_set;
      std::map<string, std::optional<AttrValue>> attrs;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 03 16:15:20 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/signature_def_function_metadata.cc

    namespace tensorflow {
    
    SignatureDefParam::SignatureDefParam(std::string name, TensorSpec spec)
        : name_(std::move(name)), spec_(std::move(spec)) {}
    
    const std::string& SignatureDefParam::name() const { return name_; }
    
    const TensorSpec& SignatureDefParam::spec() const { return spec_; }
    
    SignatureDefFunctionMetadata::SignatureDefFunctionMetadata(
        std::vector<SignatureDefParam> arguments,
        std::vector<SignatureDefParam> returns)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 29 23:11:59 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/target_hardware.cc

          hardwares_ops =
              []() -> std::vector<std::unique_ptr<RegisteredTargetHardwareOps>>* {
        return new std::vector<std::unique_ptr<RegisteredTargetHardwareOps>>();
      }();
      return hardwares_ops;
    }
    
    std::vector<RegisteredTargetHardware>* GetRegisteredHardwares() {
      static std::vector<RegisteredTargetHardware>* hardwares =
          []() -> std::vector<RegisteredTargetHardware>* {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 21:39:59 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top