Skip to content

Commit 3f04d27

Browse files
tenpercentclaude
andauthored
Remove concrete performance numbers from BUILD_TIME_OPTIMIZATION.md (#3702)
Replace specific benchmark numbers with qualitative descriptions since measurements vary across environments and may become outdated. Co-authored-by: Claude <noreply@anthropic.com>
1 parent 8b56ffb commit 3f04d27

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

include/ck/BUILD_TIME_OPTIMIZATION.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ struct generate_identity_sequence
105105
generate_tuple(generate_identity_sequence{}, Number<N>{});
106106
```
107107

108-
This reduced `transform_tensor_descriptor` instantiations from 388 to 32 (92% reduction).
108+
This significantly reduces template instantiations for `transform_tensor_descriptor`.
109109

110110
**Example: container_concat**
111111

@@ -135,7 +135,7 @@ __host__ __device__ constexpr auto container_concat(const Tuple<X...>& tx, const
135135
}
136136
```
137137
138-
This reduced `container_concat` instantiations from 186 to 93 (50% reduction).
138+
This reduces `container_concat` template instantiations.
139139
140140
**Example: make_uniform_tuple**
141141
@@ -192,7 +192,7 @@ __host__ __device__ constexpr index_t find_source_index(Sequence<Is...>)
192192
}
193193
```
194194

195-
This reduced `sequence_map_inverse` instantiations from 45 to 10 (78% reduction) and wall-clock time by 95%.
195+
This significantly reduces `sequence_map_inverse` instantiations and compile time.
196196

197197
### 4. Use Fold Expressions for Accumulation
198198

@@ -222,4 +222,4 @@ __host__ __device__ constexpr auto compute_element_space_size(
222222
}
223223
```
224224

225-
This reduced `calculate_element_space_size` instantiations from 24 to 10 (58% reduction) and wall-clock time by 73%.
225+
This reduces `calculate_element_space_size` instantiations and compile time.

0 commit comments

Comments
 (0)