/third_party/boost/boost/math/differentiation/ |
D | autodiff.hpp | 131 …using root_type = typename get_root_type<RealType>::type; // RealType in the root fvar<RealType,O… typedef in boost::math::differentiation::autodiff_v1::detail::fvar 136 fvar(root_type const&, bool const is_variable); 146 explicit fvar(root_type const&); // Initialize a constant. (No epsilon terms.) 163 fvar& operator+=(root_type const&); 170 fvar& operator-=(root_type const&); 177 fvar& operator*=(root_type const&); 184 fvar& operator/=(root_type const&); 197 fvar operator+(root_type const&) const; 201 friend fvar<RealType2, Order2> operator+(typename fvar<RealType2, Order2>::root_type const&, 209 fvar operator-(root_type const&) const; [all …]
|
D | autodiff_cpp11.hpp | 31 fvar<RealType, Order>::fvar(root_type const& ca, bool const is_variable) { in fvar() 48 v[1] = static_cast<root_type>(static_cast<int>(is_variable)); in fvar_cpp11() 95 product(boost::math::factorial<root_type>(static_cast<unsigned>(orders))...); in derivative() 124 order - i, Curry<typename return_type::root_type, Func>(f, i), std::forward<Fvars>(fvars)...); in apply_coefficients() 127 … order - i, Curry<typename return_type::root_type, Func>(f, i), std::forward<Fvars>(fvars)...); in apply_coefficients() 142 order, Curry<typename return_type::root_type, Func>(f, 0), std::forward<Fvars>(fvars)...); in apply_coefficients_nonhorner() 150 … order - i, Curry<typename return_type::root_type, Func>(f, i), std::forward<Fvars>(fvars)...), in apply_coefficients_nonhorner() 169 … order - i, Curry<typename return_type::root_type, Func>(f, i), std::forward<Fvars>(fvars)...) / in apply_derivatives() 170 factorial<root_type>(static_cast<unsigned>(i)); in apply_derivatives() 174 … order - i, Curry<typename return_type::root_type, Func>(f, i), std::forward<Fvars>(fvars)...) / in apply_derivatives() [all …]
|
/third_party/boost/boost/log/detail/ |
D | function_traits.hpp | 87 struct root_type : struct 109 typedef typename root_type< 118 typedef typename root_type< 125 typedef typename root_type< 132 typedef typename root_type< 157 typedef typename root_type< 168 typedef typename root_type< 175 typedef typename root_type<
|
/third_party/boost/libs/math/test/ |
D | test_autodiff.hpp | 172 using root_type = typename T::root_type; in isNearZero() typedef 173 return isNearZero(static_cast<root_type>(t)); in isNearZero()
|
/third_party/e2fsprogs/misc/ |
D | e2initrd_helper.c | 45 static int root_type; variable 315 root_type++; in PRS() 392 if (root_type) in main()
|
/third_party/flatbuffers/src/ |
D | flatc.cpp | 336 opts.root_type = argv[argi]; in Compile() 538 if (!opts.root_type.empty()) { in Compile() 539 if (!parser->SetRootType(opts.root_type.c_str())) in Compile() 540 Error("unknown root type: " + opts.root_type); in Compile()
|
/third_party/flatbuffers/tests/ |
D | native_type_test.fbs | 22 root_type ApplicationData;
|
D | arrays_test.fbs | 25 root_type ArrayTable;
|
D | monster_extra.fbs | 19 root_type MonsterExtra;
|
D | optional_scalars.fbs | 56 root_type ScalarStuff;
|
D | monster_test.fbs | 151 root_type Monster;
|
/third_party/flatbuffers/tests/evolution_test/ |
D | evolution_v1.fbs | 40 root_type Root;
|
D | evolution_v2.fbs | 51 root_type Root;
|
/third_party/flatbuffers/samples/ |
D | monster.fbs | 33 root_type Monster;
|
/third_party/flatbuffers/tests/union_vector/ |
D | union_vector.fbs | 30 root_type Movie;
|
/third_party/flatbuffers/tests/fuzzer/ |
D | parser_fuzzer.dict | 31 "root_type"
|
/third_party/flatbuffers/android/app/src/main/fbs/ |
D | animal.fbs | 23 root_type Animal;
|
/third_party/mindspore/mindspore/lite/schema/ |
D | gpu_cache.fbs | 39 root_type GpuCache;
|
D | model.fbs | 110 root_type MetaGraph;
|
D | model_v0.fbs | 304 root_type MetaGraph;
|
/third_party/flatbuffers/docs/source/ |
D | Grammar.md | 20 root\_decl = `root_type` ident `;`
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/cache/ |
D | de_tensor.fbs | 55 root_type TensorRowHeaderMsg;
|
/third_party/flatbuffers/reflection/ |
D | reflection.fbs | 123 root_type Schema;
|
/third_party/mindspore/mindspore/ccsrc/pipeline/jit/ |
D | action.cc | 318 auto root_type = root_input->Type() == nullptr ? nullptr : dyn_cast<Type>(root_input->Type()); in CheckRootInputShapeAndType() local 323 MS_EXCEPTION_IF_NULL(root_type); in CheckRootInputShapeAndType() 333 if (root_type->type_id() != loaded_type->type_id()) { in CheckRootInputShapeAndType() 335 … << " th input type differ from loaded graph. Input type: " << root_type->ToString() in CheckRootInputShapeAndType()
|
/third_party/boost/libs/math/doc/differentiation/ |
D | autodiff.tex | 820 using root_type = typename fvar<RealType, Order>::root_type; 822 root_type const d0 = cos(static_cast<root_type>(cr)); 826 root_type const d1 = -sin(static_cast<root_type>(cr)); 827 root_type const derivatives[4]{d0, d1, -d0, -d1};
|