Skip to content

Commit 9a4ffa0

Browse files
committed
feat: add half-precision complex data type
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 6540f29 commit 9a4ffa0

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

lib/node_modules/@stdlib/ndarray/base/dtype-desc/lib/table.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ function table() {
3232

3333
'bool': 'boolean',
3434

35+
'complex32': 'half-precision floating-point complex number',
3536
'complex64': 'single-precision floating-point complex number',
3637
'complex128': 'double-precision floating-point complex number',
3738

lib/node_modules/@stdlib/ndarray/base/dtype-desc/test/test.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ var dtypeDesc = require( './../lib' );
3030
var DTYPES = [
3131
'float64',
3232
'float32',
33+
'float16',
3334
'int8',
3435
'uint8',
3536
'uint8c',
@@ -41,6 +42,7 @@ var DTYPES = [
4142
'uint64',
4243
'binary',
4344
'generic',
45+
'complex32',
4446
'complex64',
4547
'complex128',
4648
'bool'

0 commit comments

Comments
 (0)