1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
// Copyright (c) 2017-2023, University of Tennessee. All rights reserved.
// SPDX-License-Identifier: BSD-3-Clause
// This program is free software: you can redistribute it and/or modify it under
// the terms of the BSD 3-Clause license. See the accompanying LICENSE file.
#include <stdio.h>
#include <mkl.h>
int main()
{
int major, minor, patch, build;
acmlversion( &major, &minor, &patch, &build );
printf( "ACML_VERSION=%d.%d.%d.%d\n",
major, minor, patch, build );
return 0;
}
|