NVIDIA GPU loadable plugin
Source
41
41
distributed under the License is distributed on an "AS IS" BASIS,
42
42
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
43
43
See the License for the specific language governing permissions and
44
44
limitations under the License.
45
45
`
46
46
47
47
//nolint:gochecknoglobals,revive // required ALL_CAPS by build scripts
48
48
var (
49
49
PLUGIN_VERSION_MAJOR = 7
50
50
PLUGIN_VERSION_MINOR = 2
51
-
PLUGIN_VERSION_PATCH = 3
52
-
PLUGIN_VERSION_RC = ""
51
+
PLUGIN_VERSION_PATCH = 4
52
+
PLUGIN_VERSION_RC = "rc1"
53
53
PLUGIN_LICENSE_YEAR = 2025
54
54
)
55
55
56
56
func main() {
57
57
err := flag.HandleFlags(
58
58
plugin.Name,
59
59
os.Args[0],
60
60
fmt.Sprintf(copyrightMessage, PLUGIN_LICENSE_YEAR),
61
61
PLUGIN_VERSION_RC,
62
62
PLUGIN_VERSION_MAJOR,