forked from VowpalWabbit/vowpal_wabbit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: reduce header includes to improve buildtime (VowpalWabbit#3803)
* build: reduce header includes to improve buildtime * add missing test header * add header * test ref files * add header * formatting
- Loading branch information
1 parent
e2446a0
commit dde8b11
Showing
72 changed files
with
194 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[info] Generating 3-grams for all namespaces. | ||
[info] Generating 1-skips for all namespaces. | ||
[info] m = 15, allocated 34M for weights and mem | ||
[critical] vw (bfgs.cc:1053): model load failed. Error Details: BFGS does not support models with save_resume data. Only models produced and consumed with --predict_only_model can be used with BFGS., model files = models/0001_1.model | ||
[critical] vw (bfgs.cc:1055): model load failed. Error Details: BFGS does not support models with save_resume data. Only models produced and consumed with --predict_only_model can be used with BFGS., model files = models/0001_1.model |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
[critical] vw (gd_mf.cc:266): model load failed. Error Details: Model weights object was not initialized when trying to data load into it., model files = model-sets/corrupted_weights_gd.model | ||
[critical] vw (gd_mf.cc:268): model load failed. Error Details: Model weights object was not initialized when trying to data load into it., model files = model-sets/corrupted_weights_gd.model |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
[critical] vw (io_buf.h:367): model load failed. Error Details: Unexpected end of file encountered., model files = model-sets/corrupted_weights_gd_mf.model | ||
[critical] vw (io_buf.h:365): model load failed. Error Details: Unexpected end of file encountered., model files = model-sets/corrupted_weights_gd_mf.model |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[error] vw example #0(parse_example.cc:100): malformed example! '|',space, or EOL expected after : "| x:0.7"in Example #0: "| x:0.7" | ||
[error] vw example #0(parse_example.cc:101): malformed example! '|',space, or EOL expected after : "| x:0.7"in Example #0: "| x:0.7" | ||
|
||
[critical] vw (parse_example.cc:100): malformed example! '|',space, or EOL expected after : "| x:0.7"in Example #0: "| x:0.7" | ||
[critical] vw (parse_example.cc:101): malformed example! '|',space, or EOL expected after : "| x:0.7"in Example #0: "| x:0.7" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[error] vw example #0(parse_example.cc:100): malformed example! '|',space, or EOL expected after : "| x:0.7"in Example #0: "| x:0.7" | ||
[error] vw example #0(parse_example.cc:101): malformed example! '|',space, or EOL expected after : "| x:0.7"in Example #0: "| x:0.7" | ||
|
||
[critical] vw (parse_example.cc:100): malformed example! '|',space, or EOL expected after : "| x:0.7"in Example #0: "| x:0.7" | ||
[critical] vw (parse_example.cc:101): malformed example! '|',space, or EOL expected after : "| x:0.7"in Example #0: "| x:0.7" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,8 @@ | |
|
||
#include "config/cli_help_formatter.h" | ||
|
||
#include <fmt/format.h> | ||
|
||
#include <sstream> | ||
#include <string> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
#pragma once | ||
|
||
#include <string> | ||
#include <vector> | ||
|
||
#include "config/help_formatter.h" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ | |
|
||
#pragma once | ||
|
||
#include <iostream> | ||
#include <set> | ||
#include <string> | ||
#include <unordered_map> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,6 @@ | |
|
||
#pragma once | ||
|
||
#include <fmt/format.h> | ||
|
||
#include <algorithm> | ||
#include <cassert> | ||
#include <cstddef> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.