コード例 #1
0
# language governing permissions and limitations under the License.

import shlex
import subprocess
import sys
import os

if sys.argv[1] == 'serve':
    user_ncgs = os.environ.get('NEURONCORE_GROUP_SIZES')
    if user_ncgs is None:
        os.environ['NEURONCORE_GROUP_SIZES'] = "1"
    user_workers = os.environ.get('SAGEMAKER_MODEL_SERVER_WORKERS')
    if user_workers is None:
        num_host_cores = os.environ.get("NEURON_CORE_HOST_TOTAL")
        if num_host_cores is None:
            os.environ['SAGEMAKER_MODEL_SERVER_WORKERS'] = "1"
        else:
            os.environ['SAGEMAKER_MODEL_SERVER_WORKERS'] = num_host_cores
    print("NEURONCORE_GROUP_SIZES {}".format(
        os.environ.get('NEURONCORE_GROUP_SIZES')))
    print("SAGEMAKER_MODEL_SERVER_WORKERS {}".format(
        os.environ.get('SAGEMAKER_MODEL_SERVER_WORKERS')))

    from sagemaker_mxnet_serving_container import serving
    serving.main()
else:
    subprocess.check_call(shlex.split(' '.join(sys.argv[1:])))

# prevent docker exit
subprocess.call(['tail', '-f', '/dev/null'])
コード例 #2
0
def test_main(update_mxnet_env_vars, model_server):
    main()

    update_mxnet_env_vars.assert_called_once()
    model_server.assert_called_once_with(handler_service=HANDLER_SERVICE)