2019-09-02 20:50:20 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# Copyright 2019 Google Inc.
|
|
|
|
#
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
2019-12-17 16:32:21 +00:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2019-09-02 20:50:20 +00:00
|
|
|
import multiprocessing
|
|
|
|
|
2019-12-17 16:32:21 +00:00
|
|
|
print(multiprocessing.cpu_count())
|