-
```c
if(fstatfs(fd, &fsInfo) == -1) {
optimalSize = 4 * 1024 * 1024;
}
else {
optimalSize = fsInfo.f_bsize;
}
```
I don't actually know what this is for. I'v…
-
| | |
| --- | --- |
| Bugzilla Link | [31930](https://llvm.org/bz31930) |
| Version | trunk |
| OS | Linux |
| CC | @lesshaste,@hfinkel |
## Extended Description
Consider:
float f(float x[]) {
…
-
This is related to #866 .
Since #892 , ClangIR lowers constant local variables in C/C++ to `cir.alloca` operations with a `const` flag. The presence of the `const` flag implies:
- The variable m…
-
I would like to use non-numerical categorical variables in GPyOpt.
From the error, I understand such variables are being treated in the same way as `DiscreteVariables`, but it is not possible to conv…
-
# Index
1. Post-increment/decrement cost more gas then pre-increment/decrement
2. Call to KECCAK256 should use IMMUTABLE rather than constant
3. Array length should not be looked up in every loop of a…
-
This was being discussed in a closed PR, so here’s a proper issue for it as I am not sure what the conclusion is.
PR #345 introduced syncmer/strobemer generation parameters that maximize accuracy, …
-
# Gas Optimizations
The following sections detail the gas optimizations found throughout the codebase. Each optimization is documented with the setup, an explainer for the optimization, a gas report …
-
### Description of the bug:
`cc_shared_library` and `dynamic_deps` deliberately link the shared libraries for only direct dependencies, while excluding the corresponding static libraries transitivel…
-
**Which of these best describes your feature request:**
- [ ] Library usability improvement
- [x] Performance improvement (speed, accuracy)
- [ ] New methodology or algorithm
**Describe how the …
-
The jit should now be able to optimize many of the common type specialization checks during importation. Since the jit can also do some rudimentary branch opts during importation, early type speciali…