Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,264 for const1 (0.09 sec)

  1. tensorflow/cc/framework/ops.h

      Operation op() const { return op_; }
      Node* node() const { return op().node(); }
      int32 index() const { return index_; }
      DataType type() const { return op_.output_type(index_); }
      std::string name() const {
        return strings::StrCat(node()->name(), ":", index());
      }
      bool operator==(const Output& other) const {
        return op_ == other.op_ && index_ == other.index_;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/cpp/views/op_view.cc

    }
    
    const std::vector<ArgView>& OpView::Inputs() const { return input_args_; }
    
    const std::vector<ArgView>& OpView::Outputs() const { return output_args_; }
    
    const std::vector<AttrView>& OpView::Attributes() const {
      return argument_attrs_;
    }
    
    const std::vector<OpArgumentView>& OpView::AllArguments() const {
      return all_arguments_;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.cc

    // activations and weights.
    Type GetQuantizedType(Builder builder, const Type input_type,
                          const ArrayRef<double> min, const ArrayRef<double> max,
                          const int quant_dim, const int storage_type_width,
                          const bool narrow_range, const bool is_signed,
                          const bool legacy_float_scale,
                          const bool use_fake_quant_num_bits) {
      auto converter =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      // ParamIterator assumes ownership of the impl_ pointer.
      ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
      ParamIterator& operator=(const ParamIterator& other) {
        if (this != &other)
          impl_.reset(other.impl_->Clone());
        return *this;
      }
    
      const T& operator*() const { return *impl_->Current(); }
      const T* operator->() const { return impl_->Current(); }
      // Prefix version of operator++.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_unified_experimental_graph.cc

                                              g_->graph.NewName(op_name).c_str()));
        return absl::OkStatus();
      }
      const string& Name() const override { return op_type_; }
      const string& DeviceName() const override { return device_name_; }
    
      Status SetDeviceName(const char* name) override {
        // TODO(srbs): Implement this.
        device_name_ = name;
        return absl::OkStatus();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/scope.cc

      return current_constraints;
    }
    
    bool Scope::ok() const { return impl()->status_->ok(); }
    
    Graph* Scope::graph() const { return impl()->graph_.get(); }
    
    std::shared_ptr<Graph> Scope::graph_as_shared_ptr() const {
      return impl()->graph_;
    }
    
    Status Scope::status() const { return *impl()->status_; }
    
    const std::vector<Operation>& Scope::control_deps() const {
      return impl()->control_deps_;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/scope.h

      void UpdateBuilder(NodeBuilder* builder) const;
      // END_SKIP_DOXYGEN
    
      CompositeOpScopes GetCompositeOpScopes(const string& composite_op_name) const;
    
      bool ok() const;
    
      // TODO(skyewm): Graph is not part of public API
      Graph* graph() const;
    
      // TODO(skyewm): Graph is not part of public API
      std::shared_ptr<Graph> graph_as_shared_ptr() const;
    
      Status status() const;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util.cc

    // arguments that are on parameter servers
    bool HasPsWithResourceVariable(const Graph& graph) {
      // Check parameter serverjobs and resource variable arguments that are
      // on parameter servers.
      const std::string jobType = "ps";
      const std::string nodeType = "_Arg";
      const std::string attrKey = "T";
      for (const Node* node : graph.nodes()) {
        if (node->type_string() == nodeType) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 12:22:33 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. docs_src/generate_clients/tutorial004.js

    import * as fs from 'fs'
    
    async function modifyOpenAPIFile(filePath) {
      try {
        const data = await fs.promises.readFile(filePath)
        const openapiContent = JSON.parse(data)
    
        const paths = openapiContent.paths
        for (const pathKey of Object.keys(paths)) {
          const pathData = paths[pathKey]
          for (const method of Object.keys(pathData)) {
            const operation = pathData[method]
            if (operation.tags && operation.tags.length > 0) {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 14 11:40:05 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      function elem(id) {
        const result = document.getElementById(id);
        if (!result) console.warn('element ' + id + ' not found');
        return result;
      }
      const overlay = elem('dialog-overlay');
      const saveDialog = elem('save-dialog');
      const saveInput = elem('save-name');
      const saveError = elem('save-error');
      const delDialog = elem('delete-dialog');
      const delPrompt = elem('delete-prompt');
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top