Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for pushBack (0.14 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

              is_xla_compile_attr_true_(is_xla_compile_attr_true),
              xla_scope_(std::move(xla_scope)) {
          if (resource_var_operation_node_id.has_value()) {
            resource_var_operation_node_ids_.push_back(
                *resource_var_operation_node_id);
          }
        }
    
        // Merges `other` into this cluster, and clears `other`.  This method is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    // `testing::InitGoogleTest` gets called, here we just store them to an
    // internal scheme registry. See `URISchemeRegister` above.
    static bool GetURIScheme(const std::string& scheme) {
      tensorflow::SchemeVector()->push_back(scheme);
      return true;
    }
    
    // This function is used for cloud filesystem
    // `S3` and `GCS` require the `root_dir_` to have bucket name
    // `HDFS` requires the `root_dir` to have namenode
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  8. 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