29 lines
513 B
Python
29 lines
513 B
Python
from ray._common.deprecation import Deprecated
|
|
|
|
|
|
@Deprecated(
|
|
help="The Spec checking APIs have been deprecated and cancelled without "
|
|
"replacement.",
|
|
error=True,
|
|
)
|
|
class Spec:
|
|
pass
|
|
|
|
|
|
@Deprecated(
|
|
help="The Spec checking APIs have been deprecated and cancelled without "
|
|
"replacement.",
|
|
error=True,
|
|
)
|
|
class TypeSpec:
|
|
pass
|
|
|
|
|
|
@Deprecated(
|
|
help="The Spec checking APIs have been deprecated and cancelled without "
|
|
"replacement.",
|
|
error=True,
|
|
)
|
|
class TensorSpec:
|
|
pass
|