Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for pushBack (0.21 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // each with STL strings with values "a" and "b":
    //
    // ::std::vector< ::std::string> GetParameterStrings() {
    //   ::std::vector< ::std::string> v;
    //   v.push_back("a");
    //   v.push_back("b");
    //   return v;
    // }
    //
    // INSTANTIATE_TEST_CASE_P(CharSequence,
    //                         StlStringTest,
    //                         ValuesIn(GetParameterStrings()));
    //
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_function_test.cc

    const char* kNegStackToString = "File \"neg.cc\", line 15, in beta";
    
    std::vector<IOSpec> M(const std::initializer_list<string>& names) {
      std::vector<IOSpec> v;
      for (const string& name : names) {
        v.push_back(IOSpec(name, DT_INVALID));
      }
      return v;
    }
    
    // Specification for an expected edge.
    // src is either:
    // - input name (as it appears in FunctionDef)
    // - name of output tensor (in nested "add:z:0" format)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // each with STL strings with values "a" and "b":
    //
    // ::std::vector< ::std::string> GetParameterStrings() {
    //   ::std::vector< ::std::string> v;
    //   v.push_back("a");
    //   v.push_back("b");
    //   return v;
    // }
    //
    // INSTANTIATE_TEST_CASE_P(CharSequence,
    //                         StlStringTest,
    //                         ValuesIn(GetParameterStrings()));
    //
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/deadness_analysis_test.cc

      scope.UpdateStatus(builder.Finalize(scope.graph(), &ret));
      if (!scope.ok()) return;
      scope.UpdateStatus(scope.DoShapeInference(ret));
      for (int32_t i = 0; i < ret->num_outputs(); ++i) {
        outputs->push_back(Output(ret, i));
      }
    }
    
    TEST(DeadnessAnalysisTest, Constant1_SwitchN_2Branches_DoesNotFail) {
      Scope root = Scope::NewRootScope().ExitOnError();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

                 .getValues<float>()) {
          // (s1 * s2) * (1 / s1) = s2
          // UniformQuantizedPerAxisType requires scales to have double dtype.
          filter_scale_values.push_back(
              static_cast<double>(merged_scale * input_inverse_scale_value));
        }
    
        SmallVector<int64_t> filter_zero_point_values(
            /*Size=*/filter_scale_values.size(), /*Value=*/0);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

            SmallVectorImpl<func::FuncOp> &functions) {
          functions.reserve(num_branches());
          for (int idx : llvm::seq<int>(0, num_branches()))
            functions.push_back(ResolveBranchFunction(table, idx));
        }
        // TODO(b/204997177): Deprecate and remove.
        void get_branch_functions(SmallVectorImpl<func::FuncOp> &functions) {
          return ResolveBranchFunctions(nullptr, functions);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top