Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for arguments_ (0.18 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        in the flatbuffer.
      }];
    
      let arguments = (ins I32Attr:$buffer_index);
    
      let results = (outs AnyTensor:$output);
    }
    
    def TFL_Conv2DOp : TFL_ConvOp<"conv_2d", "Convolution", 0,
          [DeclareOpInterfaceMethods<InferTypeOpInterface>,
           DeclareOpInterfaceMethods<TFL_ArithmeticCount>,
           DynamicRangeQuantizedOpInterface]> {
      let arguments = (
        ins TFL_TensorOf<[F32, QI8, QUI8, QI16]>:$input,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        to input arguments and outputs of the function(s).
    
        Two types of resources are supported:
        (1) A function argument of TF::ResourceType type (this pass).
        (2) A VarHandleOp in the function (tf-promote-var-handles-to-args).
    
        After the pass,
    
         . The function will have an input argument for each resource that is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    </pre>
    
    <p>
    The type of the arguments and return value correspond.
    For <code>complex</code>, the two arguments must be of the same
    floating-point type and the return type is the complex type
    with the corresponding floating-point constituents:
    <code>complex64</code> for <code>float32</code> arguments, and
    <code>complex128</code> for <code>float64</code> arguments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        return op.emitOpError()
               << "input tensor argument is " << input_tensor_shape.size()
               << " which is invalid, since input tensor argument must has a "
               << "rank greater than 2.\n";
      }
    
      if (kernel_tensor_shape.size() <= 2) {
        return op.emitOpError()
               << "kernel tensor argument is " << kernel_tensor_shape.size()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // flag may be used with or without -m.
    //
    // The arguments to list -m are interpreted as a list of modules, not packages.
    // The main module is the module containing the current directory.
    // The active modules are the main module and its dependencies.
    // With no arguments, list -m shows the main module.
    // With arguments, list -m shows the modules specified by the arguments.
    // Any of the active modules can be specified by its module path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    	}
    	return abs
    }
    
    // passLongArgsInResponseFiles modifies cmd such that, for
    // certain programs, long arguments are passed in "response files", a
    // file on disk with the arguments, with one arg per line. An actual
    // argument starting with '@' means that the rest of the argument is
    // a filename of arguments to expand.
    //
    // See issues 18468 (Windows) and 37768 (Darwin).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      int func_arg_count = function_ty.getNumInputs();
      int arg_count = op.getArgs().size();
    
      if (arg_count != func_arg_count) {
        return op.emitError() << "argument count mismatch: 'args' has " << arg_count
                              << " arguments, but '" << func << "' expects "
                              << func_arg_count;
      }
    
      return success();
    }
    
    LogicalResult PartitionedCallOp::verifySymbolUses(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // operation before the dst operation.
      Status AddBackedge(mlir::Operation* sink, mlir::Operation* dst,
                         int dst_input);
    
      // Adds the input arguments and return operation to the function. The
      // arguments are added as basic block argument. Also the argument types and
      // the id of the nodes from the input graph needs to be specified.
      Status ConvertFunctionArgAndRets(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. src/reflect/value.go

    			panic("reflect: CallSlice with too few input arguments")
    		}
    		if len(in) > n {
    			panic("reflect: CallSlice with too many input arguments")
    		}
    	} else {
    		if isVariadic {
    			n--
    		}
    		if len(in) < n {
    			panic("reflect: Call with too few input arguments")
    		}
    		if !isVariadic && len(in) > n {
    			panic("reflect: Call with too many input arguments")
    		}
    	}
    	for _, x := range in {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      if (op.getCond().front().getNumArguments() !=
          op.getBody().front().getNumArguments())
        return op.emitOpError(llvm::formatv(
            "number of arguments in condition function does not match number of "
            "arguments in body function ({0} != {1})",
            op.getCond().front().getNumArguments(),
            op.getBody().front().getNumArguments()));
      // Verify shapes are compatible.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top