From 7807e285ac064df2ecd6fcb62a6e20560f8fcbb5 Mon Sep 17 00:00:00 2001 From: Blaise Tine Date: Tue, 27 Jul 2021 00:30:10 -0700 Subject: [PATCH] minor update --- hw/rtl/cache/VX_miss_resrv.v | 2 -- tests/opencl/nearn/Makefile | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/hw/rtl/cache/VX_miss_resrv.v b/hw/rtl/cache/VX_miss_resrv.v index 74799e9d..99eda525 100644 --- a/hw/rtl/cache/VX_miss_resrv.v +++ b/hw/rtl/cache/VX_miss_resrv.v @@ -150,8 +150,6 @@ module VX_miss_resrv #( assert(!full_r); end else if (restore) begin assert(!schedule); - end else if (dequeue) begin - assert(head_ptr != schedule_ptr); end if (push_new) begin diff --git a/tests/opencl/nearn/Makefile b/tests/opencl/nearn/Makefile index 11dd0c17..84045f59 100644 --- a/tests/opencl/nearn/Makefile +++ b/tests/opencl/nearn/Makefile @@ -7,7 +7,7 @@ POCL_RT_PATH ?= /opt/pocl/runtime OPTS ?= filelist.txt VORTEX_DRV_PATH ?= $(realpath ../../../driver) -VORTEX_RT_PATH ?= $(realpath ../../../runtime) +VORTEX_RT_PATH ?= $(realpath ../../../runtime) K_LLCFLAGS += "-O3 -march=riscv32 -target-abi=ilp32f -mcpu=generic-rv32 -mattr=+m,+f -float-abi=hard -code-model=small" K_CFLAGS += "-v -O3 --sysroot=$(SYSROOT) --gcc-toolchain=$(RISCV_TOOLCHAIN_PATH) -march=rv32imf -mabi=ilp32f -I$(VORTEX_RT_PATH)/include -fno-rtti -fno-exceptions -ffreestanding -nostartfiles -fdata-sections -ffunction-sections"