Changes: - Some changes to make our ability to handle external contributions simpler (e.g., adding some markers, adding empty __init__.py files). - Fixing documentation of SummaryWriter.add_summary(). - Some input validation changes for queues/barriers. - Fixing the ptb tutorial (thanks to @kentonl for reporting), fixes, github issue 52. - Some documentation suggestions for dealing with a few install problems. - Speed improvements to conv2d gradient kernels on CPU. - More documentation fixes for the website. Thanks to @makky3939 and @keonkim for reports. - Changes / fixes to the Docker files. - Changes build_pip_package to not create an sdist. - Adds tensorboard example script. Base CL: 107445267
39 lines
866 B
Bash
Executable File
39 lines
866 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
function main() {
|
|
if [ $# -lt 1 ] ; then
|
|
echo "No destination dir provided"
|
|
exit 1
|
|
fi
|
|
|
|
DEST=$1
|
|
TMPDIR=$(mktemp -d -t tmp.XXXXXXXXXX)
|
|
|
|
echo $(date) : "=== Using tmpdir: ${TMPDIR}"
|
|
|
|
if [ ! -d bazel-bin/tensorflow ]; then
|
|
echo "Could not find bazel-bin. Did you run from the root of the build tree?"
|
|
exit 1
|
|
fi
|
|
cp -R \
|
|
bazel-bin/tensorflow/tools/pip_package/build_pip_package.runfiles/* \
|
|
${TMPDIR}
|
|
|
|
cp tensorflow/tools/pip_package/MANIFEST.in ${TMPDIR}
|
|
cp tensorflow/tools/pip_package/README ${TMPDIR}
|
|
cp tensorflow/tools/pip_package/setup.py ${TMPDIR}
|
|
pushd ${TMPDIR}
|
|
rm -f MANIFEST
|
|
echo $(date) : "=== Building wheel"
|
|
python setup.py bdist_wheel >/dev/null
|
|
mkdir -p ${DEST}
|
|
cp dist/* ${DEST}
|
|
popd
|
|
rm -rf ${TMPDIR}
|
|
echo $(date) : "=== Output wheel file is in: ${DEST}"
|
|
}
|
|
|
|
main "$@"
|