1 /* 2 * Copyright (c) Meta Platforms, Inc. and affiliates. 3 * All rights reserved. 4 * 5 * This source code is licensed under the BSD-style license found in the 6 * LICENSE file in the root directory of this source tree. 7 */ 8 9 package org.pytorch.executorch.annotations; 10 11 /** 12 * This annotation indicates that an API is experimental and may change or be removed at any time. 13 * It does not provide any guarantees for API stability or backward-compatibility. 14 * 15 * <p>This status is not permanent, and APIs marked with this annotation will need to be either made 16 * more robust or removed in the future. 17 */ 18 public @interface Experimental {} 19