Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for VariadicRegion (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

        regions are executed.
      }];
    
      let results = (outs
        Variadic<AnyType>:$execute_outputs
      );
    
      let regions = (region VariadicRegion<SizedRegion<1>>:$regions);
    
      let extraClassDeclaration = [{
        Block& GetRegionBlockWithIndex(unsigned index);
        Operation::result_range GetRegionOutputs(unsigned region_index);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

      // When the regions is empty, the tfr.func is an external function and used
      // to model the element type constraints of the tf op. Otherwise, there is one
      // region containing the composition.
      let regions = (region VariadicRegion<AnyRegion>:$body);
    
      let skipDefaultBuilders = 1;
    
      let builders = [
        OpBuilder<(ins "StringRef":$name, "FunctionType":$type,
          CArg<"ArrayRef<NamedAttribute>", "{}">:$attrs)>
      ];
    
    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/tensorflow/ir/tf_ops.td

        // op.
        BoolAttr:$is_stateless
      );
    
      let results = (outs
        Variadic<TF_Tensor>:$output
      );
    
      let regions = (region VariadicRegion<SizedRegion<1>>:$branches);
    
      let hasVerifier = 1;
    
      let hasCanonicalizer = 1;
    
    }
    
    // In MLIR, the TensorFlow tensor value is represented as an ElementsAttr, with
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

               computation but in different forms.
      }];
    
      let arguments = (ins Variadic<AnyTensor>:$input);
    
      let results = (outs Variadic<AnyTensor>:$output);
    
      let regions = (region VariadicRegion<SizedRegion<1>>:$calls);
    
      let hasCanonicalizer = 1;
    }
    
    
    def TFL_PowOp : TFL_Op<"pow", [
        ResultsBroadcastableShape,
        Pure,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top