Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for childAt (0.25 sec)

  1. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

                                                          "a_dir", "another_dir"};
      EXPECT_EQ(children.size(), filenames.size() + dirnames.size());
      for (const auto& child : expected_children)
        EXPECT_NE(std::find(children.begin(), children.end(), child),
                  children.end());
    }
    
    TEST_P(ModularFileSystemTest, TestGetChildrenEmpty) {
      const std::string dirpath = GetURIForPath("dir");
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 27 20:25:58 GMT 2022
    - 71K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.cc

        mutex_lock graph_lock(g->mu);
    
        const int first_new_node_id = g->graph.num_node_ids();
    
        string prefix_cmp;
        const char* child_scope_name;
        if (prefix == nullptr) {
          child_scope_name = "gradients";
        } else {
          prefix_cmp = string(prefix) + "/";
          // The operation should fail if the provided name prefix has already been
          // used in this graph
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  3. configure.py

          var_name='ANDROID_NDK_HOME',
          var_default=default_ndk_path,
          ask_for_var='Please specify the home path of the Android NDK to use.',
          check_success=valid_ndk_path,
          error_msg=('The path %s or its child file "source.properties" '
                     'does not exist.'))
      write_action_env_to_bazelrc('ANDROID_NDK_HOME', android_ndk_home_path)
      write_action_env_to_bazelrc(
          'ANDROID_NDK_API_LEVEL',
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  4. tensorflow/c/eager/abstract_tensor_handle.h

      // Returns tensor (full) type.
      // While there is no immediate plan to deprecate dtype and shape in favor
      // of only using full type type information, this is a future possibility.
      //
      // Note that map_dtype_to_child_of_tensor() from core/framework/types.h
      // can be used to set a FullTypeDef based on dtype in a derived class if
      // appropriate.
      virtual tensorflow::FullTypeDef FullType() const = 0;
    
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Mar 03 00:30:36 GMT 2023
    - 3K bytes
    - Viewed (0)
Back to top