Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for ods (0.05 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.cc

      // The elements are owned by the MLIRContext.
      absl::flat_hash_set<absl::string_view> attrs_to_ignore;
    
      // We ignore attributes attached to the operation when there is already a
      // derived attribute defined in ODS.
      if (derived_attrs) {
        for (auto derived_attr : derived_attrs) {
          attrs_to_ignore.insert(
              mlir::StringRefToView(derived_attr.getName().strref()));
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.cc

            return absl::InternalError("The input of BatchMatMul must have rank.");
          }
        } else if (function_name.contains("gather")) {
          // This op is guaranteed to be a constant as ODS checks IsConstTensor.
          // Check if the number of elements meets the requirement.
          int64_t num_elements =
              mlir::cast<ShapedType>(call_op.getOperand(0).getType())
                  .getNumElements();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

    // Implementation for all the operations defined in ODS (op definition spec).
    //===----------------------------------------------------------------------===//
    
    namespace {
    
    // Verifies that every control operands are at the end of the list.
    // Used by the constraint `ControlOperandsAfterAllData` in ODS.
    LogicalResult VerifyControlOperandsAfterAllData(Operation *op) {
      bool found_control = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    application/vnd.ms-powerpoint=powerpoint\n\
    application/vnd.openxmlformats-officedocument.presentationml.presentation=powerpoint\n\
    application/vnd.oasis.opendocument.text=odt\n\
    application/vnd.oasis.opendocument.spreadsheet=ods\n\
    application/vnd.oasis.opendocument.presentation=odp\n\
    application/pdf=pdf\n\
    application/x-fictionbook+xml=fb2\n\
    application/e-pub+zip=epub\n\
    application/x-ibooks+zip=ibooks\n\
    text/plain=txt\n\
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

      // expected-remark@above {{Sinks: {24}}}
    }
    
    // -----
    
    // Tests that the pass tracks control dependencies based on TF op registry
    // statefulness flag, for ops not yet defined in ODS.
    
    // CHECK-LABEL: func @tf_registry_ops
    func.func @tf_registry_ops(
      // expected-remark@above {{ID: 8}}
      %arg0: tensor<!tf_type.string>, %arg1: tensor<!tf_type.string>) {
      tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * application/vnd.openxmlformats-officedocument.presentationml.presentation=powerpoint<br>
         * application/vnd.oasis.opendocument.text=odt<br>
         * application/vnd.oasis.opendocument.spreadsheet=ods<br>
         * application/vnd.oasis.opendocument.presentation=odp<br>
         * application/pdf=pdf<br>
         * application/x-fictionbook+xml=fb2<br>
         * application/e-pub+zip=epub<br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

            <match type="string" offset="30"
                   value="mimetypeapplication/vnd.oasis.opendocument.spreadsheet"/>
          </match>
        </magic>
        <glob pattern="*.ods"/>
        <sub-class-of type="application/zip"/>
      </mime-type>
    
      <mime-type type="application/vnd.oasis.opendocument.spreadsheet-template">
        <alias type="application/x-vnd.oasis.opendocument.spreadsheet-template"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top