Skip to content

Commit

Permalink
Deployed 5760ad4 with MkDocs version: 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JN513 committed Aug 30, 2024
1 parent 38082f1 commit f998929
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 68 deletions.
35 changes: 1 addition & 34 deletions en/techniques_of_use/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -560,39 +560,6 @@
</span>
</a>

</li>

<li class="md-nav__item">
<a href="#data-flow" class="md-nav__link">
<span class="md-ellipsis">
Data Flow
</span>
</a>

<nav class="md-nav" aria-label="Data Flow">
<ul class="md-nav__list">

<li class="md-nav__item">
<a href="#atomic-loading" class="md-nav__link">
<span class="md-ellipsis">
Atomic Loading
</span>
</a>

</li>

<li class="md-nav__item">
<a href="#bulk-loading" class="md-nav__link">
<span class="md-ellipsis">
Bulk Loading
</span>
</a>

</li>

</ul>
</nav>

</li>

</ul>
Expand Down Expand Up @@ -747,7 +714,7 @@ <h3 id="execution-by-pages">Execution by Pages</h3>

Execute tests in memory.
</code></pre>
<h2 id="data-flow">Data Flow</h2>
<h1 id="data-flow">Data Flow</h1>
<p>Data can be sent and read from memory in two ways: atomically (word by word) or in bulk, sending N words at once.</p>
<h3 id="atomic-loading">Atomic Loading</h3>
<p>Atomic loading is performed by reading and writing data word by word. This method can be executed using the following instructions: "Write to memory position N", "Write N to accumulator position", "Read memory position N", and "Read accumulator position". When using immediate value instructions, you need to send the instruction M times to read or write M words. When using the accumulator, you need to set the accumulator pointer M times and execute the read and write instructions M times. Thus, using these instructions is more suitable for small modifications, such as reading a result or reading/writing one or two words in memory.</p>
Expand Down
35 changes: 1 addition & 34 deletions techniques_of_use/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -560,39 +560,6 @@
</span>
</a>

</li>

<li class="md-nav__item">
<a href="#fluxo-de-dados" class="md-nav__link">
<span class="md-ellipsis">
Fluxo de Dados
</span>
</a>

<nav class="md-nav" aria-label="Fluxo de Dados">
<ul class="md-nav__list">

<li class="md-nav__item">
<a href="#carregamento-atomico" class="md-nav__link">
<span class="md-ellipsis">
Carregamento Atômico
</span>
</a>

</li>

<li class="md-nav__item">
<a href="#carregamento-em-lote" class="md-nav__link">
<span class="md-ellipsis">
Carregamento em Lote
</span>
</a>

</li>

</ul>
</nav>

</li>

</ul>
Expand Down Expand Up @@ -747,7 +714,7 @@ <h3 id="execucao-por-paginas">Execução por Páginas</h3>

Executar testes em memória.
</code></pre>
<h2 id="fluxo-de-dados">Fluxo de Dados</h2>
<h1 id="fluxo-de-dados">Fluxo de Dados</h1>
<p>É possível enviar e ler dados para a memória de duas formas: atômica (palavra por palavra) ou em lote, enviando N palavras de uma vez.</p>
<h3 id="carregamento-atomico">Carregamento Atômico</h3>
<p>O carregamento atômico é realizado lendo e escrevendo dados palavra por palavra. Esse método pode ser executado utilizando as seguintes instruções: "Escrever na posição N de memória", "Escrever N na posição do acumulador", "Ler a posição N de memória" e "Ler a posição do acumulador". Ao utilizar instruções baseadas em valores imediatos, é necessário enviar a instrução M vezes para ler ou escrever M palavras. Quando se utiliza o acumulador, é necessário definir o ponteiro do acumulador M vezes e executar as instruções de leitura e escrita M vezes. Dessa forma, o uso dessas instruções é mais adequado para pequenas modificações, como ler um resultado ou ler/escrever uma ou duas palavras na memória.</p>
Expand Down

0 comments on commit f998929

Please sign in to comment.