STT-tensorflow/third_party/llvm_openmp/openmp.bzl
TensorFlower Gardener 51c6b3fcfe Merge pull request #44149 from Intel-tensorflow:agramesh/win_openmp
PiperOrigin-RevId: 338204788
Change-Id: Iad905c70afc9004d8e263e9ca70ecdf6b7db4637
2020-10-20 23:06:03 -07:00

22 lines
692 B
Python

"""This file contains BUILD extensions for building llvm_openmp.
TODO(Intel-tf): Delete this and reuse a similar function in third_party/llvm
after the TF 2.4 branch cut has passed.
"""
def dict_add(*dictionaries):
"""Returns a new `dict` that has all the entries of the given dictionaries.
If the same key is present in more than one of the input dictionaries, the
last of them in the argument list overrides any earlier ones.
Args:
*dictionaries: Zero or more dictionaries to be added.
Returns:
A new `dict` that has all the entries of the given dictionaries.
"""
result = {}
for d in dictionaries:
result.update(d)
return result