-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from rscohn2/dev/mkl
fix mkl url
- Loading branch information
Showing
10 changed files
with
70 additions
and
363 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44489,6 +44489,7 @@ class PropagationAPI { | |
constructor() { | ||
this.createBaggage = utils_1.createBaggage; | ||
this.getBaggage = context_helpers_1.getBaggage; | ||
this.getActiveBaggage = context_helpers_1.getActiveBaggage; | ||
this.setBaggage = context_helpers_1.setBaggage; | ||
this.deleteBaggage = context_helpers_1.deleteBaggage; | ||
} | ||
|
@@ -44653,12 +44654,13 @@ exports.TraceAPI = TraceAPI; | |
* limitations under the License. | ||
*/ | ||
Object.defineProperty(exports, "__esModule", ({ value: true })); | ||
exports.deleteBaggage = exports.setBaggage = exports.getBaggage = void 0; | ||
const context_1 = __nccwpck_require__(6938); | ||
exports.deleteBaggage = exports.setBaggage = exports.getActiveBaggage = exports.getBaggage = void 0; | ||
const context_1 = __nccwpck_require__(7846); | ||
const context_2 = __nccwpck_require__(6938); | ||
/** | ||
* Baggage key | ||
*/ | ||
const BAGGAGE_KEY = (0, context_1.createContextKey)('OpenTelemetry Baggage Key'); | ||
const BAGGAGE_KEY = (0, context_2.createContextKey)('OpenTelemetry Baggage Key'); | ||
/** | ||
* Retrieve the current baggage from the given context | ||
* | ||
|
@@ -44669,6 +44671,15 @@ function getBaggage(context) { | |
return context.getValue(BAGGAGE_KEY) || undefined; | ||
} | ||
exports.getBaggage = getBaggage; | ||
/** | ||
* Retrieve the current baggage from the active/current context | ||
* | ||
* @returns {Baggage} Extracted baggage from the context | ||
*/ | ||
function getActiveBaggage() { | ||
return getBaggage(context_1.ContextAPI.getInstance().active()); | ||
} | ||
exports.getActiveBaggage = getActiveBaggage; | ||
/** | ||
* Store a baggage in the given context | ||
* | ||
|
@@ -46115,7 +46126,7 @@ const contextApi = context_1.ContextAPI.getInstance(); | |
*/ | ||
class NoopTracer { | ||
// startSpan starts a noop span. | ||
startSpan(name, options, context) { | ||
startSpan(name, options, context = contextApi.active()) { | ||
const root = Boolean(options === null || options === void 0 ? void 0 : options.root); | ||
if (root) { | ||
return new NonRecordingSpan_1.NonRecordingSpan(); | ||
|
@@ -46888,7 +46899,7 @@ var TraceFlags; | |
Object.defineProperty(exports, "__esModule", ({ value: true })); | ||
exports.VERSION = void 0; | ||
// this is autogenerated file, see scripts/version-update.js | ||
exports.VERSION = '1.3.0'; | ||
exports.VERSION = '1.4.0'; | ||
//# sourceMappingURL=version.js.map | ||
|
||
/***/ }), | ||
|
@@ -63579,8 +63590,8 @@ const componentUrls = { | |
ippcp: 'https://registrationcenter-download.intel.com/akdlm/irc_nas/18999/l_ippcp_oneapi_p_2021.6.2.15006_offline.sh', | ||
'[email protected]': 'https://registrationcenter-download.intel.com/akdlm/irc_nas/18999/l_ippcp_oneapi_p_2021.6.2.15006_offline.sh', | ||
|
||
mkl: 'https://registrationcenter-download.intel.com/akdlm/irc_nas/19035/l_onednn_p_2022.2.1.16994_offline.sh', | ||
'[email protected]': 'https://registrationcenter-download.intel.com/akdlm/irc_nas/19035/l_onednn_p_2022.2.1.16994_offline.sh', | ||
mkl: 'https://registrationcenter-download.intel.com/akdlm/irc_nas/19038/l_onemkl_p_2022.2.1.16993_offline.sh', | ||
'[email protected]': 'https://registrationcenter-download.intel.com/akdlm/irc_nas/19038/l_onemkl_p_2022.2.1.16993_offline.sh', | ||
|
||
tbb: 'https://registrationcenter-download.intel.com/akdlm/irc_nas/19041/l_tbb_oneapi_p_2021.7.1.15005_offline.sh', | ||
'[email protected]': 'https://registrationcenter-download.intel.com/akdlm/irc_nas/19041/l_tbb_oneapi_p_2021.7.1.15005_offline.sh', | ||
|
@@ -63621,9 +63632,10 @@ async function prune () { | |
if (!core.getBooleanInput('prune')) { return } | ||
|
||
const dirs = ['/opt/intel/oneapi/compiler/latest/linux/compiler/lib/ia32_lin', | ||
'/opt/intel/oneapi/compiler/latest/linux/bin/ia32', | ||
'/opt/intel/oneapi/compiler/latest/linux/lib/emu', | ||
'/opt/intel/oneapi/compiler/latest/linux/lib/oclfpga'] | ||
'/opt/intel/oneapi/compiler/latest/linux/bin/ia32', | ||
'/opt/intel/oneapi/compiler/latest/linux/lib/emu', | ||
'/opt/intel/oneapi/compiler/latest/linux/lib/oclfpga', | ||
'/opt/intel/oneapi/mkl/latest/lib/intel64/*.a'] | ||
|
||
console.log('Pruning oneapi install') | ||
await exec.exec('du', ['-sh', '/opt/intel/oneapi']) | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,8 +37,8 @@ const componentUrls = { | |
ippcp: 'https://registrationcenter-download.intel.com/akdlm/irc_nas/18999/l_ippcp_oneapi_p_2021.6.2.15006_offline.sh', | ||
'[email protected]': 'https://registrationcenter-download.intel.com/akdlm/irc_nas/18999/l_ippcp_oneapi_p_2021.6.2.15006_offline.sh', | ||
|
||
mkl: 'https://registrationcenter-download.intel.com/akdlm/irc_nas/19035/l_onednn_p_2022.2.1.16994_offline.sh', | ||
'[email protected]': 'https://registrationcenter-download.intel.com/akdlm/irc_nas/19035/l_onednn_p_2022.2.1.16994_offline.sh', | ||
mkl: 'https://registrationcenter-download.intel.com/akdlm/irc_nas/19038/l_onemkl_p_2022.2.1.16993_offline.sh', | ||
'[email protected]': 'https://registrationcenter-download.intel.com/akdlm/irc_nas/19038/l_onemkl_p_2022.2.1.16993_offline.sh', | ||
|
||
tbb: 'https://registrationcenter-download.intel.com/akdlm/irc_nas/19041/l_tbb_oneapi_p_2021.7.1.15005_offline.sh', | ||
'[email protected]': 'https://registrationcenter-download.intel.com/akdlm/irc_nas/19041/l_tbb_oneapi_p_2021.7.1.15005_offline.sh', | ||
|
@@ -79,9 +79,10 @@ async function prune () { | |
if (!core.getBooleanInput('prune')) { return } | ||
|
||
const dirs = ['/opt/intel/oneapi/compiler/latest/linux/compiler/lib/ia32_lin', | ||
'/opt/intel/oneapi/compiler/latest/linux/bin/ia32', | ||
'/opt/intel/oneapi/compiler/latest/linux/lib/emu', | ||
'/opt/intel/oneapi/compiler/latest/linux/lib/oclfpga'] | ||
'/opt/intel/oneapi/compiler/latest/linux/bin/ia32', | ||
'/opt/intel/oneapi/compiler/latest/linux/lib/emu', | ||
'/opt/intel/oneapi/compiler/latest/linux/lib/oclfpga', | ||
'/opt/intel/oneapi/mkl/latest/lib/intel64/*.a'] | ||
|
||
console.log('Pruning oneapi install') | ||
await exec.exec('du', ['-sh', '/opt/intel/oneapi']) | ||
|
Oops, something went wrong.