Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
Eigen
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
llvm
Eigen
Commits
50c00d14
Commit
50c00d14
authored
14 years ago
by
Thomas Capricelli
Browse files
Options
Downloads
Patches
Plain Diff
be nice with the server : dont use -j3
parent
e87f6539
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/snippets/MatrixBase_reverse.cpp
+1
-1
1 addition, 1 deletion
doc/snippets/MatrixBase_reverse.cpp
scripts/eigen_gen_docs
+4
-2
4 additions, 2 deletions
scripts/eigen_gen_docs
with
5 additions
and
3 deletions
doc/snippets/MatrixBase_reverse.cpp
+
1
−
1
View file @
50c00d14
...
...
@@ -4,5 +4,5 @@ cout << "Here is the reverse of m:" << endl << m.reverse() << endl;
cout
<<
"Here is the coefficient (1,0) in the reverse of m:"
<<
endl
<<
m
.
reverse
()(
1
,
0
)
<<
endl
;
cout
<<
"Let us overwrite this coefficient with the value 4."
<<
endl
;
m
.
reverse
()(
1
,
0
)
=
4
;
//
m.reverse()(1,0) = 4;
cout
<<
"Now the matrix m is:"
<<
endl
<<
m
<<
endl
;
This diff is collapsed.
Click to expand it.
scripts/eigen_gen_docs
+
4
−
2
View file @
50c00d14
...
...
@@ -5,10 +5,12 @@
# will be used
USER
=
${
USER
:-
'orzel'
}
#ulimit -v 1024000
# step 1 : build
# todo if 'build is not there, create one:
#
mkdir build
(
cd
build
&&
cmake ..
&&
make
-j3
doc
)
||
{
echo
"make failed"
;
exit
1
;
}
mkdir
build
-p
(
cd
build
&&
cmake ..
&&
make doc
)
||
{
echo
"make failed"
;
exit
1
;
}
#todo: n+1 where n = number of cpus
#step 2 : upload
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment