英文字典中文字典Word104.com



中文字典辭典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   







請輸入英文單字,中文詞皆可:

pipeline    音標拼音: [p'ɑɪpl,ɑɪn]
n. 管道線

管道線

pipeline
管道;流水線;管線

pipeline
管線

pipeline
n 1: gossip spread by spoken communication; "the news of their
affair was spread by word of mouth" [synonym: {grapevine},
{pipeline}, {word of mouth}]
2: a pipe used to transport liquids or gases; "a pipeline runs
from the wells to the seaport" [synonym: {pipeline}, {line}]

pipeline \pipeline\, pipe line \pipe line\
1. A line of pipe with pumping machinery and apparatus for
conveying liquids, gases, or finely divided solids, such
as petroleum or natural gas, between distant points.
[Webster 1913 Suppl. PJC]

2. fig. an information channel direct from the source.
[PJC]

3. the set of stages and processes from the invention or
design of a product to its ultimate use, production, or
commercial sale. Used commonly in the phrase

{in the pipeline}, i. e. still in preparation or under
development.
[PJC]


Pipe-line \Pipe"-line`\, v. t.
To convey by a pipe line; to furnish with a pipe line or pipe
lines.
[Webster 1913 Suppl.]

67 Moby Thesaurus words for "pipeline":
adjutage, bush telegraph, catheter, channel, coming, conduit,
confidential information, connection, contact, conveyor, cooking,
drainpipe, duct, efflux tube, fire hose, flue pipe, flume, funnel,
garden hose, gas pipe, grapevine, grapevine telegraph, hose,
hosepipe, imminent, in the offing, in the works, inside dope,
inside information, insider, line, main, nipple, on the way,
organ pipe, origin, passage, pipe, pipette, piping,
put through channels, ready, reed, reed pipe, siamese,
siamese connection, siphon, snorkel, soil pipe, source, standpipe,
steam pipe, stem, straw, supplier, tap, the lowdown, tube, tubing,
tubulation, tubule, tubulet, tubulure, under way, waste pipe,
water pipe, wellspring

A sequence of {functional units} ("stages")
which performs a task in several steps, like an assembly line
in a factory. Each functional unit takes inputs and produces
outputs which are stored in its output {buffer}. One stage's
output buffer is the next stage's input buffer. This
arrangement allows all the stages to work in parallel thus
giving greater throughput than if each input had to pass
through the whole pipeline before the next input could enter.

The costs are greater latency and complexity due to the need
to synchronise the stages in some way so that different inputs
do not interfere. The pipeline will only work at full
efficiency if it can be filled and emptied at the same rate
that it can process.

Pipelines may be synchronous or asynchronous. A synchronous
pipeline has a master clock and each stage must complete its
work within one cycle. The minimum clock period is thus
determined by the slowest stage. An asynchronous pipeline
requires {handshaking} between stages so that a new output is
not written to the interstage buffer before the previous one
has been used.

Many {CPUs} are arranged as one or more pipelines, with
different stages performing tasks such as fetch instruction,
decode instruction, fetch arguments, arithmetic operations,
store results. For maximum performance, these rely on a
continuous stream of instructions fetched from sequential
locations in memory. Pipelining is often combined with
{instruction prefetch} in an attempt to keep the pipeline
busy.

When a {branch} is taken, the contents of early stages will
contain instructions from locations after the branch which
should not be executed. The pipeline then has to be flushed
and reloaded. This is known as a {pipeline break}.

(1996-10-13)

請選擇你想看的字典辭典:
單詞字典翻譯
pipeline查看 pipeline 在Google字典中的解釋Google英翻中〔查看〕
pipeline查看 pipeline 在Yahoo字典中的解釋Yahoo英翻中〔查看〕





安裝中文字典英文字典查詢工具!


中文字典英文字典工具:
選擇顏色:
輸入中英文單字

































































英文字典中文字典相關資料:
  • pipeline是什么? - 知乎
    pipeline,中文意为管线,意义等同于流水线。 最典型的就是Gpu渲染管线,它指明渲染一个画面需要经过多少到工序。还有就是应用于爬虫框架里面。它就是指某个项目或者框架里面需要用到流水线的设计来简化设计,降低复杂度并提高性能。
  • pipeline是什么? - 知乎
    比如pipeline,比如分层思想,比如设计模式,这是编程中最具魅力的地方,能让你有一种居高临下,指点江山的感觉。 一个框架如果使用了好的设计模式,好的分层会使得学习与使用的成本都会降低。
  • 深度学习论文中的pipeline 是什么意思? - 知乎
    深度学习的操作流水线,顾名思义。从数据开始,到模型,损失函数,优化算法到训练循环,推理输出一条龙服务。每个模块都有很多tricks,多做就有了pipeline
  • Diffusers如何使用本地的模型导入Pipeline? - 知乎
    解决方案就跟报错里面说的一样,在定义pipeline的时候把safety_checker=None传进去就可以绕过这个报错检查了。 也就是说,你原来的代码是: pipe = StableDiffusionPipeline from_single_file ( model_path , use_safetensors = True , torch_dtype = torch float16 , variant = "fp16" )
  • 如何搞懂一个销售pipeline? - 知乎
    通常会召开Pipeline review 会议来确定Pipeline的健康状况和质量,来预估团队是否能够完成季度的指标。 然而大部分情况是浪费了很多时间在管理工作上。 没有销售愿意将他们用于销售活动的时间去听他们的同事1对1的汇报,他们也不想别的同事听到他的汇报。
  • 是哪个人第一个把pipeline翻译成管线的? - 知乎
    pipeline 将多个 pipe 连接到一起, 协同工作来完成任务。在 pipeline 中,一个命令的输出被传递给下一个命令的输入,这样一连串的命令就能够协同工作,完成更加复杂的任务。 回到3D图形渲染领域里,下面的图就很形象,解释了什么是渲染管线 。它像一截截的
  • 2 Transformers pipeline 使用 - 知乎
    Transformers models pipeline 初体验 为了快速体验 Transformers,我们可以使用它的 pipeline API。它将模型的预处理, 后处理等步骤包装起来,使得我们可以直接定义好任务名称后,输出文本,直接得到我们需要的结果。这是一个高级的API,可以让我们领略到transformers 这个
  • 大模型训练 Pipeline Parallel 流水并行性能有没有什么评价指标?或者分析方法? - 知乎
    Design pipeline schedule 的前两步,摘自:Pipeline Parallelism with Controllable Memory 原文。 论文 Pipeline Parallelism with Controllable Memory 提出 design pipeline schedules 的第一步是规划 building block,这是构建流水间时间表的基本单元。
  • 美国药品的pipeline drug怎么理解? - 知乎
    pipeline 其实就是药物研发到市场化过程的一个代名词,这个过程包括了1前期的药物发现,2到药物的 临床前研究 ,3临床研究,4市场化,这四个步骤,在这个过程中,有许许多多的drug candidates(候选药物)(可能会有上万种,甚至十几万种 化合物 )会被screen
  • 大模型训练时ZeRO-2、ZeRO-3能否和Pipeline并行相结合? - 知乎
    大模型训练时ZeRO-2、ZeRO-3能否和Pipeline并行相结合? 如题,pipeline并行一般在多个micro-batch反向计算结束时再同步已经累积的梯度,而ZeRO-2由于切分了梯度需要频繁的通信梯度 显示全部





中文字典-英文字典  2005-2009

|中文姓名英譯,姓名翻譯 |简体中文英文字典