Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 122 for some_name (0.2 sec)

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

        initializer functions.
    
        The `sym_name` represents the symbol table name used for internal IR
        references.
    
        The `filename` attribute contains the file path to the asset file and it is
        relative to saved model directory.
      }];
    
      let arguments = (ins
        StrAttr:$sym_name,
        StrAttr:$filename
      );
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/query/StoredLtrQueryBuilder.java

        public static final ParseField MODEL_NAME = new ParseField("model");
        public static final ParseField FEATURESET_NAME = new ParseField("featureset");
        public static final ParseField STORE_NAME = new ParseField("store");
        public static final ParseField PARAMS = new ParseField("params");
        public static final ParseField ACTIVE_FEATURES = new ParseField("active_features");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold_utils.cc

      }
    
      // Builds TF operation and sets all the attributes.
      std::string node_name = "unnamed";
      if (const StringAttr attr = inst->getAttrOfType<StringAttr>("name")) {
        node_name = std::string(attr.getValue());
      }
      absl::StatusOr<std::unique_ptr<tensorflow::NodeDef>> node_def =
          tensorflow::ConvertTFDialectOpToNodeDef(
              inst, node_name.c_str(), /*ignore_unregistered_attrs=*/true);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/multi_variables_v1.py

    from tensorflow.compiler.mlir.tensorflow.tests.tf_saved_model import common_v1
    
    # CHECK: "tf_saved_model.global_tensor"() <{is_mutable, sym_name = "[[VAR0:[a-zA-Z_0-9]+]]", type = tensor<5x3xf32>, value = {{.*}} : tensor<5x3xf32>}> : () -> ()
    # CHECK: "tf_saved_model.global_tensor"() <{is_mutable, sym_name = "[[VAR1:[a-zA-Z_0-9]+]]", type = tensor<3x5xf32>, value = {{.*}} : tensor<3x5xf32>}> : () -> ()
    # CHECK:      func {{@[a-zA-Z_0-9]+}}(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/readonly_references_to_resources.cc

          return StringRef();
        }
      }
    
      StringRef result;
      for (Attribute class_attr : classes_attr) {
        StringRef node_name = mlir::cast<StringAttr>(class_attr).getValue();
        if (!node_name.starts_with(kLocationPrefix)) {
          continue;
        }
        if (!result.empty()) {
          // Invalid case since there are multiple loc:@ attributes.
          op->emitOpError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectTest.groovy

            properties['someTask'] == testTask
        }
    
        def extraPropertiesAreInheritable() {
            when:
            project.ext.somename = 'somevalue'
            then:
            project.inheritedScope.hasProperty('somename')
            project.inheritedScope.getProperty('somename') == 'somevalue'
        }
    
        def conventionPropertiesAreInheritable() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

      return absl::OkStatus();
    }
    
    Status MakeXlaCompiledKernel(Graph* graph, const string& callee_name,
                                 const string& node_name, int num_constant_args,
                                 int num_resource_args, Node** result) {
      NodeDef call_node;
      call_node.set_name(node_name);
      call_node.set_op(callee_name);
      AddNodeAttr(kXlaCompiledKernelAttr, true, &call_node);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.cc

                            const absl::string_view contains) {
      for (const std::string& node_name : control_ret_node_names) {
        if (absl::StrContains(node_name, contains)) {
          VLOG(1) << "Node found: " << node_name << ", contains: " << contains;
          return node_name;
        }
      }
      VLOG(1) << "Could not find node whose name conatins: " << contains;
      return "";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/WtpFacetTest.groovy

        private InputStream getCustomFacetReader() {
            getClass().getResourceAsStream('customOrgEclipseWstCommonProjectFacetCoreXml.xml')
        }
    
        private Facet createSomeFacet() {
            new Facet(FacetType.installed, 'someName', '1.0.0')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/basic.py

      # CHECK: "tf_saved_model.global_tensor"() <{sym_name = "[[CONST:[a-zA-Z_0-9.]+]]", type = tensor<f32>, value = dense<4.300000e+01> : tensor<f32>}> {tf_saved_model.exported_names = [{{.*}}]} : () -> ()
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top