Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TR1 (0.02 sec)

  1. tensorflow/compiler/jit/clone_constants_for_better_clustering_test.cc

        Output tr1 = ops::Transpose(on_gpu.WithOpName("tr1"), in1, perm);
      }
    
      std::unique_ptr<Graph> result;
      TF_ASSERT_OK(CloneConstantsForBetterClustering(root, &result));
    
      OutputTensor tr0_perm;
      TF_ASSERT_OK(FindNodeByName(result.get(), "tr0")->input_tensor(1, &tr0_perm));
    
      OutputTensor tr1_perm;
      TF_ASSERT_OK(FindNodeByName(result.get(), "tr1")->input_tensor(1, &tr1_perm));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    template <typename T>
    struct ByRef<T&> { typedef T& type; };  // NOLINT
    
    // A handy wrapper for ByRef.
    #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
    
    // AddRef<T>::type is T if T is a reference; otherwise it's T&.  This
    // is the same as tr1::add_reference<T>::type.
    template <typename T>
    struct AddRef { typedef T& type; };  // NOLINT
    template <typename T>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

    $range i 2..maxtuple
    $for i [[
    $range j 1..i
    $range k 2..i
    
    template <$for j, [[typename T$j]]>
    class CartesianProductGenerator$i
        : public ParamGeneratorInterface< ::std::tr1::tuple<$for j, [[T$j]]> > {
     public:
      typedef ::std::tr1::tuple<$for j, [[T$j]]> ParamType;
    
      CartesianProductGenerator$i($for j, [[const ParamGenerator<T$j>& g$j]])
          : $for j, [[g$(j)_(g$j)]] {}
      virtual ~CartesianProductGenerator$i() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

      // These are needed as the Nokia Symbian Compiler cannot decide between
      // const T& and const T* in a function template. The Nokia compiler _can_
      // decide between class template specializations for T and T*, so a
      // tr1::type_traits-like is_pointer works, and we can overload on that.
      template <typename T>
      inline void StreamHelper(internal::true_type /*is_pointer*/, T* pointer) {
        if (pointer == NULL) {
          *ss_ << "(null)";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top