[VENTUS][RISCV][workflow] Modify workflow script
Signed-off-by: zhoujingya <jing.zhou@terapines.com>
This commit is contained in:
parent
7d66e05b28
commit
8e86eb368c
|
@ -45,10 +45,35 @@ jobs:
|
||||||
export DRIVER_BUILD_DIR=${DRIVER_DIR}/build
|
export DRIVER_BUILD_DIR=${DRIVER_DIR}/build
|
||||||
export VENTUS_INSTALL_PREFIX=${{github.workspace}}/install
|
export VENTUS_INSTALL_PREFIX=${{github.workspace}}/install
|
||||||
|
|
||||||
- name: Start building VENTUS
|
- name: Start building llvm-ventus
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
./build-ventus.sh
|
./build-ventus.sh --build llvm-ventus
|
||||||
|
|
||||||
|
- name: Start building ocl-icd
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
./build-ventus.sh --build ${OCL_ICD}
|
||||||
|
|
||||||
|
- name: Start building libclc
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
./build-ventus.sh --build libclc
|
||||||
|
|
||||||
|
- name: Start building spike
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
./build-ventus.sh --build spike
|
||||||
|
|
||||||
|
- name: Start building driver
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
./build-ventus.sh --build driver
|
||||||
|
|
||||||
|
- name: Start building pocl
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
./build-ventus.sh --build ${POCL}
|
||||||
|
|
||||||
- name: Start ISA simulation test
|
- name: Start ISA simulation test
|
||||||
run: |
|
run: |
|
||||||
|
|
|
@ -2706,7 +2706,6 @@ bool RISCVAsmParser::processInstruction(MCInst &Inst, SMLoc IDLoc,
|
||||||
int64_t Imm = Inst.getOperand(2).getImm();
|
int64_t Imm = Inst.getOperand(2).getImm();
|
||||||
unsigned Opc = Inst.getOpcode() == RISCV::PseudoVMSGE_VI ? RISCV::VMSGT_VI
|
unsigned Opc = Inst.getOpcode() == RISCV::PseudoVMSGE_VI ? RISCV::VMSGT_VI
|
||||||
: RISCV::VMSLE_VI;
|
: RISCV::VMSLE_VI;
|
||||||
Inst.dump();
|
|
||||||
emitToStreamer(Out, MCInstBuilder(Opc)
|
emitToStreamer(Out, MCInstBuilder(Opc)
|
||||||
.addOperand(Inst.getOperand(0))
|
.addOperand(Inst.getOperand(0))
|
||||||
.addOperand(Inst.getOperand(1))
|
.addOperand(Inst.getOperand(1))
|
||||||
|
|
Loading…
Reference in New Issue