Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 66 of 66 for qtype_attr (0.42 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

      return builder.getI32IntegerAttr(value);
    }
    
    static mlir::Attribute BuildTypeAttr(tflite::TensorType value,
                                         mlir::Builder builder) {
      return mlir::TypeAttr::get(ConvertElementType(value, builder));
    }
    
    static mlir::Attribute BuildTFL_AFAttr(tflite::ActivationFunctionType value,
                                           mlir::Builder builder) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        type_attr = attr_value_pb2.AttrValue(type=types_pb2.DT_QINT8)
        if quantize:
          self.assertTrue(
              self._contains_op(output_graphdef, 'Const', 'dtype', type_attr)
          )
        else:
          self.assertFalse(
              self._contains_op(output_graphdef, 'Const', 'dtype', type_attr)
          )
    
      @parameterized.named_parameters(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

              name: "condition"
              type: DT_BOOL
            }
            input_arg {
              name: "t"
              type_attr: "T"
            }
            input_arg {
              name: "e"
              type_attr: "T"
            }
            output_arg {
              name: "output"
              type_attr: "T"
            }
            attr {
              name: "T"
              type: "type"
            }
          }
          op {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				if(!obj || obj === -1) { obj = this.get_container().find("> ul > li"); }
    				li_attr = $.isArray(li_attr) ? li_attr : [ "id", "class" ];
    				if(!is_callback && this.data.types) { li_attr.push(s.types.type_attr); }
    				a_attr = $.isArray(a_attr) ? a_attr : [ ];
    
    				obj.each(function () {
    					li = $(this);
    					tmp1 = { data : [] };
    					if(li_attr.length) { tmp1.attr = { }; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        // Const op can have a result of dynamic shaped type (e.g. due to constant
        // folding), but we can still derive the shape of a constant tensor for
        // its attribute type.
        auto tensor_attr = mlir::cast<mlir::TypedAttr>(inst->getAttr("value"));
        llvm::ArrayRef<int64_t> shape_ref =
            mlir::cast<TensorType>(tensor_attr.getType()).getShape();
        if (mlir::failed(check_shape(shape_ref))) return std::nullopt;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        TypeAttr:$key_dtype,
        TypeAttr:$value_dtype
      );
    
      let results = (outs
        Res<TF_ResourceTensor, [{Handle to a table.}], [TF_LookupTableAlloc]>:$table_handle
      );
    
      let builders = [
        OpBuilder<(ins "StringAttr":$container, "StringAttr":$shared_name,
          "BoolAttr":$use_node_name_sharing, "TypeAttr":$key_dtype, "TypeAttr":$value_dtype),
        [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top