-
Notifications
You must be signed in to change notification settings - Fork 153
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 #1259 from zaliu/master
ROCm 4.1 merge staging into master
- Loading branch information
Showing
155 changed files
with
57,062 additions
and
1,327 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/CHANGELOG.md merge=union | ||
*.pdf binary | ||
*.doc binary | ||
*.docx binary | ||
*.ppt binary | ||
*.pptx binary | ||
*.xls binary | ||
*.xlsx binary | ||
*.xps binary |
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 |
---|---|---|
|
@@ -6,6 +6,9 @@ Tensile.egg-info | |
build* | ||
dist | ||
.cache | ||
/*.yaml | ||
/*.txt | ||
/*log* | ||
|
||
0_Build | ||
1_BenchmarkProblems | ||
|
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 |
---|---|---|
@@ -0,0 +1,82 @@ | ||
#!/usr/bin/env groovy | ||
// This shared library is available at https://github.com/ROCmSoftwarePlatform/rocJENKINS/ | ||
@Library('rocJenkins@pong') _ | ||
|
||
// This is file for internal AMD use. | ||
// If you are interested in running your own Jenkins, please raise a github issue for assistance. | ||
|
||
import com.amd.project.* | ||
import com.amd.docker.* | ||
import java.nio.file.Path | ||
|
||
def runCI = | ||
{ | ||
nodeDetails, jobName -> | ||
|
||
def prj = new rocProject('Tensile', 'Integration') | ||
|
||
// Define test architectures, optional rocm version argument is available | ||
def nodes = new dockerNodes(nodeDetails, jobName, prj) | ||
|
||
boolean formatCheck = false | ||
|
||
prj.timeout.test = 60 | ||
|
||
def commonGroovy | ||
|
||
def compileCommand = | ||
{ | ||
platform, project-> | ||
|
||
commonGroovy = load "${project.paths.project_src_prefix}/.jenkins/common.groovy" | ||
// commonGroovy.runCompileCommand(platform, project, jobName, false) | ||
} | ||
|
||
def testCommand = | ||
{ | ||
platform, project-> | ||
|
||
def test_marks = "integration" | ||
boolean skipHostTest = true | ||
commonGroovy.runTestCommand(platform, project, jobName, test_marks, skipHostTest) | ||
} | ||
|
||
buildProject(prj, formatCheck, nodes.dockerArray, compileCommand, testCommand, null) | ||
|
||
} | ||
|
||
ci: { | ||
String urlJobName = auxiliary.getTopJobName(env.BUILD_URL) | ||
|
||
def propertyList = ["compute-rocm-dkms-no-npi-hipclang":[], | ||
"rocm-docker":[]] | ||
propertyList = auxiliary.appendPropertyList(propertyList) | ||
|
||
def jobNameList = ["compute-rocm-dkms-no-npi-hipclang":([ubuntu18:['gfx900','gfx906','gfx908']]), | ||
"rocm-docker":([ubuntu18:['gfx908']])] | ||
|
||
propertyList.each | ||
{ | ||
jobName, property-> | ||
if (urlJobName == jobName) | ||
properties(auxiliary.addCommonProperties(property)) | ||
} | ||
|
||
jobNameList.each | ||
{ | ||
jobName, nodeDetails-> | ||
if (urlJobName == jobName) | ||
stage(jobName) { | ||
runCI(nodeDetails, jobName) | ||
} | ||
} | ||
|
||
// For url job names that are outside of the standardJobNameSet i.e. compute-rocm-dkms-no-npi-1901 | ||
if(!jobNameList.keySet().contains(urlJobName)) | ||
{ | ||
properties(auxiliary.addCommonProperties([pipelineTriggers([cron('0 6 * * 6')])])) | ||
stage(urlJobName) { | ||
runCI([ubuntu18:['any']], urlJobName) | ||
} | ||
} | ||
} |
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
Binary file modified
BIN
+25.9 KB
(100%)
HostLibraryTests/configs/SolutionLibraries/rocBLAS_Full.dat.gz
Binary file not shown.
Binary file modified
BIN
-109 Bytes
(100%)
HostLibraryTests/configs/SolutionLibraries/rocBLAS_Full.yaml.gz
Binary file not shown.
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
Oops, something went wrong.