Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for INS (0.02 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

      }];
    
      let arguments = (ins
        StrAttr:$node_def,
        I32Attr:$op_key
      );
    
      let assemblyFormat = "attr-dict";
    }
    
    def ConstOp: TensorflowMlrt_Op<"constop", []> {
      let summary = "The tf_mlrt ConstOp";
    
      let description = [{
        The ConstOp creates a constant tensorflow::Tensor from serialized proto.
      }];
    
      let arguments = (ins
        StrAttr:$tensor_proto
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

        %3 = tfr.constant [i32, f32] -> !tfr.attr
        %4 = tfr.constant f32 -> !tfr.attr
        ```
      }];
    
      let arguments = (ins TFR_allowedConstValues:$value);
    
      let results = (outs TFR_AttrType:$out);
    
      let hasFolder = 1;
    
      let builders = [
        OpBuilder<(ins "Attribute":$value),
        [{
          auto* ctx = value.getContext();
          $_state.addAttribute("value", value);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

        Set a tensor in resource array.
    
        arg: the tensor to be set in the resource array.
        index: the index in the resource array
    
        in_ch and out_ch are for control dependencies.
      }];
    
      let arguments = (ins
        TFRT_ChainType:$in_ch,
        TFTensorType:$arg,
        StrAttr:$device,
        I64Attr:$index
      );
    
      let results = (outs
        TFRT_ChainType:$out_ch
      );
    
      let assemblyFormat = "operands attr-dict";
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

      }];
    
      let arguments = (ins
        StrAttr:$device
      );
    
      let results = (outs
        Variadic<AnyType>:$results
      );
    
      let regions = (region SizedRegion<1>:$body);
    
      let extraClassDeclaration = [{
        Block &GetBody() { return getOperation()->getRegion(0).front(); }
        bool WrapsSingleOp();
      }];
    
      let builders = [
        OpBuilder<(ins "StringAttr":$device, "TypeRange":$result_types),
        [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

    // it is legal to use a quantized representation (but is not known to be
    // acceptable).
    def Quantization_QuantizeCastOp : Quantization_Op<"qcast", [Pure]> {
      let arguments = (ins quant_RealValueType:$arg);
      let results = (outs quant_RealValueType);
    }
    
    // A DequantizeCast op (dcast) represents the inverse of a qcast,
    // converting back from a quantized to quantizable (expressed) type.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.td

    // it is legal to use a quantized representation (but is not known to be
    // acceptable).
    def quantfork_QuantizeCastOp : quantfork_Op<"qcast", [Pure]> {
      let arguments = (ins quant_RealValueType:$arg);
      let results = (outs quant_RealValueType);
    }
    
    // A DequantizeCast op (dcast) represents the inverse of a qcast,
    // converting back from a quantized to quantizable (expressed) type.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 13 12:46:08 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        The non-control operands of the fetch operation are returned outside of the
        graph and must match the return type of the graph.
      }];
    
      let arguments = (ins
        Variadic<AnyType>:$fetches
      );
    
      let builders = [
        OpBuilder<(ins),
        [{
          build($_builder, $_state, {});
        }]>
       ];
    
      let assemblyFormat = "($fetches^ `:` type($fetches))? attr-dict";
    
      let hasVerifier = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  8. src/cmd/covdata/tool_test.go

    	if err := os.Mkdir(outdir, 0777); err != nil {
    		t.Fatalf("can't create outdir %s: %v", outdir, err)
    	}
    
    	// Merge the two dirs into a final result.
    	ins := fmt.Sprintf("-i=%s,%s", indir1, indir2)
    	out := fmt.Sprintf("-o=%s", outdir)
    	margs := []string{ins, out}
    	lines := runToolOp(t, s, "merge", margs)
    	if len(lines) != 0 {
    		t.Errorf("merge run produced %d lines of unexpected output", len(lines))
    		dumplines(lines)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/python/tfr_gen_test.py

        x_sum = math_ops.Add(x_sum, x[i])
      return x_sum
    
    
    @composite.Composite('TestInputNOp')
    def _tfr_control_flow_tensor_list_size(ins):
      n = len(ins)
      if n == 0:
        return array_ops.Const(value=[[0, 1], [2, 3]], dtype=dtypes.int64)
      else:
        return math_ops.AddN(ins)
    
    
    #--- test fn for tf ops ---
    
    
    @composite.Composite('TestComplexTFOp')
    def _tfr_tf_ops_complex(lhs, rhs):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 28.8K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java

            for (MetadataGraphVertex v : vertices) {
                sb.append("Vertex:  ").append(v.getMd().toString()).append('\n');
                List<MetadataGraphEdge> ins = getIncidentEdges(v);
                if (ins != null) {
                    for (MetadataGraphEdge e : ins) {
                        sb.append("       from :  ").append(e.toString()).append('\n');
                    }
                } else {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Oct 05 18:41:13 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top