Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for setAttr (0.31 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      if (failed(::mlir::TF::UpdateDataFormat(data_format, this))) return failure();
    
      // Update convolution attributes.
      (*this)->setAttr("dilations", ShuffleArrayAttr(getDilations(), perm));
      (*this)->setAttr("strides", ShuffleArrayAttr(getStrides(), perm));
      (*this)->setAttr("explicit_paddings",
                       ShuffleArrayAttr(getExplicitPaddings(), perm, 2));
    
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

              /*type=*/mlir::TypeAttr::get(value_attr.getType()),
              /*is_mutable=*/nullptr);
          op->setAttr(
              kTfSavedModelExportedNamesAttr,
              builder.getStrArrayAttr(object_names.GetExportedNames(node_id)));
        }
      }
      AdjustBoundInputArgTypes(module);
      module->setAttr("tf_saved_model.semantics", builder.getUnitAttr());
      SortSavedModelModule(module);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                addSetterForProperty(property, setter);
            }
    
            private void addSetterForProperty(PropertyMetadata property, Method setter) {
                // GENERATE public void <setter>(<type> value) { <field> == value }
                Type fieldType = getType(property.getType());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    java.util.List componentDescriptors; public void Requirement(Object, java.util.List); public Object getAssignment(); public java.util.List getComponentDescript(); } org/codehaus/plexus/component/composition/setter/SetterComponentCompo.class package org.codehaus.plexus.component.composition.setter; public synchronized class SetterComponentCompo extends org.codehaus.plexus.component.composition.AbstractComponentCom { public static final String PROPERTY_DESCRIPTORS; public void SetterComponentCompo();...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 205.7K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    java.util.List componentDescriptors; public void Requirement(Object, java.util.List); public Object getAssignment(); public java.util.List getComponentDescript(); } org/codehaus/plexus/component/composition/setter/SetterComponentCompo.class package org.codehaus.plexus.component.composition.setter; public synchronized class SetterComponentCompo extends org.codehaus.plexus.component.composition.AbstractComponentCom { public static final String PROPERTY_DESCRIPTORS; public void SetterComponentCompo();...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 205.7K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    java.util.List componentDescriptors; public void Requirement(Object, java.util.List); public Object getAssignment(); public java.util.List getComponentDescript(); } org/codehaus/plexus/component/composition/setter/SetterComponentCompo.class package org.codehaus.plexus.component.composition.setter; public synchronized class SetterComponentCompo extends org.codehaus.plexus.component.composition.AbstractComponentCom { public static final String PROPERTY_DESCRIPTORS; public void SetterComponentCompo();...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 233.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    java.util.List componentDescriptors; public void Requirement(Object, java.util.List); public Object getAssignment(); public java.util.List getComponentDescript(); } org/codehaus/plexus/component/composition/setter/SetterComponentCompo.class package org.codehaus.plexus.component.composition.setter; public synchronized class SetterComponentCompo extends org.codehaus.plexus.component.composition.AbstractComponentCom { public static final String PROPERTY_DESCRIPTORS; public void SetterComponentCompo();...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 233.3K bytes
    - Viewed (0)
  8. fastapi/routing.py

                    "/"
                ), "A path prefix must not end with '/', as the routes will start with '/'"
            else:
                for r in router.routes:
                    path = getattr(r, "path")  # noqa: B009
                    name = getattr(r, "name", "unknown")
                    if path is not None and not path:
                        raise FastAPIError(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    template <typename CallOpClass>
    static LogicalResult VerifyPartitionedCall(CallOpClass op,
                                               SymbolTableCollection &symbolTable) {
      SymbolRefAttr func = op->getAttr("f").template cast<SymbolRefAttr>();
      auto function = symbolTable.lookupNearestSymbolFrom<func::FuncOp>(op, func);
      if (!function) {
        return op.emitError("'f' attribute refers to an undefined function: ")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        // 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)
Back to top