Skip to content

Commit

Permalink
fixing int compile issues
Browse files Browse the repository at this point in the history
  • Loading branch information
vikramjain236 committed Jul 26, 2024
1 parent 3bad911 commit d1463c6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/scala/gemmini/Configs.scala
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ object GemminiConfigs {
tileColumns = 1,
meshRows = 16,
meshColumns = 16,
quantWidth = 4,
quantWidth = 2,

// Spatial array PE options
dataflow = Dataflow.BOTH,
Expand Down Expand Up @@ -165,6 +165,8 @@ object GemminiConfigs {
ex_read_from_acc = true,
ex_write_to_spad = true,
ex_write_to_acc = true,
use_tl_spad_mem = true,
tl_spad_mem_base = 0x1000000
)

val dummyConfig = GemminiArrayConfig[DummySInt, Float, Float](
Expand Down Expand Up @@ -247,7 +249,7 @@ object GemminiConfigs {

val leanPrintfConfig = defaultConfig.copy(dataflow=Dataflow.WS, max_in_flight_mem_reqs = 64, acc_read_full_width = false, ex_read_from_acc = false, ex_write_to_spad = false, hardcode_d_to_garbage_addr = true, use_firesim_simulation_counters=true)

val lutLeanConfig = defaultConfig.copy(dataflow=Dataflow.WS, inputType=SInt(16.W), meshRows=8, meshColumns=8, max_in_flight_mem_reqs = 64, acc_read_full_width = false, ex_read_from_acc = false, ex_write_to_spad = false, hardcode_d_to_garbage_addr = true)
val lutLeanConfig = defaultConfig.copy(dataflow=Dataflow.WS, inputType=SInt(8.W), meshRows=8, meshColumns=8, max_in_flight_mem_reqs = 64, acc_read_full_width = false, ex_read_from_acc = false, ex_write_to_spad = false, hardcode_d_to_garbage_addr = true)

}

Expand Down

0 comments on commit d1463c6

Please sign in to comment.