Skip to content

Commit

Permalink
aaaaaaaaaa
Browse files Browse the repository at this point in the history
  • Loading branch information
eggrobin committed Jan 2, 2025
1 parent 682efc9 commit 0f947ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion numerics/cbrt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
// Set OSACA_CARRY_LOOP_THROUGH_REGISTER to 0 to carry the loop through memory.

#define OSACA_EVALUATE_CONDITIONS 1
#define OSACA_CARRY_LOOP_THROUGH_REGISTER 0
#define OSACA_CARRY_LOOP_THROUGH_REGISTER 1

static bool volatile OSACA_loop_terminator = false;

Expand Down
2 changes: 1 addition & 1 deletion quantities/elementary_functions_body.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Q Mod(Q const& argument, Q const& modulus) {

template<typename Q>
SquareRoot<Q> Sqrt(Q const& x) {
#if PRINCIPIA_USE_SSE3_INTRINSICS
#if PRINCIPIA_USE_SSE3_INTRINSICS()
auto const x_128d = _mm_set_sd(x / si::Unit<Q>);
return si::Unit<SquareRoot<Q>> * _mm_cvtsd_f64(_mm_sqrt_sd(x_128d, x_128d));
#else
Expand Down

0 comments on commit 0f947ed

Please sign in to comment.