Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for RegExp (0.24 sec)

  1. ci/official/containers/linux_arm64/devel.usertools/rename_and_verify_wheels.sh

      time python3 -m auditwheel repair --plat manylinux2014_aarch64 "$wheel" --wheel-dir /tf/pkg 2>&1 | tee check.txt
    
      # We don't need the original wheel if it was renamed
      new_wheel=$(grep --extended-regexp --only-matching '/tf/pkg/\S+.whl' check.txt)
      if [[ "$new_wheel" != "$wheel" ]]; then
        rm "$wheel"
        wheel="$new_wheel"
      fi
    
      TF_WHEEL="$wheel" bats /usertools/wheel_verification.bats --timing
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 19:00:37 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  2. .bazelrc

    # only executabe on the RBE (x86) machine, so the strategy_regexp options are
    # added to override and run the actions using remote strategy.
    build:rbe_cross_compile_base_xla --strategy_regexp='Generating code from table.*=remote'
    build:rbe_cross_compile_base_xla --strategy_regexp='Generating flatbuffer files.*=remote'
    build:rbe_cross_compile_base_xla --strategy_regexp='Executing genrule @llvm-project.*=remote'
    
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 23 01:21:54 GMT 2024
    - 53.4K bytes
    - Viewed (2)
  3. RELEASE.md

        be removed soon.
    *   `dot.h` / DotGraph was removed (it was an early analysis tool prior to
        TensorBoard, no longer that useful). It remains in history should someone
        find the code useful.
    *   re2 / regexp.h was removed from being a public interface of TF. Should users
        need regular expressions, they should depend on the RE2 library directly
        rather than via TensorFlow.
    
    ## Thanks to our Contributors
    
    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)
  4. tensorflow/c/c_api.h

    //  fn_body - the graph whose operations (or subset of whose operations) will be
    //            converted to TF_Function.
    //  fn_name - the name of the new TF_Function. Should match the operation
    //            name (OpDef.name) regexp [A-Z][A-Za-z0-9_.\\-/]*.
    //            If `append_hash_to_fn_name` is false, `fn_name` must be distinct
    //            from other function and operation names (at least those
    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)
Back to top