You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
storage_account_name_type=CLIArgumentType(options_list=['--storage-account', '-a'], help='Name of the storage account to be used by a quantum workspace.')
37
37
program_args_type=CLIArgumentType(nargs='*', help='List of arguments expected by the Q# operation specified as --name=value after `--`.')
38
38
target_id_type=CLIArgumentType(options_list=['--target-id', '-t'], help='Execution engine for quantum computing jobs. When a workspace is configured with a set of providers, they each enable one or more targets. You can configure the default target using `az quantum target set`.', configured_default='target_id')
39
-
project_type=CLIArgumentType(help='[Becoming deprecated] The location of the Q# project to submit. Defaults to current folder.')
39
+
project_type=CLIArgumentType(help='[Deprecated] The location of the Q# project to submit. Defaults to current folder.')
40
40
job_name_type=CLIArgumentType(help='A friendly name to give to this run of the program.')
41
41
job_id_type=CLIArgumentType(options_list=['--job-id', '-j'], help='Job unique identifier in GUID format.')
42
42
job_params_type=CLIArgumentType(options_list=['--job-params'], help='Job parameters passed to the target as a list of key=value pairs, json string, or `@{file}` with json content.', action=JobParamsAction, nargs='+')
43
43
target_capability_type=CLIArgumentType(options_list=['--target-capability'], help='Target-capability parameter passed to the compiler.')
44
44
shots_type=CLIArgumentType(help='The number of times to run the Q# program on the given target.')
45
-
no_build_type=CLIArgumentType(help='[Becoming deprecated] If specified, the Q# program is not built before submitting.')
45
+
no_build_type=CLIArgumentType(help='[Deprecated] If specified, the Q# program is not built before submitting.')
46
46
storage_type=CLIArgumentType(help='If specified, the ConnectionString of an Azure Storage is used to store job data and results.')
47
47
max_poll_wait_secs_type=CLIArgumentType(help='Poll time in seconds to query Azure Quantum for results of the corresponding job.')
48
48
tag_type=CLIArgumentType(help='Show only quantum workspaces that have associated the specified tag.')
_show_warning('The direct submission of Q# programs will soon be deprecated. Instead, you can submit QIR bitcode or LLVM. Modern QDK can be used to generate LLVM from Q#.')
473
+
_show_warning('The direct submission of Q# project folders will soon be fully deprecated. Instead, you can submit QIR bitcode or human-readable LLVM code. Modern QDK can be used to generate human-readable LLVM code from Q#.')
474
474
# We first build and then call run.
475
475
# Can't call run directly because it fails to understand the
476
476
# `ExecutionTarget` property when passed in the command line
0 commit comments