Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,953 for impl_ (0.06 sec)

  1. tensorflow/compiler/jit/resource_operation_safety_analysis.cc

        }
    
        EnsureIsCopied();
        impl_->insert(resource_op);
      }
    
      Impl::const_iterator begin() const {
        return impl_ ? impl_->begin() : GetEmptyImpl()->begin();
      }
    
      Impl::const_iterator end() const {
        return impl_ ? impl_->end() : GetEmptyImpl()->end();
      }
    
      bool Contains(const ResourceOp& resource_op) const {
        return impl_ != nullptr && impl_->count(resource_op);
      }
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      explicit ParamGenerator(ParamGeneratorInterface<T>* impl) : impl_(impl) {}
      ParamGenerator(const ParamGenerator& other) : impl_(other.impl_) {}
    
      ParamGenerator& operator=(const ParamGenerator& other) {
        impl_ = other.impl_;
        return *this;
      }
    
      iterator begin() const { return iterator(impl_->Begin()); }
      iterator end() const { return iterator(impl_->End()); }
    
     private:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      explicit ParamGenerator(ParamGeneratorInterface<T>* impl) : impl_(impl) {}
      ParamGenerator(const ParamGenerator& other) : impl_(other.impl_) {}
    
      ParamGenerator& operator=(const ParamGenerator& other) {
        impl_ = other.impl_;
        return *this;
      }
    
      iterator begin() const { return iterator(impl_->Begin()); }
      iterator end() const { return iterator(impl_->End()); }
    
     private:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. tensorflow/cc/client/client_session.h

      /// session.
      /// NOTE: This API is still experimental and may change.
      Status ReleaseCallable(CallableHandle handle);
    
     private:
      class Impl;
      std::unique_ptr<Impl> impl_;
      Impl* impl() { return impl_.get(); }
      const Impl* impl() const { return impl_.get(); }
    };
    
    /// @}
    
    }  // end namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 20 08:11:46 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/scope.cc

    namespace tensorflow {
    
    Scope::Scope(Impl* impl) : impl_(impl) {}
    
    Scope::Scope(const Scope& other) : impl_(new Impl(*other.impl())) {}
    
    Scope::~Scope() {}
    
    Scope& Scope::operator=(const Scope& other) {
      // We can't copy Impls because of the const members, use copy ctor instead
      impl_.reset(new Impl(*other.impl_));
      return *this;
    }
    
    namespace {
    const char kScopeSeparator[] = "/";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/scope.h

      // START_SKIP_DOXYGEN
      class Impl;
      Impl* impl() { return impl_.get(); }
      const Impl* impl() const { return impl_.get(); }
      // END_SKIP_DOXYGEN
    
     private:
      Scope WithOpNameImpl(const string& op_name) const;
    
      friend class InternalScope;
      std::unique_ptr<Impl> impl_;
      explicit Scope(Impl*);
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. tensorflow/cc/client/client_session.cc

      TF_CHECK_OK(status) << status;
      impl_.reset(new Impl(new_session, scope.graph_as_shared_ptr()));
      CHECK_NOTNULL(impl()->session_.get());
    }
    
    // Define destructor here so we can forward declare `Impl` in client_session.h.
    // If we define a dtor in the header file or use the default dtor,
    // unique_ptr<Impl> needs the complete type.
    ClientSession::~ClientSession() {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 09:04:10 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      TestCase* GetMutableTestCase(int i);
    
      // Accessors for the implementation object.
      internal::UnitTestImpl* impl() { return impl_; }
      const internal::UnitTestImpl* impl() const { return impl_; }
    
      // These classes and functions are friends as they need to access private
      // members of UnitTest.
      friend class Test;
      friend class internal::AssertHelper;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      TestCase* GetMutableTestCase(int i);
    
      // Accessors for the implementation object.
      internal::UnitTestImpl* impl() { return impl_; }
      const internal::UnitTestImpl* impl() const { return impl_; }
    
      // These classes and functions are friends as they need to access private
      // members of UnitTest.
      friend class Test;
      friend class internal::AssertHelper;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/tests/composite-lowering.mlir

      %1 = "tf.Identity"(%0) {device = ""} : (tensor<2xf32>) -> tensor<*xf32>
      %2 = "tf.Identity"(%1) {device = ""} : (tensor<*xf32>) -> tensor<*xf32>
      return %2 : tensor<*xf32>
    }
    func.func private @XlaCallModule_aten.hardswish.default.impl_0(%arg0: tensor<2xf32>) -> tensor<2xf32> {
      %0 = mhlo.constant dense<6.000000e+00> : tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top