Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 749 Bytes

File metadata and controls

19 lines (16 loc) · 749 Bytes

The build patches are in the tags

How to check out a build patch

  • git clone --depth=20 git@github.com:ZenIDTeam/tensorflow.git
  • git fetch --tags --depth=1 origin
  • git checkout v2.12.0-custom-ops

How to add a new build patch for tflite:

  1. fetch a TF tag from upstream tf repo (with depth=1)
  • git clone --depth=20 git@github.com:ZenIDTeam/tensorflow.git
  • git remote add upstream https://github.com/tensorflow/tensorflow.git
  • git fetch origin tag v2.12.0 --no-tags
  • git checkout v2.12.0
  1. add your commits on top
  2. tag it and push the tag to this repo
  • git tag v2.12.0-custom-ops
  • git push origin tag v2.12.0-custom-ops --no-tags
  • git push origin tag v2.12.0 --no-tags (push the base version tag too)