Skip to content

Commit

Permalink
Removing Documents
Browse files Browse the repository at this point in the history
  • Loading branch information
erfanzar committed Nov 27, 2023
1 parent 1a5cdc9 commit 857c393
Show file tree
Hide file tree
Showing 47 changed files with 577 additions and 40,242 deletions.
517 changes: 0 additions & 517 deletions documents/fjformer.html

This file was deleted.

300 changes: 0 additions & 300 deletions documents/fjformer/attention.html

This file was deleted.

584 changes: 0 additions & 584 deletions documents/fjformer/attention/blockwise_attention.html

This file was deleted.

693 changes: 0 additions & 693 deletions documents/fjformer/attention/efficient_attention.html

This file was deleted.

1,441 changes: 0 additions & 1,441 deletions documents/fjformer/attention/flash_attention.html

This file was deleted.

4,761 changes: 0 additions & 4,761 deletions documents/fjformer/attention/flash_attention_0.html

This file was deleted.

1,045 changes: 0 additions & 1,045 deletions documents/fjformer/attention/flash_attention_gpu.html

This file was deleted.

2,566 changes: 0 additions & 2,566 deletions documents/fjformer/attention/flash_attention_tpu.html

This file was deleted.

2,737 changes: 0 additions & 2,737 deletions documents/fjformer/attention/jax_flash_attn_tpu.html

This file was deleted.

259 changes: 0 additions & 259 deletions documents/fjformer/bits.html

This file was deleted.

766 changes: 0 additions & 766 deletions documents/fjformer/bits/bits.html

This file was deleted.

564 changes: 0 additions & 564 deletions documents/fjformer/bits/calibration.html

This file was deleted.

1,790 changes: 0 additions & 1,790 deletions documents/fjformer/bits/config.html

This file was deleted.

739 changes: 0 additions & 739 deletions documents/fjformer/bits/int_numerics.html

This file was deleted.

1,468 changes: 0 additions & 1,468 deletions documents/fjformer/bits/q_dot_general.html

This file was deleted.

1,377 changes: 0 additions & 1,377 deletions documents/fjformer/bits/q_flax.html

This file was deleted.

347 changes: 0 additions & 347 deletions documents/fjformer/bits/stochastic_rounding.html

This file was deleted.

243 changes: 0 additions & 243 deletions documents/fjformer/datasets.html

This file was deleted.

356 changes: 0 additions & 356 deletions documents/fjformer/datasets/datasets.html

This file was deleted.

243 changes: 0 additions & 243 deletions documents/fjformer/func.html

This file was deleted.

371 changes: 0 additions & 371 deletions documents/fjformer/func/_func.html

This file was deleted.

1,472 changes: 0 additions & 1,472 deletions documents/fjformer/func/loss_func.html

This file was deleted.

249 changes: 0 additions & 249 deletions documents/fjformer/gpu_pallas.html

This file was deleted.

1,157 changes: 0 additions & 1,157 deletions documents/fjformer/gpu_pallas/attention.html

This file was deleted.

892 changes: 0 additions & 892 deletions documents/fjformer/gpu_pallas/layer_norm.html

This file was deleted.

846 changes: 0 additions & 846 deletions documents/fjformer/gpu_pallas/rms_norm.html

This file was deleted.

399 changes: 0 additions & 399 deletions documents/fjformer/gpu_pallas/softmax.html

This file was deleted.

245 changes: 0 additions & 245 deletions documents/fjformer/load.html

This file was deleted.

505 changes: 0 additions & 505 deletions documents/fjformer/load/_load.html

This file was deleted.

1,158 changes: 0 additions & 1,158 deletions documents/fjformer/load/streamer.html

This file was deleted.

243 changes: 0 additions & 243 deletions documents/fjformer/monitor.html

This file was deleted.

513 changes: 0 additions & 513 deletions documents/fjformer/monitor/tracker.html

This file was deleted.

252 changes: 0 additions & 252 deletions documents/fjformer/optimizers.html

This file was deleted.

971 changes: 0 additions & 971 deletions documents/fjformer/optimizers/adafactor.html

This file was deleted.

837 changes: 0 additions & 837 deletions documents/fjformer/optimizers/adamw.html

This file was deleted.

763 changes: 0 additions & 763 deletions documents/fjformer/optimizers/lion.html

This file was deleted.

409 changes: 0 additions & 409 deletions documents/fjformer/optimizers/optimizer_utils.html

This file was deleted.

259 changes: 0 additions & 259 deletions documents/fjformer/partition_utils.html

This file was deleted.

972 changes: 0 additions & 972 deletions documents/fjformer/partition_utils/mesh_utils.html

This file was deleted.

4,282 changes: 0 additions & 4,282 deletions documents/fjformer/partition_utils/t5x_partitioning.html

This file was deleted.

596 changes: 0 additions & 596 deletions documents/fjformer/utils.html

This file was deleted.

7 changes: 0 additions & 7 deletions documents/index.html

This file was deleted.

46 changes: 0 additions & 46 deletions documents/search.js

This file was deleted.

2 changes: 1 addition & 1 deletion fjformer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,4 +151,4 @@
count_num_params
)

__version__ = '0.0.14'
__version__ = '0.0.15'
4 changes: 4 additions & 0 deletions fjformer/attention/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,14 @@
`blockwise_attn` from `flash_attention` module: These imports bring in various attention mechanisms such as
ring attention, flash attention for GPU and TPU, and blockwise feed-forward network and attention mechanisms.
4. `tpu_flash_attention` `gpu_flash_attention` are imported from jax_flash_attn_tpu/gpu
"""

from .efficient_attention import efficient_attention
from .flash_attention_0 import dot_product_attention_multihead, dot_product_attention_multiquery, \
dot_product_attention_queries_per_head
from .flash_attention import ring_attention, ring_attention_standard, ring_flash_attention_gpu, \
ring_flash_attention_tpu, blockwise_ffn, blockwise_attn
from .jax_flash_attn_tpu import flash_attention as tpu_flash_attention
from .jax_flash_attn_gpu import mha as gpu_flash_attention
Loading

0 comments on commit 857c393

Please sign in to comment.