xref: /oneTBB/python/TBB.py (revision 9acde482)
1*9acde482SJonathan Wakely# Copyright (c) 2016-2023 Intel Corporation
251c0b2f7Stbbdev#
351c0b2f7Stbbdev# Licensed under the Apache License, Version 2.0 (the "License");
451c0b2f7Stbbdev# you may not use this file except in compliance with the License.
551c0b2f7Stbbdev# You may obtain a copy of the License at
651c0b2f7Stbbdev#
751c0b2f7Stbbdev#     http://www.apache.org/licenses/LICENSE-2.0
851c0b2f7Stbbdev#
951c0b2f7Stbbdev# Unless required by applicable law or agreed to in writing, software
1051c0b2f7Stbbdev# distributed under the License is distributed on an "AS IS" BASIS,
1151c0b2f7Stbbdev# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1251c0b2f7Stbbdev# See the License for the specific language governing permissions and
1351c0b2f7Stbbdev# limitations under the License.
1451c0b2f7Stbbdev
1551c0b2f7Stbbdev
1651c0b2f7Stbbdevfrom tbb import *
1751c0b2f7Stbbdevfrom tbb import __all__, __doc__
1851c0b2f7Stbbdev
1951c0b2f7Stbbdevif __name__ == "__main__":
2051c0b2f7Stbbdev    from tbb import _main
2151c0b2f7Stbbdev    import sys
2251c0b2f7Stbbdev    sys.exit(_main())
23