Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for lamp (0.15 sec)

  1. doc/go_spec.html

    </p>
    <pre class="grammar">
    +    &amp;     +=    &amp;=     &amp;&amp;    ==    !=    (    )
    -    |     -=    |=     ||    &lt;     &lt;=    [    ]
    *    ^     *=    ^=     &lt;-    &gt;     &gt;=    {    }
    /    &lt;&lt;    /=    &lt;&lt;=    ++    =     :=    ,    ;
    %    &gt;&gt;    %=    &gt;&gt;=    --    !     ...   .    :
         &amp;^          &amp;^=          ~
    </pre>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    func.func @clip_dynamic(%arg0 : tensor<?xf32>, %arg1 : tensor<?xf32>, %arg2 : tensor<?xf32>) -> tensor<?xf32> {
      // CHECK-DAG: [[CLAMP:%.+]] = mhlo.clamp %arg1, %arg0, %arg2
      %0 = "tf.ClipByValue"(%arg0, %arg1, %arg2) : (tensor<?xf32>, tensor<?xf32>, tensor<?xf32>) -> tensor<?xf32>
    
      // CHECK: return [[CLAMP]]
      func.return %0 : tensor<?xf32>
    }
    
    // -----
    
    // CHECK-LABEL: @clip_static_broadcast
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  3. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    order-box"},".box-content":{"box-sizing":"content-box"}})},lineClamp:({matchUtilities:i,addUtilities:e,theme:t})=>{i({"line-clamp":r=>({overflow:"hidden",display:"-webkit-box","-webkit-box-orient":"vertical","-webkit-line-clamp":`${r}`})},{values:t("lineClamp")}),e({".line-clamp-none":{overflow:"visible",display:"block","-webkit-box-orient":"horizontal","-webkit-line-clamp":"none"}})},display:({addUtilities:i})=>{i({".block":{display:"block"},".inline-block":{display:"inline-block"},".inline":{d...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

                          &reduce_window_op.getBody());
    
        rewriter.replaceOp(op, reduce_window_op.getResults());
    
        return success();
      }
    };
    
    // Converts ClipByValue to XLA's clamp operation. Includes the broadcasting
    // semantics for static and dynamic cases.
    class ConvertClipByValueOp : public OpRewritePattern<TF::ClipByValueOp> {
     public:
      using OpRewritePattern::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top