OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:column_limit
(Results
1 - 2
of
2
) sorted by null
/external/yapf/yapf/yapflib/
format_decision_state.py
79
self.
column_limit
= style.Get('
COLUMN_LIMIT
')
367
return arglist_length > self.
column_limit
456
if (self.
column_limit
- self.column) / float(self.
column_limit
) < 0.3:
656
self.column > self.
column_limit
):
657
excess_characters = self.column - self.
column_limit
781
return length + self.column <= self.
column_limit
810
if length + self.stack[-2].indent >= self.
column_limit
:
[
all
...]
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
tiled_dot_emitter.cc
307
int64
column_limit
= k() - column_remainder;
local
310
/*start=*/0, /*end=*/
column_limit
, /*step=*/tile_cols(),
316
EmitOuterLoopBody(b_->getInt64(
column_limit
), column_remainder,
317
column_limit
== 0);
565
int64
column_limit
= k() - (k() % tile_cols());
local
567
ksl_.For("dot.inner.tiled", /*start=*/0, /*end=*/
column_limit
,
[
all
...]
Completed in 117 milliseconds