Skip to content

Commit

Permalink
fix: update import paths for complex type defs
Browse files Browse the repository at this point in the history
Ref: fa7e420
  • Loading branch information
kgryte committed Aug 17, 2023
1 parent fa7e420 commit 32a2827
Show file tree
Hide file tree
Showing 65 changed files with 67 additions and 65 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex64, Complex128 } from '@stdlib/types/object';
import { Complex64, Complex128 } from '@stdlib/types/complex';
import { Complex64Array, Complex128Array, AccessorArrayLike } from '@stdlib/types/array';

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { ComplexLike } from '@stdlib/types/object';
import { ComplexLike } from '@stdlib/types/complex';
import { Complex64Array, Complex128Array, AccessorArrayLike } from '@stdlib/types/array';

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
/// <reference types="@stdlib/types"/>

import { Complex64Array, Complex128Array, AccessorArrayLike } from '@stdlib/types/array';
import { Collection, Complex64, Complex128, ComplexLike } from '@stdlib/types/object';
import { Complex64, Complex128, ComplexLike } from '@stdlib/types/complex';
import { Collection } from '@stdlib/types/object';

/**
* Returns an element from a `Float64Array`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
/// <reference types="@stdlib/types"/>

import { Complex64Array, Complex128Array, AccessorArrayLike } from '@stdlib/types/array';
import { Collection, Complex64, Complex128, ComplexLike } from '@stdlib/types/object';
import { Complex64, Complex128, ComplexLike } from '@stdlib/types/complex';
import { Collection } from '@stdlib/types/object';

/**
* Returns an element from a `Float64Array`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

import { Iterator as Iter, IterableIterator } from '@stdlib/types/iter';
import { ArrayLike, RealOrComplexTypedArray, Complex128Array as Complex128ArrayInterface } from '@stdlib/types/array';
import { ComplexLike, Complex128 } from '@stdlib/types/object';
import { ComplexLike, Complex128 } from '@stdlib/types/complex';
import ArrayBuffer = require( '@stdlib/array/buffer' );

// Define a union type representing both iterable and non-iterable iterators:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

import { Iterator as Iter, IterableIterator } from '@stdlib/types/iter';
import { ArrayLike, RealOrComplexTypedArray, Complex64Array as Complex64ArrayInterface } from '@stdlib/types/array';
import { ComplexLike, Complex64 } from '@stdlib/types/object';
import { ComplexLike, Complex64 } from '@stdlib/types/complex';
import ArrayBuffer = require( '@stdlib/array/buffer' );

// Define a union type representing both iterable and non-iterable iterators:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/// <reference types="@stdlib/types"/>

import { Complex128Array, Complex64Array, AnyArray, DataType } from '@stdlib/types/array';
import { ComplexLike } from '@stdlib/types/object';
import { ComplexLike } from '@stdlib/types/complex';

/**
* Creates a filled array having the same length as a provided input array.
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/array/full/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/// <reference types="@stdlib/types"/>

import { AnyArray, Complex128Array, Complex64Array, DataType } from '@stdlib/types/array';
import { ComplexLike } from '@stdlib/types/object';
import { ComplexLike } from '@stdlib/types/complex';

/**
* Creates a filled array having a specified length.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/// <reference types="@stdlib/types"/>

import { FloatOrComplexDataType as DataType, ArrayLike, FloatOrComplexTypedArray, Complex64Array, Complex128Array } from '@stdlib/types/array';
import { ComplexLike, Complex64, Complex128 } from '@stdlib/types/object';
import { ComplexLike, Complex64, Complex128 } from '@stdlib/types/complex';

/**
* Interface describing function options.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/// <reference types="@stdlib/types"/>

import { RealDataType, ComplexDataType, DataType } from '@stdlib/types/array';
import { ComplexLike } from '@stdlib/types/object';
import { ComplexLike } from '@stdlib/types/complex';

/**
* Returns the minimum array data type of the closest "kind" necessary for storing a provided scalar value.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { ComplexLike } from '@stdlib/types/object';
import { ComplexLike } from '@stdlib/types/complex';

/**
* Tests if a value is a complex number-like object.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex128, Complex64 } from '@stdlib/types/object';
import { Complex128, Complex64 } from '@stdlib/types/complex';

/**
* Tests if a value is a 64-bit or 128-bit complex number.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex128 } from '@stdlib/types/object';
import { Complex128 } from '@stdlib/types/complex';

/**
* Tests if a value is a 128-bit complex number.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex64 } from '@stdlib/types/object';
import { Complex64 } from '@stdlib/types/complex';

/**
* Tests if a value is a 64-bit complex number.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { ComplexLike } from '@stdlib/types/object';
import { ComplexLike } from '@stdlib/types/complex';

/**
* Real or complex number.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { ComplexLike } from '@stdlib/types/object';
import { ComplexLike } from '@stdlib/types/complex';

/**
* Real or complex number.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

/// <reference types="@stdlib/types"/>

import { ComplexLike } from '@stdlib/types/object';
import { ComplexLike } from '@stdlib/types/complex';
import Complex64 = require( '@stdlib/complex/float32' );
import wrap = require( './index' );

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex64, Complex128, ComplexDataType } from '@stdlib/types/object';
import { Complex64, Complex128, ComplexDataType } from '@stdlib/types/complex';

/**
* Complex number data type.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { ComplexDataType } from '@stdlib/types/object';
import { ComplexDataType } from '@stdlib/types/complex';

/**
* Returns a list of complex number data types.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex128 } from '@stdlib/types/object';
import { Complex128 } from '@stdlib/types/complex';

/**
* Returns the imaginary component of a double-precision complex floating-point number.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex64 } from '@stdlib/types/object';
import { Complex64 } from '@stdlib/types/complex';

/**
* Returns the imaginary component of a single-precision complex floating-point number.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { ComplexDataType } from '@stdlib/types/object';
import { ComplexDataType } from '@stdlib/types/complex';

/**
* Real number data types.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex128 } from '@stdlib/types/object';
import { Complex128 } from '@stdlib/types/complex';

/**
* Returns the real component of a double-precision complex floating-point number.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex64 } from '@stdlib/types/object';
import { Complex64 } from '@stdlib/types/complex';

/**
* Returns the real component of a single-precision complex floating-point number.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex128 } from '@stdlib/types/object';
import { Complex128 } from '@stdlib/types/complex';

/**
* Returns the real and imaginary components of a double-precision complex floating-point number.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex64 } from '@stdlib/types/object';
import { Complex64 } from '@stdlib/types/complex';

/**
* Returns the real and imaginary components of a single-precision complex floating-point number.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex128 } from '@stdlib/types/object';
import { Complex128 } from '@stdlib/types/complex';

/**
* Adds two double-precision complex floating-point numbers.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex64 } from '@stdlib/types/object';
import { Complex64 } from '@stdlib/types/complex';

/**
* Adds two single-precision complex floating-point numbers.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex128 } from '@stdlib/types/object';
import { Complex128 } from '@stdlib/types/complex';

/**
* Divides two double-precision complex floating-point numbers.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex128 } from '@stdlib/types/object';
import { Complex128 } from '@stdlib/types/complex';

/**
* Multiplies two double-precision complex floating-point numbers.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex64 } from '@stdlib/types/object';
import { Complex64 } from '@stdlib/types/complex';

/**
* Multiplies two single-precision complex floating-point numbers.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex128 } from '@stdlib/types/object';
import { Complex128 } from '@stdlib/types/complex';

/**
* Negates a double-precision complex floating-point number.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex64 } from '@stdlib/types/object';
import { Complex64 } from '@stdlib/types/complex';

/**
* Negates a single-precision complex floating-point number.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex128 } from '@stdlib/types/object';
import { Complex128 } from '@stdlib/types/complex';

/**
* Subtracts two double-precision complex floating-point numbers.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex64 } from '@stdlib/types/object';
import { Complex64 } from '@stdlib/types/complex';

/**
* Subtracts two single-precision complex floating-point numbers.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex128 } from '@stdlib/types/object';
import { Complex128 } from '@stdlib/types/complex';

/**
* Computes the absolute value of a double-precision complex floating-point number.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex128 } from '@stdlib/types/object';
import { Complex128 } from '@stdlib/types/complex';

/**
* Computes the squared absolute value of a double-precision complex floating-point number.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex64 } from '@stdlib/types/object';
import { Complex64 } from '@stdlib/types/complex';

/**
* Computes the squared absolute value of a single-precision complex floating-point number.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex64 } from '@stdlib/types/object';
import { Complex64 } from '@stdlib/types/complex';

/**
* Computes the absolute value of a single-precision complex floating-point number.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex128 } from '@stdlib/types/object';
import { Complex128 } from '@stdlib/types/complex';

/**
* Rounds a double-precision complex floating-point number toward positive infinity.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex64 } from '@stdlib/types/object';
import { Complex64 } from '@stdlib/types/complex';

/**
* Rounds a single-precision complex floating-point number toward positive infinity.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex128 } from '@stdlib/types/object';
import { Complex128 } from '@stdlib/types/complex';

/**
* Evaluates the cis function for a double-precision complex floating-point number.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex128 } from '@stdlib/types/object';
import { Complex128 } from '@stdlib/types/complex';

/**
* Evaluates the exponential function for a double-precision complex floating-point number.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { Complex128 } from '@stdlib/types/object';
import { Complex128 } from '@stdlib/types/complex';

/**
* Returns a double-precision complex floating-point number with the same magnitude as `z` and the sign of `y*z`.
Expand Down
Loading

1 comment on commit 32a2827

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
array/base/accessor-getter $\color{green}208/208$
$\color{green}+100.00\%$
$\color{green}8/8$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}208/208$
$\color{green}+100.00\%$
array/base/accessor-setter $\color{green}220/220$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}220/220$
$\color{green}+100.00\%$
array/base/accessors $\color{green}133/133$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}133/133$
$\color{green}+100.00\%$
array/base/arraylike2object $\color{green}100/100$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}100/100$
$\color{green}+100.00\%$
array/complex128 $\color{red}1350/1351$
$\color{green}+99.93\%$
$\color{red}227/229$
$\color{green}+99.13\%$
$\color{green}21/21$
$\color{green}+100.00\%$
$\color{red}1350/1351$
$\color{green}+99.93\%$
array/complex64 $\color{red}1350/1351$
$\color{green}+99.93\%$
$\color{red}225/227$
$\color{green}+99.12\%$
$\color{green}21/21$
$\color{green}+100.00\%$
$\color{red}1350/1351$
$\color{green}+99.93\%$
array/full-like $\color{green}124/124$
$\color{green}+100.00\%$
$\color{green}14/14$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}124/124$
$\color{green}+100.00\%$
array/full $\color{green}126/126$
$\color{green}+100.00\%$
$\color{green}12/12$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}126/126$
$\color{green}+100.00\%$
array/linspace $\color{green}1117/1117$
$\color{green}+100.00\%$
$\color{green}216/216$
$\color{green}+100.00\%$
$\color{green}9/9$
$\color{green}+100.00\%$
$\color{green}1117/1117$
$\color{green}+100.00\%$
array/min-dtype $\color{green}183/183$
$\color{green}+100.00\%$
$\color{green}47/47$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}183/183$
$\color{green}+100.00\%$
assert/is-complex-like $\color{green}109/109$
$\color{green}+100.00\%$
$\color{green}9/9$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}109/109$
$\color{green}+100.00\%$
assert/is-complex $\color{green}107/107$
$\color{green}+100.00\%$
$\color{green}6/6$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}107/107$
$\color{green}+100.00\%$
assert/is-complex128 $\color{green}96/96$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}96/96$
$\color{green}+100.00\%$
assert/is-complex64 $\color{green}96/96$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}96/96$
$\color{green}+100.00\%$
complex/base/cast-return $\color{green}266/266$
$\color{green}+100.00\%$
$\color{green}26/26$
$\color{green}+100.00\%$
$\color{green}8/8$
$\color{green}+100.00\%$
$\color{green}266/266$
$\color{green}+100.00\%$
complex/base/wrap-function $\color{green}287/287$
$\color{green}+100.00\%$
$\color{green}35/35$
$\color{green}+100.00\%$
$\color{green}8/8$
$\color{green}+100.00\%$
$\color{green}287/287$
$\color{green}+100.00\%$
complex/dtype $\color{green}216/216$
$\color{green}+100.00\%$
$\color{green}9/9$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}216/216$
$\color{green}+100.00\%$
complex/dtypes $\color{green}84/84$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}84/84$
$\color{green}+100.00\%$
complex/imag $\color{green}85/85$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}85/85$
$\color{green}+100.00\%$
complex/imagf $\color{green}85/85$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}85/85$
$\color{green}+100.00\%$
complex/promotion-rules $\color{green}148/148$
$\color{green}+100.00\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}148/148$
$\color{green}+100.00\%$
complex/real $\color{green}85/85$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}85/85$
$\color{green}+100.00\%$
complex/realf $\color{green}85/85$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}85/85$
$\color{green}+100.00\%$
complex/reim $\color{green}95/95$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}95/95$
$\color{green}+100.00\%$
complex/reimf $\color{green}95/95$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}95/95$
$\color{green}+100.00\%$
math/base/ops/cadd $\color{red}173/177$
$\color{green}+97.74\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}1/2$
$\color{green}+50.00\%$
$\color{red}173/177$
$\color{green}+97.74\%$
math/base/ops/caddf $\color{red}174/178$
$\color{green}+97.75\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}1/2$
$\color{green}+50.00\%$
$\color{red}174/178$
$\color{green}+97.75\%$
math/base/ops/cdiv $\color{red}358/362$
$\color{green}+98.89\%$
$\color{green}20/20$
$\color{green}+100.00\%$
$\color{red}3/4$
$\color{green}+75.00\%$
$\color{red}358/362$
$\color{green}+98.89\%$
math/base/ops/cmul $\color{red}186/190$
$\color{green}+97.89\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}1/2$
$\color{green}+50.00\%$
$\color{red}186/190$
$\color{green}+97.89\%$
math/base/ops/cmulf $\color{red}187/191$
$\color{green}+97.91\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}1/2$
$\color{green}+50.00\%$
$\color{red}187/191$
$\color{green}+97.91\%$
math/base/ops/cneg $\color{red}273/277$
$\color{green}+98.56\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}1/2$
$\color{green}+50.00\%$
$\color{red}273/277$
$\color{green}+98.56\%$
math/base/ops/cnegf $\color{red}273/277$
$\color{green}+98.56\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}1/2$
$\color{green}+50.00\%$
$\color{red}273/277$
$\color{green}+98.56\%$
math/base/ops/csub $\color{red}182/186$
$\color{green}+97.85\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}1/2$
$\color{green}+50.00\%$
$\color{red}182/186$
$\color{green}+97.85\%$
math/base/ops/csubf $\color{red}183/187$
$\color{green}+97.86\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}1/2$
$\color{green}+50.00\%$
$\color{red}183/187$
$\color{green}+97.86\%$
math/base/special/cabs $\color{red}136/139$
$\color{green}+97.84\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}1/2$
$\color{green}+50.00\%$
$\color{red}136/139$
$\color{green}+97.84\%$
math/base/special/cabs2 $\color{red}140/143$
$\color{green}+97.90\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}1/2$
$\color{green}+50.00\%$
$\color{red}140/143$
$\color{green}+97.90\%$
math/base/special/cabs2f $\color{green}95/95$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}95/95$
$\color{green}+100.00\%$
math/base/special/cabsf $\color{green}91/91$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}91/91$
$\color{green}+100.00\%$
math/base/special/cceil $\color{red}161/165$
$\color{green}+97.58\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}1/2$
$\color{green}+50.00\%$
$\color{red}161/165$
$\color{green}+97.58\%$
math/base/special/cceilf $\color{green}107/107$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}107/107$
$\color{green}+100.00\%$
math/base/special/ccis $\color{red}242/246$
$\color{green}+98.37\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{red}1/2$
$\color{green}+50.00\%$
$\color{red}242/246$
$\color{green}+98.37\%$
math/base/special/cexp $\color{red}231/235$
$\color{green}+98.30\%$
$\color{green}15/15$
$\color{green}+100.00\%$
$\color{red}1/2$
$\color{green}+50.00\%$
$\color{red}231/235$
$\color{green}+98.30\%$
math/base/special/cflipsign $\color{red}168/172$
$\color{green}+97.67\%$
$\color{green}6/6$
$\color{green}+100.00\%$
$\color{red}1/2$
$\color{green}+50.00\%$
$\color{red}168/172$
$\color{green}+97.67\%$
math/base/special/cflipsignf $\color{green}114/114$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}114/114$
$\color{green}+100.00\%$
math/base/special/cfloor $\color{red}248/252$
$\color{green}+98.41\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}1/2$
$\color{green}+50.00\%$
$\color{red}248/252$
$\color{green}+98.41\%$
math/base/special/cidentity $\color{red}153/157$
$\color{green}+97.45\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}1/2$
$\color{green}+50.00\%$
$\color{red}153/157$
$\color{green}+97.45\%$
math/base/special/cidentityf $\color{green}99/99$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}99/99$
$\color{green}+100.00\%$
math/base/special/cinv $\color{red}206/213$
$\color{green}+96.71\%$
$\color{red}7/8$
$\color{green}+87.50\%$
$\color{red}1/2$
$\color{green}+50.00\%$
$\color{red}206/213$
$\color{green}+96.71\%$
math/base/special/cphase $\color{red}134/137$
$\color{green}+97.81\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}1/2$
$\color{green}+50.00\%$
$\color{red}134/137$
$\color{green}+97.81\%$
math/base/special/cround $\color{red}215/219$
$\color{green}+98.17\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}1/2$
$\color{green}+50.00\%$
$\color{red}215/219$
$\color{green}+98.17\%$
math/base/special/csignum $\color{red}225/229$
$\color{green}+98.25\%$
$\color{green}6/6$
$\color{green}+100.00\%$
$\color{red}1/2$
$\color{green}+50.00\%$
$\color{red}225/229$
$\color{green}+98.25\%$
ndarray/base/broadcast-scalar $\color{green}129/129$
$\color{green}+100.00\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}129/129$
$\color{green}+100.00\%$
ndarray/base/from-scalar $\color{green}127/127$
$\color{green}+100.00\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}127/127$
$\color{green}+100.00\%$
ndarray/from-scalar $\color{green}219/219$
$\color{green}+100.00\%$
$\color{green}27/27$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}219/219$
$\color{green}+100.00\%$
strided/base/binary-signature-callbacks $\color{red}259/283$
$\color{green}+91.52\%$
$\color{red}31/39$
$\color{green}+79.49\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{red}259/283$
$\color{green}+91.52\%$
strided/base/cmap $\color{green}265/265$
$\color{green}+100.00\%$
$\color{green}19/19$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}265/265$
$\color{green}+100.00\%$
strided/base/mskunary-signature-callbacks $\color{red}217/220$
$\color{green}+98.64\%$
$\color{red}19/20$
$\color{green}+95.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{red}217/220$
$\color{green}+98.64\%$
strided/base/unary-signature-callbacks $\color{red}217/220$
$\color{green}+98.64\%$
$\color{red}19/20$
$\color{green}+95.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{red}217/220$
$\color{green}+98.64\%$
strided/base/zmap $\color{green}265/265$
$\color{green}+100.00\%$
$\color{green}19/19$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}265/265$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.