Skip to content

Commit 12f8437

Browse files
leopardracerripatel-fd
authored andcommitted
fix typo
1 parent 9252202 commit 12f8437

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/wiredancer/rtl/ed25519_sigverify_0.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
2121
Dispatch and merge of sigverify-split-0 jobs to processors.
2222
23-
Dispatch serializes the three inputs of each invokation
23+
Dispatch serializes the three inputs of each invocation
2424
into the same processor. Job distribution logic is a
2525
simple round-robin policy. Pointer moves when a job
2626
is completely taken by a processor.

src/wiredancer/rtl/schl_cpu.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ module shcl_cpu
616616
mem_d_wr_en <= '0;
617617
end
618618
else begin
619-
if (curr_state[0] == ST_INIT) begin // Write in constants (intialization only happens at startup)
619+
if (curr_state[0] == ST_INIT) begin // Write in constants (initialization only happens at startup)
620620
init_done <= (init_addr == NUM_CONSTS && next_instr_ready == '1); // Consts written into memory and initial instr read for all tags
621621

622622
if( init_addr < NUM_CONSTS) begin

src/wiredancer/test/test_wiredancer_demo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1005,7 +1005,7 @@ main( int argc,
10051005

10061006
ulong page_sz = fd_cstr_to_shmem_page_sz( _page_sz );
10071007
if( FD_UNLIKELY( !page_sz ) ) FD_LOG_ERR(( "unsupported --page-sz" ));
1008-
if( FD_UNLIKELY( !replay_pcap ) ) FD_LOG_ERR(( "--replay-pcap not specifed" ));
1008+
if( FD_UNLIKELY( !replay_pcap ) ) FD_LOG_ERR(( "--replay-pcap not specified" ));
10091009

10101010
/* Check minimum number of tiles */
10111011
ulong req_tile_cnt = 1 /* main */ + (( !!replay_enabled )? 1UL : 0UL) +

0 commit comments

Comments
 (0)