-
Notifications
You must be signed in to change notification settings - Fork 0
/
ACC_PI_test.prj
1099 lines (1099 loc) · 52 KB
/
ACC_PI_test.prj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<deployment-project plugin="plugin.coder" plugin-version="R2018b">
<configuration build-checksum="2690452333" file="C:\Turtlebot_pro\Turtlebot_project-matlab_pro_file\ACC_PI_test.prj" location="C:\Turtlebot_pro\Turtlebot_project-matlab_pro_file" name="ACC_PI_test" target="target.unifiedcoder" target-name="MATLAB Coder">
<profile key="profile.mex">
<param.BuiltInstrumentedMex>false</param.BuiltInstrumentedMex>
<param.RanInstrumentedMex>false</param.RanInstrumentedMex>
<param.WorkingFolder>option.WorkingFolder.Project</param.WorkingFolder>
<param.SpecifiedWorkingFolder />
<param.BuildFolder>option.BuildFolder.Project</param.BuildFolder>
<param.SpecifiedBuildFolder />
<param.SearchPaths />
<param.ResponsivenessChecks>true</param.ResponsivenessChecks>
<param.ExtrinsicCalls>true</param.ExtrinsicCalls>
<param.IntegrityChecks>true</param.IntegrityChecks>
<param.SaturateOnIntegerOverflow>true</param.SaturateOnIntegerOverflow>
<param.GlobalDataSyncMethod>option.GlobalDataSyncMethod.SyncAlways</param.GlobalDataSyncMethod>
<param.EnableVariableSizing>true</param.EnableVariableSizing>
<param.DynamicMemoryAllocation>option.DynamicMemoryAllocation.Threshold</param.DynamicMemoryAllocation>
<param.DynamicMemoryAllocationThreshold>65536</param.DynamicMemoryAllocationThreshold>
<param.RowMajor>option.RowMajor.ColumnMajor</param.RowMajor>
<param.HighlightPotentialRowMajorIssues>true</param.HighlightPotentialRowMajorIssues>
<param.PreserveArrayDimensions>false</param.PreserveArrayDimensions>
<param.EliminateSingleDimensions>false</param.EliminateSingleDimensions>
<param.StackUsageMax>200000</param.StackUsageMax>
<param.FilePartitionMethod>option.FilePartitionMethod.MapMFileToCFile</param.FilePartitionMethod>
<param.GenerateComments>true</param.GenerateComments>
<param.MATLABSourceComments>false</param.MATLABSourceComments>
<param.ReservedNameArray />
<param.EnableDebugging>false</param.EnableDebugging>
<param.GenerateReport>true</param.GenerateReport>
<param.LaunchReport>false</param.LaunchReport>
<param.ReportPotentialDifferences>false</param.ReportPotentialDifferences>
<param.DefaultTestFile />
<param.MergeInstrumentationResults>false</param.MergeInstrumentationResults>
<param.VerificationMode>option.VerificationMode.None</param.VerificationMode>
<param.VerificationStatus>option.VerificationStatus.Passed</param.VerificationStatus>
<param.EnableMexProfiling>false</param.EnableMexProfiling>
<var.BuiltWithMexProfiling>false</var.BuiltWithMexProfiling>
<param.CustomSourceCode />
<param.CustomHeaderCode />
<param.CustomInitializer />
<param.CustomTerminator />
<param.CustomInclude />
<param.CustomSource />
<param.CustomLibrary />
<param.PostCodeGenCommand />
<param.mex.GenCodeOnly>false</param.mex.GenCodeOnly>
<param.ConstantFoldingTimeout>40000</param.ConstantFoldingTimeout>
<param.CompileTimeRecursionLimit>50</param.CompileTimeRecursionLimit>
<param.EnableRuntimeRecursion>true</param.EnableRuntimeRecursion>
<param.PreserveVariableNames>option.PreserveVariableNames.None</param.PreserveVariableNames>
<param.EchoExpressions>true</param.EchoExpressions>
<param.InlineThreshold>10</param.InlineThreshold>
<param.InlineThresholdMax>200</param.InlineThresholdMax>
<param.InlineStackLimit>4000</param.InlineStackLimit>
<param.EnableMemcpy>true</param.EnableMemcpy>
<param.MemcpyThreshold>64</param.MemcpyThreshold>
<param.EnableOpenMP>true</param.EnableOpenMP>
<param.InitFltsAndDblsToZero>true</param.InitFltsAndDblsToZero>
<param.ConstantInputs>option.ConstantInputs.CheckValues</param.ConstantInputs>
<param.EnableCRICodeCoverage>true</param.EnableCRICodeCoverage>
<param.EnableJIT>false</param.EnableJIT>
<param.EnableJITSilentBailOut>false</param.EnableJITSilentBailOut>
<param.CheckForIssuesJIT>true</param.CheckForIssuesJIT>
<unset>
<param.BuiltInstrumentedMex />
<param.RanInstrumentedMex />
<param.WorkingFolder />
<param.SpecifiedWorkingFolder />
<param.BuildFolder />
<param.SpecifiedBuildFolder />
<param.SearchPaths />
<param.ResponsivenessChecks />
<param.ExtrinsicCalls />
<param.IntegrityChecks />
<param.SaturateOnIntegerOverflow />
<param.GlobalDataSyncMethod />
<param.EnableVariableSizing />
<param.DynamicMemoryAllocation />
<param.DynamicMemoryAllocationThreshold />
<param.RowMajor />
<param.HighlightPotentialRowMajorIssues />
<param.PreserveArrayDimensions />
<param.EliminateSingleDimensions />
<param.StackUsageMax />
<param.FilePartitionMethod />
<param.GenerateComments />
<param.MATLABSourceComments />
<param.ReservedNameArray />
<param.EnableDebugging />
<param.GenerateReport />
<param.LaunchReport />
<param.ReportPotentialDifferences />
<param.DefaultTestFile />
<param.MergeInstrumentationResults />
<param.VerificationMode />
<param.EnableMexProfiling />
<var.BuiltWithMexProfiling />
<param.CustomSourceCode />
<param.CustomHeaderCode />
<param.CustomInitializer />
<param.CustomTerminator />
<param.CustomInclude />
<param.CustomSource />
<param.CustomLibrary />
<param.PostCodeGenCommand />
<param.mex.GenCodeOnly />
<param.ConstantFoldingTimeout />
<param.CompileTimeRecursionLimit />
<param.EnableRuntimeRecursion />
<param.PreserveVariableNames />
<param.EchoExpressions />
<param.InlineThreshold />
<param.InlineThresholdMax />
<param.InlineStackLimit />
<param.EnableMemcpy />
<param.MemcpyThreshold />
<param.EnableOpenMP />
<param.InitFltsAndDblsToZero />
<param.ConstantInputs />
<param.EnableCRICodeCoverage />
<param.EnableJIT />
<param.EnableJITSilentBailOut />
<param.CheckForIssuesJIT />
</unset>
</profile>
<profile key="profile.c">
<param.grt.GenCodeOnly>true</param.grt.GenCodeOnly>
<param.WorkingFolder>option.WorkingFolder.Specified</param.WorkingFolder>
<param.SpecifiedWorkingFolder>C:\Turtlebot_pro\Turtlebot_project-matlab_pro_file\code_generation</param.SpecifiedWorkingFolder>
<param.BuildFolder>option.BuildFolder.Project</param.BuildFolder>
<param.SpecifiedBuildFolder />
<param.SearchPaths />
<param.SaturateOnIntegerOverflow>true</param.SaturateOnIntegerOverflow>
<param.PurelyIntegerCode>false</param.PurelyIntegerCode>
<param.SupportNonFinite>true</param.SupportNonFinite>
<param.LoopUnrollThreshold>5</param.LoopUnrollThreshold>
<param.EnableVariableSizing>true</param.EnableVariableSizing>
<param.DynamicMemoryAllocation>option.DynamicMemoryAllocation.Threshold</param.DynamicMemoryAllocation>
<param.DynamicMemoryAllocationThreshold>65536</param.DynamicMemoryAllocationThreshold>
<param.RowMajor>option.RowMajor.ColumnMajor</param.RowMajor>
<param.HighlightPotentialRowMajorIssues>true</param.HighlightPotentialRowMajorIssues>
<param.PreserveArrayDimensions>false</param.PreserveArrayDimensions>
<param.EliminateSingleDimensions>false</param.EliminateSingleDimensions>
<param.StackUsageMax>200000</param.StackUsageMax>
<param.MultiInstanceCode>false</param.MultiInstanceCode>
<param.FilePartitionMethod>option.FilePartitionMethod.MapMFileToCFile</param.FilePartitionMethod>
<param.GenerateComments>true</param.GenerateComments>
<param.CommentStyle>option.CommentStyle.Auto</param.CommentStyle>
<param.MATLABSourceComments>false</param.MATLABSourceComments>
<param.MATLABFcnDesc>true</param.MATLABFcnDesc>
<param.DataTypeReplacement>option.DataTypeReplacement.CBuiltIn</param.DataTypeReplacement>
<param.ConvertIfToSwitch>false</param.ConvertIfToSwitch>
<param.PreserveExternInFcnDecls>true</param.PreserveExternInFcnDecls>
<param.EnableSignedLeftShifts>true</param.EnableSignedLeftShifts>
<param.EnableSignedRightShifts>true</param.EnableSignedRightShifts>
<param.ParenthesesLevel>option.ParenthesesLevel.Nominal</param.ParenthesesLevel>
<param.MaxIdLength>31</param.MaxIdLength>
<param.CustomSymbolStrGlobalVar>$M$N</param.CustomSymbolStrGlobalVar>
<param.CustomSymbolStrType>$M$N</param.CustomSymbolStrType>
<param.CustomSymbolStrField>$M$N</param.CustomSymbolStrField>
<param.CustomSymbolStrFcn>$M$N</param.CustomSymbolStrFcn>
<param.CustomSymbolStrTmpVar>$M$N</param.CustomSymbolStrTmpVar>
<param.CustomSymbolStrMacro>$M$N</param.CustomSymbolStrMacro>
<param.CustomSymbolStrEMXArray>emxArray_$M$N</param.CustomSymbolStrEMXArray>
<param.CustomSymbolStrEMXArrayFcn>emx$M$N</param.CustomSymbolStrEMXArrayFcn>
<param.ReservedNameArray />
<param.RuntimeChecks>false</param.RuntimeChecks>
<param.Verbose>false</param.Verbose>
<param.GenerateReport>true</param.GenerateReport>
<param.GenerateCodeMetricsReport>false</param.GenerateCodeMetricsReport>
<param.GenerateCodeReplacementReport>false</param.GenerateCodeReplacementReport>
<param.HighlightPotentialDataTypeIssues>false</param.HighlightPotentialDataTypeIssues>
<param.LaunchReport>false</param.LaunchReport>
<param.ReportPotentialDifferences>false</param.ReportPotentialDifferences>
<param.SILDebugging>false</param.SILDebugging>
<param.SILPILCheckConstantInputs>true</param.SILPILCheckConstantInputs>
<param.SILPILSyncGlobalData>true</param.SILPILSyncGlobalData>
<param.CodeExecutionProfiling>false</param.CodeExecutionProfiling>
<param.DefaultTestFile />
<param.MergeInstrumentationResults>false</param.MergeInstrumentationResults>
<param.RanPilSilVerification>false</param.RanPilSilVerification>
<param.VerificationMode>option.VerificationMode.None</param.VerificationMode>
<param.VerificationStatus>option.VerificationStatus.Inactive</param.VerificationStatus>
<param.CustomSourceCode />
<param.CustomHeaderCode />
<param.CustomInitializer />
<param.CustomTerminator />
<param.CustomInclude />
<param.CustomSource />
<param.CustomLibrary />
<param.PostCodeGenCommand />
<param.TargetLangStandard>C++03 (ISO)</param.TargetLangStandard>
<param.CodeReplacementLibrary>None</param.CodeReplacementLibrary>
<param.DeprecatedCRLFlag>false</param.DeprecatedCRLFlag>
<param.SameHardware>true</param.SameHardware>
<param.Toolchain>Automatically locate an installed toolchain</param.Toolchain>
<param.BuildConfiguration>Faster Builds</param.BuildConfiguration>
<param.CustomToolchainOptions />
<var.ToolchainSettingsVisible>true</var.ToolchainSettingsVisible>
<param.target.Data />
<param.target.ActiveType>option.target.TargetType.MatlabHost</param.target.ActiveType>
<param.target.ActiveTarget />
<param.HardwareVendor.Production>Generic</param.HardwareVendor.Production>
<param.HardwareType.Production>MATLAB Host Computer</param.HardwareType.Production>
<param.HWDeviceType.Production>Generic->MATLAB Host Computer</param.HWDeviceType.Production>
<var.instance.enabled.Production>true</var.instance.enabled.Production>
<param.HardwareSizeChar.Production>8</param.HardwareSizeChar.Production>
<param.HardwareSizeShort.Production>16</param.HardwareSizeShort.Production>
<param.HardwareSizeInt.Production>32</param.HardwareSizeInt.Production>
<param.HardwareSizeLong.Production>32</param.HardwareSizeLong.Production>
<param.HardwareSizeLongLong.Production>64</param.HardwareSizeLongLong.Production>
<param.HardwareSizeFloat.Production>32</param.HardwareSizeFloat.Production>
<param.HardwareSizeDouble.Production>64</param.HardwareSizeDouble.Production>
<param.HardwareSizeWord.Production>64</param.HardwareSizeWord.Production>
<param.HardwareSizePointer.Production>64</param.HardwareSizePointer.Production>
<param.HardwareSizeSizeT.Production>64</param.HardwareSizeSizeT.Production>
<param.HardwareSizePtrDiffT.Production>64</param.HardwareSizePtrDiffT.Production>
<param.HardwareEndianness.Production>option.HardwareEndianness.Little</param.HardwareEndianness.Production>
<param.HardwareArithmeticRightShift.Production>true</param.HardwareArithmeticRightShift.Production>
<param.HardwareLongLongMode.Production>true</param.HardwareLongLongMode.Production>
<param.HardwareAtomicIntegerSize.Production>option.HardwareAtomicIntegerSize.Char</param.HardwareAtomicIntegerSize.Production>
<param.HardwareAtomicFloatSize.Production>option.HardwareAtomicFloatSize.None</param.HardwareAtomicFloatSize.Production>
<param.HardwareDivisionRounding.Production>option.HardwareDivisionRounding.Zero</param.HardwareDivisionRounding.Production>
<param.HardwareVendor.Target>Generic</param.HardwareVendor.Target>
<param.HardwareType.Target>MATLAB Host Computer</param.HardwareType.Target>
<param.HWDeviceType.Target>Generic->MATLAB Host Computer</param.HWDeviceType.Target>
<var.instance.enabled.Target>false</var.instance.enabled.Target>
<param.HardwareSizeChar.Target>8</param.HardwareSizeChar.Target>
<param.HardwareSizeShort.Target>16</param.HardwareSizeShort.Target>
<param.HardwareSizeInt.Target>32</param.HardwareSizeInt.Target>
<param.HardwareSizeLong.Target>32</param.HardwareSizeLong.Target>
<param.HardwareSizeLongLong.Target>64</param.HardwareSizeLongLong.Target>
<param.HardwareSizeFloat.Target>32</param.HardwareSizeFloat.Target>
<param.HardwareSizeDouble.Target>64</param.HardwareSizeDouble.Target>
<param.HardwareSizeWord.Target>64</param.HardwareSizeWord.Target>
<param.HardwareSizePointer.Target>64</param.HardwareSizePointer.Target>
<param.HardwareSizeSizeT.Target>64</param.HardwareSizeSizeT.Target>
<param.HardwareSizePtrDiffT.Target>64</param.HardwareSizePtrDiffT.Target>
<param.HardwareEndianness.Target>option.HardwareEndianness.Little</param.HardwareEndianness.Target>
<param.HardwareArithmeticRightShift.Target>true</param.HardwareArithmeticRightShift.Target>
<param.HardwareLongLongMode.Target>true</param.HardwareLongLongMode.Target>
<param.HardwareAtomicIntegerSize.Target>option.HardwareAtomicIntegerSize.Char</param.HardwareAtomicIntegerSize.Target>
<param.HardwareAtomicFloatSize.Target>option.HardwareAtomicFloatSize.None</param.HardwareAtomicFloatSize.Target>
<param.HardwareDivisionRounding.Target>option.HardwareDivisionRounding.Zero</param.HardwareDivisionRounding.Target>
<param.CastingMode>option.CastingMode.Nominal</param.CastingMode>
<param.IndentStyle>option.IndentStyle.K&R</param.IndentStyle>
<param.IndentSize>2</param.IndentSize>
<param.ColumnLimit>80</param.ColumnLimit>
<param.ConstantFoldingTimeout>40000</param.ConstantFoldingTimeout>
<param.CompileTimeRecursionLimit>50</param.CompileTimeRecursionLimit>
<param.EnableRuntimeRecursion>true</param.EnableRuntimeRecursion>
<param.IncludeTerminateFcn>true</param.IncludeTerminateFcn>
<param.GenerateExampleMain>option.GenerateExampleMain.GenerateCodeOnly</param.GenerateExampleMain>
<param.PreserveVariableNames>option.PreserveVariableNames.None</param.PreserveVariableNames>
<param.CCompilerOptimization>option.CCompilerOptimization.Off</param.CCompilerOptimization>
<param.CCompilerCustomOptimizations />
<param.GenerateMakefile>true</param.GenerateMakefile>
<param.BuildToolEnable>false</param.BuildToolEnable>
<param.MakeCommand>make_rtw</param.MakeCommand>
<param.TemplateMakefile>default_tmf</param.TemplateMakefile>
<param.BuildToolConfiguration />
<param.InlineThreshold>10</param.InlineThreshold>
<param.InlineThresholdMax>200</param.InlineThresholdMax>
<param.InlineStackLimit>4000</param.InlineStackLimit>
<param.EnableStrengthReduction>false</param.EnableStrengthReduction>
<param.EnableMemcpy>true</param.EnableMemcpy>
<param.MemcpyThreshold>64</param.MemcpyThreshold>
<param.EnableOpenMP>true</param.EnableOpenMP>
<param.InitFltsAndDblsToZero>true</param.InitFltsAndDblsToZero>
<param.GenerateNonFiniteFilesIfUsed>true</param.GenerateNonFiniteFilesIfUsed>
<param.PassStructByReference>true</param.PassStructByReference>
<param.CustomLAPACKCallback />
<param.CustomFFTCallback />
<param.CustomBLASCallback />
<param.GenerateDefaultInSwitch>false</param.GenerateDefaultInSwitch>
<param.EnableTraceability>true</param.EnableTraceability>
<param.UseECoderFeatures>true</param.UseECoderFeatures>
<param.psCustomPrjState>false</param.psCustomPrjState>
<param.psCustomProjectFile />
<param.psCheckConfValue>option.psCheckConfValue.onWarnCheckConfDlg</param.psCheckConfValue>
<param.psUniqueOutPutState>true</param.psUniqueOutPutState>
<param.psOpenResultsState>true</param.psOpenResultsState>
<param.psProductModeValue>option.psProductModeValue.codeProver</param.psProductModeValue>
<param.psQuickConfValue>option.psQuickConfValue.proj</param.psQuickConfValue>
<param.psOutputFolder>results_$codegenName$</param.psOutputFolder>
<unset>
<param.BuildFolder />
<param.SpecifiedBuildFolder />
<param.SearchPaths />
<param.SaturateOnIntegerOverflow />
<param.PurelyIntegerCode />
<param.SupportNonFinite />
<param.LoopUnrollThreshold />
<param.EnableVariableSizing />
<param.DynamicMemoryAllocation />
<param.DynamicMemoryAllocationThreshold />
<param.RowMajor />
<param.HighlightPotentialRowMajorIssues />
<param.PreserveArrayDimensions />
<param.EliminateSingleDimensions />
<param.StackUsageMax />
<param.MultiInstanceCode />
<param.FilePartitionMethod />
<param.GenerateComments />
<param.CommentStyle />
<param.MATLABSourceComments />
<param.MATLABFcnDesc />
<param.DataTypeReplacement />
<param.ConvertIfToSwitch />
<param.PreserveExternInFcnDecls />
<param.EnableSignedLeftShifts />
<param.EnableSignedRightShifts />
<param.ParenthesesLevel />
<param.MaxIdLength />
<param.CustomSymbolStrGlobalVar />
<param.CustomSymbolStrType />
<param.CustomSymbolStrField />
<param.CustomSymbolStrFcn />
<param.CustomSymbolStrTmpVar />
<param.CustomSymbolStrMacro />
<param.CustomSymbolStrEMXArray />
<param.CustomSymbolStrEMXArrayFcn />
<param.ReservedNameArray />
<param.RuntimeChecks />
<param.Verbose />
<param.GenerateReport />
<param.GenerateCodeMetricsReport />
<param.GenerateCodeReplacementReport />
<param.HighlightPotentialDataTypeIssues />
<param.LaunchReport />
<param.ReportPotentialDifferences />
<param.SILDebugging />
<param.SILPILCheckConstantInputs />
<param.SILPILSyncGlobalData />
<param.CodeExecutionProfiling />
<param.DefaultTestFile />
<param.MergeInstrumentationResults />
<param.RanPilSilVerification />
<param.VerificationMode />
<param.VerificationStatus />
<param.CustomSourceCode />
<param.CustomHeaderCode />
<param.CustomInitializer />
<param.CustomTerminator />
<param.CustomInclude />
<param.CustomSource />
<param.CustomLibrary />
<param.PostCodeGenCommand />
<param.TargetLangStandard />
<param.CodeReplacementLibrary />
<param.DeprecatedCRLFlag />
<param.SameHardware />
<param.Toolchain />
<param.BuildConfiguration />
<param.CustomToolchainOptions />
<var.ToolchainSettingsVisible />
<param.target.Data />
<param.target.ActiveType />
<param.target.ActiveTarget />
<param.HardwareVendor.Production />
<param.HardwareType.Production />
<param.HWDeviceType.Production />
<var.instance.enabled.Production />
<param.HardwareSizeChar.Production />
<param.HardwareSizeShort.Production />
<param.HardwareSizeInt.Production />
<param.HardwareSizeLong.Production />
<param.HardwareSizeLongLong.Production />
<param.HardwareSizeFloat.Production />
<param.HardwareSizeDouble.Production />
<param.HardwareEndianness.Production />
<param.HardwareAtomicIntegerSize.Production />
<param.HardwareAtomicFloatSize.Production />
<param.HardwareVendor.Target />
<param.HardwareType.Target />
<param.HWDeviceType.Target />
<var.instance.enabled.Target />
<param.HardwareSizeChar.Target />
<param.HardwareSizeShort.Target />
<param.HardwareSizeInt.Target />
<param.HardwareSizeLong.Target />
<param.HardwareSizeLongLong.Target />
<param.HardwareSizeFloat.Target />
<param.HardwareSizeDouble.Target />
<param.HardwareEndianness.Target />
<param.HardwareAtomicIntegerSize.Target />
<param.HardwareAtomicFloatSize.Target />
<param.CastingMode />
<param.IndentStyle />
<param.IndentSize />
<param.ColumnLimit />
<param.ConstantFoldingTimeout />
<param.CompileTimeRecursionLimit />
<param.EnableRuntimeRecursion />
<param.IncludeTerminateFcn />
<param.GenerateExampleMain />
<param.PreserveVariableNames />
<param.CCompilerOptimization />
<param.CCompilerCustomOptimizations />
<param.GenerateMakefile />
<param.BuildToolEnable />
<param.MakeCommand />
<param.TemplateMakefile />
<param.BuildToolConfiguration />
<param.InlineThreshold />
<param.InlineThresholdMax />
<param.InlineStackLimit />
<param.EnableStrengthReduction />
<param.EnableMemcpy />
<param.MemcpyThreshold />
<param.EnableOpenMP />
<param.InitFltsAndDblsToZero />
<param.GenerateNonFiniteFilesIfUsed />
<param.PassStructByReference />
<param.CustomLAPACKCallback />
<param.CustomFFTCallback />
<param.CustomBLASCallback />
<param.GenerateDefaultInSwitch />
<param.EnableTraceability />
<param.UseECoderFeatures />
<param.psCustomPrjState />
<param.psCustomProjectFile />
<param.psCheckConfValue />
<param.psUniqueOutPutState />
<param.psOpenResultsState />
<param.psProductModeValue />
<param.psQuickConfValue />
<param.psOutputFolder />
</unset>
</profile>
<profile key="profile.hdl">
<param.hdl.Workflow />
<param.hdl.TargetLanguage />
<param.hdl.TargetPlatform />
<param.hdl.SynthesisTool />
<param.hdl.InputFrequency />
<param.hdl.TargetFrequency />
<param.hdl.IPCoreName />
<param.hdl.IPCoreVersion />
<param.hdl.AdditionalIPFiles />
<param.hdl.ExecutionMode />
<param.hdl.SynthesisToolChipFamily />
<param.hdl.SynthesisToolDeviceName />
<param.hdl.SynthesisToolPackageName />
<param.hdl.SynthesisToolSpeedValue />
<param.hdl.TargetInterface />
<param.hdl.CheckConformance />
<param.hdl.LaunchConformanceReport />
<param.hdl.GenerateEDAScripts />
<param.hdl.GenerateHDLCode />
<param.hdl.AdditionalSynthesisProjectFiles />
<param.hdl.CriticalPathSource />
<param.hdl.EmbeddedSystemTool />
<param.hdl.EmbeddedSystemProjectFolder />
<param.hdl.BitstreamBuildMode />
<param.hdl.ReferenceDesign />
<param.hdl.ReferenceDesignPath />
<param.hdl.LegacyDefaultTestFile />
<param.WorkingFolder>option.WorkingFolder.Project</param.WorkingFolder>
<param.SpecifiedWorkingFolder />
<param.BuildFolder>option.BuildFolder.Project</param.BuildFolder>
<param.SpecifiedBuildFolder />
<param.SearchPaths />
<param.hdl.MapPersistentVarsToRAM />
<param.hdl.RAMThreshold />
<param.hdl.MapPipelineDelaysToRAM />
<param.hdl.RAMVariableNames />
<param.hdl.RegisterInputs />
<param.hdl.RegisterOutputs />
<param.hdl.DistributedPipelining />
<param.hdl.DistributedPipeliningPriority />
<param.hdl.PreserveDesignDelays />
<param.hdl.InputPipeline />
<param.hdl.OutputPipeline />
<param.hdl.PipelineVariables />
<param.hdl.ResourceSharing />
<param.hdl.ConstantMultiplierOptimization />
<param.hdl.LoopOptimization />
<param.GenerateComments>true</param.GenerateComments>
<param.MATLABSourceComments>false</param.MATLABSourceComments>
<param.hdl.VHDLFileExt />
<param.hdl.VerilogFileExt />
<param.hdl.DateComment />
<param.hdl.UserComment />
<param.hdl.ModulePrefix />
<param.hdl.PackagePostfix />
<param.hdl.EntityConflictPostfix />
<param.hdl.ReservedWordPostfix />
<param.hdl.ClockProcessPostfix />
<param.hdl.ComplexRealPostfix />
<param.hdl.ComplexImagPostfix />
<param.hdl.PipelinePostfix />
<param.hdl.EnablePrefix />
<param.hdl.InlineConfigurations />
<param.hdl.UseRisingEdge />
<param.hdl.UseMatrixTypesInHDL />
<param.hdl.HDLCompileFilePostfix />
<param.hdl.HDLCompileInit />
<param.hdl.HDLCompileVHDLCmd />
<param.hdl.HDLCompileVerilogCmd />
<param.hdl.HDLCompileTerm />
<param.hdl.HDLSimFilePostfix />
<param.hdl.HDLSimInit />
<param.hdl.HDLSimCmd />
<param.hdl.HDLSimViewWaveCmd />
<param.hdl.HDLSimTerm />
<param.hdl.HDLSynthTool />
<var.hasSynthesisToolScript />
<var.toolSpecificEDAScript />
<param.hdl.HDLSynthFilePostfix />
<param.hdl.HDLSynthInit />
<param.hdl.HDLSynthCmd />
<param.hdl.HDLSynthTerm />
<param.hdl.HDLLintTool />
<var.LintToolScript />
<var.hasHDLLintTool />
<param.hdl.HDLLintInit />
<param.hdl.HDLLintCmd />
<param.hdl.HDLLintTerm />
<param.hdl.ResetType />
<param.hdl.ResetAssertedLevel />
<param.hdl.ResetInputPort />
<param.hdl.ClockInputPort />
<param.hdl.ClockEdge />
<param.hdl.ClockEnableInputPort />
<param.hdl.Oversampling />
<param.hdl.EnableRate />
<param.hdl.InputType />
<param.hdl.OutputType />
<param.hdl.ClockEnableOutputPort />
<param.hdl.ScalarizePorts />
<param.hdl.HDLCodingStandard />
<var.HDLCodingStandard_FilterPassingRules_enable />
<var.HDLCodingStandard_DetectDuplicateNamesCheck_enable />
<var.HDLCodingStandard_HDLKeywords_enable />
<var.HDLCodingStandard_ModuleInstanceEntityNameLength_enable />
<var.HDLCodingStandard_ModuleInstanceEntityNameLength_min />
<var.HDLCodingStandard_ModuleInstanceEntityNameLength_max />
<var.HDLCodingStandard_SignalPortParamNameLength_enable />
<var.HDLCodingStandard_SignalPortParamNameLength_min />
<var.HDLCodingStandard_SignalPortParamNameLength_max />
<var.HDLCodingStandard_MinimizeVariableUsage_enable />
<var.HDLCodingStandard_InitialStatements_enable />
<var.HDLCodingStandard_IfElseChain_enable />
<var.HDLCodingStandard_IfElseChain_length />
<var.HDLCodingStandard_IfElseNesting_enable />
<var.HDLCodingStandard_IfElseNesting_depth />
<var.HDLCodingStandard_MultiplierBitWidth_enable />
<var.HDLCodingStandard_MultiplierBitWidth_width />
<var.HDLCodingStandard_NonIntegerTypes_enable />
<var.HDLCodingStandard_LineLength_enable />
<var.HDLCodingStandard_LineLength_length />
<param.hdl.GenerateCosimTestBench />
<param.hdl.CosimLogOutputs />
<param.hdl.CosimTool />
<param.hdl.CosimRunMode />
<param.hdl.SimulateCosimTestBench />
<param.hdl.CosimClockHighTime />
<param.hdl.CosimClockLowTime />
<param.hdl.CosimHoldTime />
<param.hdl.CosimClockEnableDelay />
<param.hdl.CosimResetLength />
<param.hdl.GenerateFILTestBench />
<param.hdl.FILLogOutputs />
<param.hdl.FILBoardName />
<param.hdl.FILConnection />
<param.hdl.FILBoardIPAddress />
<param.hdl.FILBoardMACAddress />
<param.hdl.FILAdditionalFiles />
<param.hdl.SimulateFILTestBench />
<var.hasTestBench />
<param.hdl.GenerateHDLTestBench />
<param.hdl.SimulateGeneratedCode />
<param.hdl.SimulationTool />
<param.hdl.TestBenchPostfix />
<param.hdl.ForceClock />
<param.hdl.ClockHighTime />
<param.hdl.ClockLowTime />
<param.hdl.HoldTime />
<param.hdl.ForceClockEnable />
<param.hdl.TestBenchClockEnableDelay />
<param.hdl.ForceReset />
<param.hdl.ResetLength />
<param.hdl.HoldInputDataBetweenSamples />
<param.hdl.InputDataInterval />
<param.hdl.InitializeTestBenchInputs />
<param.hdl.MultifileTestBench />
<param.hdl.TestBenchDataPostfix />
<param.hdl.TestReferencePostfix />
<param.hdl.UseFileIOInTestBench />
<param.hdl.IgnoreDataChecking />
<param.hdl.SimulationIterationLimit />
<param.hdl.UseFiAccelForTestBench />
<param.hdl.hdlVariables />
<param.hdl.hdlComputedVariables />
<param.hdl.InitializeBlockRAM />
<param.hdl.RAMArchitecture />
<param.hdl.PartitionFunctions />
<param.hdl.InstantiateFunctions />
<param.hdl.GenerateMLFcnBlock />
<param.hdl.GenerateXSGBlock />
<unset>
<param.hdl.Workflow />
<param.hdl.TargetLanguage />
<param.hdl.TargetPlatform />
<param.hdl.SynthesisTool />
<param.hdl.InputFrequency />
<param.hdl.TargetFrequency />
<param.hdl.IPCoreName />
<param.hdl.IPCoreVersion />
<param.hdl.AdditionalIPFiles />
<param.hdl.ExecutionMode />
<param.hdl.SynthesisToolChipFamily />
<param.hdl.SynthesisToolDeviceName />
<param.hdl.SynthesisToolPackageName />
<param.hdl.SynthesisToolSpeedValue />
<param.hdl.TargetInterface />
<param.hdl.CheckConformance />
<param.hdl.LaunchConformanceReport />
<param.hdl.GenerateEDAScripts />
<param.hdl.GenerateHDLCode />
<param.hdl.AdditionalSynthesisProjectFiles />
<param.hdl.CriticalPathSource />
<param.hdl.EmbeddedSystemTool />
<param.hdl.EmbeddedSystemProjectFolder />
<param.hdl.BitstreamBuildMode />
<param.hdl.ReferenceDesign />
<param.hdl.ReferenceDesignPath />
<param.hdl.LegacyDefaultTestFile />
<param.WorkingFolder />
<param.SpecifiedWorkingFolder />
<param.BuildFolder />
<param.SpecifiedBuildFolder />
<param.SearchPaths />
<param.hdl.MapPersistentVarsToRAM />
<param.hdl.RAMThreshold />
<param.hdl.MapPipelineDelaysToRAM />
<param.hdl.RAMVariableNames />
<param.hdl.RegisterInputs />
<param.hdl.RegisterOutputs />
<param.hdl.DistributedPipelining />
<param.hdl.DistributedPipeliningPriority />
<param.hdl.PreserveDesignDelays />
<param.hdl.InputPipeline />
<param.hdl.OutputPipeline />
<param.hdl.PipelineVariables />
<param.hdl.ResourceSharing />
<param.hdl.ConstantMultiplierOptimization />
<param.hdl.LoopOptimization />
<param.GenerateComments />
<param.MATLABSourceComments />
<param.hdl.VHDLFileExt />
<param.hdl.VerilogFileExt />
<param.hdl.DateComment />
<param.hdl.UserComment />
<param.hdl.ModulePrefix />
<param.hdl.PackagePostfix />
<param.hdl.EntityConflictPostfix />
<param.hdl.ReservedWordPostfix />
<param.hdl.ClockProcessPostfix />
<param.hdl.ComplexRealPostfix />
<param.hdl.ComplexImagPostfix />
<param.hdl.PipelinePostfix />
<param.hdl.EnablePrefix />
<param.hdl.InlineConfigurations />
<param.hdl.UseRisingEdge />
<param.hdl.UseMatrixTypesInHDL />
<param.hdl.HDLCompileFilePostfix />
<param.hdl.HDLCompileInit />
<param.hdl.HDLCompileVHDLCmd />
<param.hdl.HDLCompileVerilogCmd />
<param.hdl.HDLCompileTerm />
<param.hdl.HDLSimFilePostfix />
<param.hdl.HDLSimInit />
<param.hdl.HDLSimCmd />
<param.hdl.HDLSimViewWaveCmd />
<param.hdl.HDLSimTerm />
<param.hdl.HDLSynthTool />
<var.hasSynthesisToolScript />
<var.toolSpecificEDAScript />
<param.hdl.HDLSynthFilePostfix />
<param.hdl.HDLSynthInit />
<param.hdl.HDLSynthCmd />
<param.hdl.HDLSynthTerm />
<param.hdl.HDLLintTool />
<var.LintToolScript />
<var.hasHDLLintTool />
<param.hdl.HDLLintInit />
<param.hdl.HDLLintCmd />
<param.hdl.HDLLintTerm />
<param.hdl.ResetType />
<param.hdl.ResetAssertedLevel />
<param.hdl.ResetInputPort />
<param.hdl.ClockInputPort />
<param.hdl.ClockEdge />
<param.hdl.ClockEnableInputPort />
<param.hdl.Oversampling />
<param.hdl.EnableRate />
<param.hdl.InputType />
<param.hdl.OutputType />
<param.hdl.ClockEnableOutputPort />
<param.hdl.ScalarizePorts />
<param.hdl.HDLCodingStandard />
<var.HDLCodingStandard_FilterPassingRules_enable />
<var.HDLCodingStandard_DetectDuplicateNamesCheck_enable />
<var.HDLCodingStandard_HDLKeywords_enable />
<var.HDLCodingStandard_ModuleInstanceEntityNameLength_enable />
<var.HDLCodingStandard_ModuleInstanceEntityNameLength_min />
<var.HDLCodingStandard_ModuleInstanceEntityNameLength_max />
<var.HDLCodingStandard_SignalPortParamNameLength_enable />
<var.HDLCodingStandard_SignalPortParamNameLength_min />
<var.HDLCodingStandard_SignalPortParamNameLength_max />
<var.HDLCodingStandard_MinimizeVariableUsage_enable />
<var.HDLCodingStandard_InitialStatements_enable />
<var.HDLCodingStandard_IfElseChain_enable />
<var.HDLCodingStandard_IfElseChain_length />
<var.HDLCodingStandard_IfElseNesting_enable />
<var.HDLCodingStandard_IfElseNesting_depth />
<var.HDLCodingStandard_MultiplierBitWidth_enable />
<var.HDLCodingStandard_MultiplierBitWidth_width />
<var.HDLCodingStandard_NonIntegerTypes_enable />
<var.HDLCodingStandard_LineLength_enable />
<var.HDLCodingStandard_LineLength_length />
<param.hdl.GenerateCosimTestBench />
<param.hdl.CosimLogOutputs />
<param.hdl.CosimTool />
<param.hdl.CosimRunMode />
<param.hdl.SimulateCosimTestBench />
<param.hdl.CosimClockHighTime />
<param.hdl.CosimClockLowTime />
<param.hdl.CosimHoldTime />
<param.hdl.CosimClockEnableDelay />
<param.hdl.CosimResetLength />
<param.hdl.GenerateFILTestBench />
<param.hdl.FILLogOutputs />
<param.hdl.FILBoardName />
<param.hdl.FILConnection />
<param.hdl.FILBoardIPAddress />
<param.hdl.FILBoardMACAddress />
<param.hdl.FILAdditionalFiles />
<param.hdl.SimulateFILTestBench />
<var.hasTestBench />
<param.hdl.GenerateHDLTestBench />
<param.hdl.SimulateGeneratedCode />
<param.hdl.SimulationTool />
<param.hdl.TestBenchPostfix />
<param.hdl.ForceClock />
<param.hdl.ClockHighTime />
<param.hdl.ClockLowTime />
<param.hdl.HoldTime />
<param.hdl.ForceClockEnable />
<param.hdl.TestBenchClockEnableDelay />
<param.hdl.ForceReset />
<param.hdl.ResetLength />
<param.hdl.HoldInputDataBetweenSamples />
<param.hdl.InputDataInterval />
<param.hdl.InitializeTestBenchInputs />
<param.hdl.MultifileTestBench />
<param.hdl.TestBenchDataPostfix />
<param.hdl.TestReferencePostfix />
<param.hdl.UseFileIOInTestBench />
<param.hdl.IgnoreDataChecking />
<param.hdl.SimulationIterationLimit />
<param.hdl.UseFiAccelForTestBench />
<param.hdl.hdlVariables />
<param.hdl.hdlComputedVariables />
<param.hdl.InitializeBlockRAM />
<param.hdl.RAMArchitecture />
<param.hdl.PartitionFunctions />
<param.hdl.InstantiateFunctions />
<param.hdl.GenerateMLFcnBlock />
<param.hdl.GenerateXSGBlock />
</unset>
</profile>
<param.objective>option.objective.c</param.objective>
<param.WorkflowStep>workflowSummary</param.WorkflowStep>
<param.TestSnippets>
<item>ACC_PI_test(velex(1), velex(2), mean_measurement(1), mean_measurement(2), msg_odom.Twist.Twist.Linear.X, msg_odom.Twist.Twist.Linear.Y)</item>
</param.TestSnippets>
<param.DefaultImportExportVariable>config</param.DefaultImportExportVariable>
<param.ExternalFcnMajority>column</param.ExternalFcnMajority>
<param.UseGlobals>option.UseGlobals.No</param.UseGlobals>
<param.outputfile>${PROJECT_ROOT}\codegen\lib\ACC_PI_test\ACC_PI_test.lib</param.outputfile>
<param.version>R2012a</param.version>
<param.HasECoderFeatures>true</param.HasECoderFeatures>
<param.HasGpuCoder>true</param.HasGpuCoder>
<var.HasNeuralNetworkToolbox>true</var.HasNeuralNetworkToolbox>
<param.mex.mainhtml />
<param.grt.mainhtml />
<param.CallGeneratedCodeFromTest>true</param.CallGeneratedCodeFromTest>
<param.AutoInferDefaultFile />
<param.AutoInferUseVariableSize>false</param.AutoInferUseVariableSize>
<param.AutoInferUseUnboundedSize>false</param.AutoInferUseUnboundedSize>
<param.AutoInferVariableSizeThreshold>1024</param.AutoInferVariableSizeThreshold>
<param.AutoInferUnboundedSizeThreshold>2048</param.AutoInferUnboundedSizeThreshold>
<param.EnableFixedPointStep>false</param.EnableFixedPointStep>
<param.EnableScreener>true</param.EnableScreener>
<param.AnnotationChecksum>3243021137</param.AnnotationChecksum>
<var.LegacyTarget />
<var.MirrorOnOpen>false</var.MirrorOnOpen>
<param.FixedPointEnabled>false</param.FixedPointEnabled>
<var.redirectedInputTypeData />
<var.DismissScreener>false</var.DismissScreener>
<param.unifiedParamStorage />
<var.gc.lastOutputRoot>codegen\lib\ACC_PI_test</var.gc.lastOutputRoot>
<var.gc.lastOutputType>C_CODE</var.gc.lastOutputType>
<var.gc.preBuildChecksum>357947165</var.gc.preBuildChecksum>
<var.cfi.lastOutputRoot>codegen\mex\ACC_PI_test</var.cfi.lastOutputRoot>
<var.cfi.preBuildChecksum>1526156904</var.cfi.preBuildChecksum>
<var.lastCfiTestSnippet>ACC_PI_test(velex(1), velex(2), mean_measurement(1), mean_measurement(2), msg_odom.Twist.Twist.Linear.X, msg_odom.Twist.Twist.Linear.Y)</var.lastCfiTestSnippet>
<var.outdatedOnRestore>false</var.outdatedOnRestore>
<var.lastUserSourceChecksum><?xml version="1.0" encoding="UTF-8" standalone="yes"?><checksum><includedFiles><file>C:\Turtlebot_pro\Turtlebot_project-matlab_pro_file\ACC_PI_test.m</file></includedFiles><value>3600752487</value></checksum></var.lastUserSourceChecksum>
<var.sourceSetState><?xml version="1.0" encoding="UTF-8" standalone="yes"?><sourceModel><primarySourceFiles><file>C:\Turtlebot_pro\Turtlebot_project-matlab_pro_file\ACC_PI_test.m</file></primarySourceFiles><fixedPointSourceFiles/><fixedPointSourceRegistered>false</fixedPointSourceRegistered><fixedPointSourceSelected>false</fixedPointSourceSelected></sourceModel></var.sourceSetState>
<param.forceMexBuild>false</param.forceMexBuild>
<param.NoDefaultJIT>false</param.NoDefaultJIT>
<param.configImportActive>false</param.configImportActive>
<var.isGpuCoder>false</var.isGpuCoder>
<var.notGpuCoder>true</var.notGpuCoder>
<var.boundToGui>true</var.boundToGui>
<param.mex.outputfile>ACC_PI_test_mex</param.mex.outputfile>
<param.grt.outputfile>ACC_PI_test</param.grt.outputfile>
<param.artifact>option.target.artifact.lib</param.artifact>
<param.outputfile>${PROJECT_ROOT}\codegen\lib\ACC_PI_test\ACC_PI_test.lib</param.outputfile>
<param.gpu.Enabled>false</param.gpu.Enabled>
<param.gpu.KernelNamePrefix />
<param.gpu.SelectCudaDevice>-1</param.gpu.SelectCudaDevice>
<param.gpu.MallocMode>discrete</param.gpu.MallocMode>
<param.gpu.MallocThreshold>200</param.gpu.MallocThreshold>
<param.gpu.StackLimitPerThread>1024</param.gpu.StackLimitPerThread>
<param.gpu.EnableCUBLAS>true</param.gpu.EnableCUBLAS>
<param.gpu.EnableCUSOLVER>true</param.gpu.EnableCUSOLVER>
<param.gpu.EnableCUFFT>true</param.gpu.EnableCUFFT>
<param.gpu.Benchmarking>false</param.gpu.Benchmarking>
<param.gpu.SafeBuild>false</param.gpu.SafeBuild>
<param.gpu.ComputeCapability>3.5</param.gpu.ComputeCapability>
<param.gpu.CustomComputeCapability />
<param.gpu.CompilerFlags />
<var.checkIssuesGpu>false</var.checkIssuesGpu>
<var.hasGpu>false</var.hasGpu>
<var.isDeepLearningForMatlabCoderEnabled>true</var.isDeepLearningForMatlabCoderEnabled>
<param.deeplearning.TargetLib>option.deeplearning.targetlibrary.none</param.deeplearning.TargetLib>
<var.hideTensorRT>false</var.hideTensorRT>
<var.hasMatlabDeepLearningSupportPackage>true</var.hasMatlabDeepLearningSupportPackage>
<var.hasGpuDeepLearningSupportPackage>true</var.hasGpuDeepLearningSupportPackage>
<param.tensorrt.DataType>option.tensorrt.datatype.fp32</param.tensorrt.DataType>
<param.tensorrt.DataPath />
<param.tensorrt.NumCalibrationBatches>1</param.tensorrt.NumCalibrationBatches>
<param.cudnn.AutoTuning>true</param.cudnn.AutoTuning>
<param.TargetLang>option.TargetLang.CPP</param.TargetLang>
<param.EnableAutoExtrinsicCalls>true</param.EnableAutoExtrinsicCalls>
<param.UsePreconditions>false</param.UsePreconditions>
<param.FeatureFlags />
<param.FixedPointMode>option.FixedPointMode.None</param.FixedPointMode>
<param.AutoScaleLoopIndexVariables>false</param.AutoScaleLoopIndexVariables>
<param.ComputedFixedPointData />
<param.UserFixedPointData />
<param.DefaultWordLength>16</param.DefaultWordLength>
<param.DefaultFractionLength>4</param.DefaultFractionLength>
<param.FixedPointSafetyMargin>0</param.FixedPointSafetyMargin>
<param.FixedPointFimath>fimath('RoundingMethod', 'Floor', 'OverflowAction', 'Wrap', 'ProductMode', 'FullPrecision', 'MaxProductWordLength', 128, 'SumMode', 'FullPrecision', 'MaxSumWordLength', 128)</param.FixedPointFimath>
<param.FixedPointTypeSource>option.FixedPointTypeSource.SimAndDerived</param.FixedPointTypeSource>
<param.StaticAnalysisTimeout />
<param.StaticAnalysisGlobalRangesOnly>false</param.StaticAnalysisGlobalRangesOnly>
<param.LogAllIOValues>false</param.LogAllIOValues>
<param.DetectOverflows>false</param.DetectOverflows>
<param.LogHistogram>false</param.LogHistogram>
<param.ShowCoverage>true</param.ShowCoverage>
<param.ExcludedFixedPointVerificationFiles />
<param.ExcludedFixedPointSimulationFiles />
<param.InstrumentedBuildChecksum />
<param.FixedPointStaticAnalysisChecksum />
<param.InstrumentedMexFile />
<param.FixedPointValidationChecksum />
<param.FixedPointSourceCodeChecksum />
<param.FixedPointFunctionReplacements />
<param.OptimizeWholeNumbers>true</param.OptimizeWholeNumbers>
<param.ContainerTypes>false</param.ContainerTypes>
<param.GeneratedFixedPointFileSuffix>_fixpt</param.GeneratedFixedPointFileSuffix>
<param.PlotFunction />
<param.SDIPlot>false</param.SDIPlot>
<param.EnableCodeEfficiencyChecks>false</param.EnableCodeEfficiencyChecks>
<param.DefaultFixedPointSignedness>option.DefaultFixedPointSignedness.Automatic</param.DefaultFixedPointSignedness>
<param.FixedPointTypeProposalMode>option.FixedPointTypeProposalMode.ProposeFractionLengths</param.FixedPointTypeProposalMode>
<param.EnableFixedPointStep>false</param.EnableFixedPointStep>
<var.lastFixedPointAction>option.fixedPointAction.none</var.lastFixedPointAction>
<var.lastSimContext />
<var.lastVerifyContext />
<param.fpDataRoot />
<param.fpUserFileChecksum />
<var.snapshotChecksum />
<param.fpLastConvertChecksum />
<var.functionBlockSid />
<param.fptSignedness>false</param.fptSignedness>
<var.FixedPointAnalysisMode>option.FixedPointAnalysisMode.Sim</var.FixedPointAnalysisMode>
<param.FixedPointUseDesignRanges>false</param.FixedPointUseDesignRanges>
<unset>
<param.objective />
<param.DefaultImportExportVariable />
<param.ExternalFcnMajority />
<param.UseGlobals />
<param.outputfile />
<param.version />
<param.HasECoderFeatures />
<param.HasGpuCoder />
<var.HasNeuralNetworkToolbox />
<param.mex.mainhtml />
<param.grt.mainhtml />
<param.CallGeneratedCodeFromTest />
<param.AutoInferDefaultFile />
<param.AutoInferUseVariableSize />
<param.AutoInferUseUnboundedSize />
<param.AutoInferVariableSizeThreshold />
<param.AutoInferUnboundedSizeThreshold />
<param.EnableFixedPointStep />
<param.EnableScreener />
<var.LegacyTarget />
<var.MirrorOnOpen />
<param.FixedPointEnabled />
<var.redirectedInputTypeData />
<var.DismissScreener />
<param.unifiedParamStorage />
<var.outdatedOnRestore />
<param.forceMexBuild />
<param.NoDefaultJIT />
<param.configImportActive />
<var.isGpuCoder />
<var.notGpuCoder />
<param.mex.outputfile />
<param.grt.outputfile />
<param.gpu.Enabled />
<param.gpu.KernelNamePrefix />
<param.gpu.SelectCudaDevice />
<param.gpu.MallocMode />
<param.gpu.MallocThreshold />
<param.gpu.StackLimitPerThread />
<param.gpu.EnableCUBLAS />
<param.gpu.EnableCUSOLVER />
<param.gpu.EnableCUFFT />
<param.gpu.Benchmarking />
<param.gpu.SafeBuild />
<param.gpu.ComputeCapability />
<param.gpu.CustomComputeCapability />
<param.gpu.CompilerFlags />
<var.checkIssuesGpu />
<var.hasGpu />
<var.isDeepLearningForMatlabCoderEnabled />
<param.deeplearning.TargetLib />
<var.hideTensorRT />
<var.hasMatlabDeepLearningSupportPackage />
<var.hasGpuDeepLearningSupportPackage />
<param.tensorrt.DataType />
<param.tensorrt.DataPath />
<param.tensorrt.NumCalibrationBatches />
<param.cudnn.AutoTuning />
<param.EnableAutoExtrinsicCalls />
<param.UsePreconditions />
<param.FeatureFlags />
<param.FixedPointMode />
<param.AutoScaleLoopIndexVariables />
<param.ComputedFixedPointData />
<param.UserFixedPointData />
<param.DefaultWordLength />
<param.DefaultFractionLength />
<param.FixedPointSafetyMargin />
<param.FixedPointFimath />
<param.FixedPointTypeSource />
<param.StaticAnalysisTimeout />
<param.StaticAnalysisGlobalRangesOnly />
<param.LogAllIOValues />
<param.DetectOverflows />
<param.LogHistogram />
<param.ShowCoverage />
<param.ExcludedFixedPointVerificationFiles />
<param.ExcludedFixedPointSimulationFiles />
<param.InstrumentedBuildChecksum />
<param.FixedPointStaticAnalysisChecksum />
<param.InstrumentedMexFile />
<param.FixedPointValidationChecksum />
<param.FixedPointSourceCodeChecksum />
<param.FixedPointFunctionReplacements />
<param.OptimizeWholeNumbers />
<param.ContainerTypes />
<param.GeneratedFixedPointFileSuffix />
<param.PlotFunction />
<param.SDIPlot />
<param.EnableCodeEfficiencyChecks />
<param.DefaultFixedPointSignedness />
<param.FixedPointTypeProposalMode />
<var.lastFixedPointAction />
<var.lastSimContext />
<var.lastVerifyContext />
<param.fpDataRoot />
<param.fpUserFileChecksum />
<var.snapshotChecksum />
<param.fpLastConvertChecksum />
<var.functionBlockSid />
<param.fptSignedness />
<var.FixedPointAnalysisMode />
<param.FixedPointUseDesignRanges />
</unset>