Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for le (0.18 sec)

  1. ci/official/containers/linux_arm64/devel.usertools/wheel_verification.bats

        # https://bats-core.readthedocs.io/en/stable/writing-tests.html#printing-to-the-terminal
        echo "# Size of $TF_WHEEL is $WHEEL_MEGABYTES / $LARGEST_OK_SIZE megabytes." >&3
        test "$WHEEL_MEGABYTES" -le "$LARGEST_OK_SIZE"
    }
    
    # Note: this runs before the tests further down the file, so TF is installed in
    # the venv and the venv is active when those tests run. The venv gets cleaned
    # up in teardown_file() above.
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Jan 23 02:14:00 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache_test.cc

      out->clear();
      out->resize(n, 0);
      TF_Status status;
      auto bytes_transferred =
          cache->Read(filename, offset, n, out->data(), &status);
      if (bytes_transferred >= 0) {
        EXPECT_LE(bytes_transferred, n);
        out->resize(bytes_transferred, n);
      }
      return status.status;
    }
    
    TEST(RamFileBlockCacheTest, IsCacheEnabled) {
      auto fetcher = [](const string& filename, size_t offset, size_t n,
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Oct 15 03:16:57 GMT 2021
    - 23.2K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_test.cc

      EXPECT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      for (int i = 0; i < 2; ++i) {
        int le = list_lens[i];
        int la = values[i]->length;
        const void* e = list_ptrs[i];
        const void* a = values[i]->data;
        EXPECT_EQ(le, la) << i;
        EXPECT_EQ(0, memcmp(e, a, std::min(le, la))) << i;
        TF_DeleteBuffer(values[i]);
      }
    }
    
    TEST_F(CApiAttributesTest, Tensor) {
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  4. RELEASE.md

    Weinmeister, Karthik Muthuraman, Kashif Rasul, Kay Zhu, Kbhute-Ibm, KDR, Keno
    Fischer, Kevin Mader, khanhlvg, Kilaru Yasaswi Sri Chandra Gandhi, Koan-Sin Tan,
    Koock Yoon, kouml, ktaebum, Kyuwon Kim, Lakshay Tokas, Laurent Le Brun,
    leike666666, leonard951, Leslie-Fang, Letian Kang, Li, Guizi, Loo Rong Jie,
    Lucas Hendren, Lukas Folle, Lukas Geiger, Luke Han, luxupu, lvli, Ma, Guokai,
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Apr 03 20:27:38 GMT 2024
    - 727.4K bytes
    - Viewed (8)
  5. tensorflow/c/c_api.cc

        Node* new_node = parent->graph.FindNodeId(i);
        if (new_node == nullptr) continue;
        parent->name_map[new_node->name()] = new_node;
      }
    
      // Populate 'outputs'.
      DCHECK_LE(loop_outputs.size(), num_loop_vars);
      for (int i = 0; i < loop_outputs.size(); ++i) {
        outputs[i] = {ToOperation(loop_outputs[i].node()), loop_outputs[i].index()};
      }
    }
    
    }  // namespace
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
Back to top