Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Goulden (0.17 sec)

  1. tensorflow/c/c_api.cc

      tensorflow::core::CppShapeInferenceResult::HandleData handle_data;
      if (!handle_data.ParseFromArray(proto, proto_len)) {
        status->status =
            absl::InvalidArgumentError("Couldn't deserialize HandleData proto");
        return;
      }
      DCHECK(handle_data.is_set());
    
      tensorflow::mutex_lock l(graph->mu);
      tensorflow::shape_inference::InferenceContext* ic =
    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)
  2. ci/official/utilities/setup.sh

    set -euxo pipefail -o history -o allexport
    
    # Set TFCI_GIT_DIR, the root directory for all commands, to two directories
    # above the location of this file (setup.sh). We could also use "git rev-parse
    # --show-toplevel", but that wouldn't work for non-git repos (like if someone
    # downloaded TF as a zip archive).
    export TFCI_GIT_DIR=$(cd $(dirname "$0"); realpath ../../)
    cd "$TFCI_GIT_DIR"
    
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Jan 26 00:33:34 GMT 2024
    - 5.2K bytes
    - Viewed (1)
  3. ci/official/utilities/extract_resultstore_links.py

        line_str = f'Invocation #{i} ({invocation_results["status"]}):\n'
        command = invocation_results.get('command')
        if command:
          line_str += command
        else:
          line_str += ('Couldn\'t parse the bazel command, '
                       'check inside the build log instead')
        line_str += f'\n{url}\n'
        print(line_str)
        i += 1
    
    
    def main():
      args = parse_args()
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Nov 08 17:50:27 GMT 2023
    - 10.9K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.h

    // CppShapeInferenceResult::HandleData proto. `output` should be a resource
    // or variant tensor.
    // NOTE(skyewm): `proto` is passed a void*/size_t pair instead of a std::string
    // because I couldn't get SWIG to work otherwise.
    TF_CAPI_EXPORT extern void TF_SetHandleShapeAndType(TF_Graph* graph,
                                                        TF_Output output,
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  5. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// and `*undeleted_dirs` must be 0. On unsuccessful deletion, `status` must
      /// be set to the reason why one entry couldn't be removed and the proper
      /// count must be updated. If the deletion is unsuccessful because the
      /// traversal couldn't start, `*undeleted_files` must be set to 0 and
      /// `*undeleted_dirs` must be set to 1.
      ///
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
  6. RELEASE.md

            for all the RNG in Keras. We plan to switch on the new code path by
            default in tf 2.8, and the behavior change will likely to cause some
            breakage on user side (eg if the test is checking against some golden
            number). These 3 APIs will allow user to disable and switch back to
            legacy behavior if they prefer. In future (eg TF 2.10), we expect to
    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)
Back to top