Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for extractID (0.22 sec)

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

          slice_begin, slice_end, slice_stride);
      return true;
    }
    
    OpFoldResult StridedSliceOp::fold(FoldAdaptor) {
      // Fold StridedSlice operation if it extracts statically known dimensions.
      //
      // For example,
      //
      //   %shape  = tf.Shape(%arg)                   // %arg: tensor<?x2x3x1xf32>
      //   %height = tf.StridedSlice(%shape, 1, 2, 1)
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

                                    PatternRewriter& rewriter) const override;
    };
    
    LogicalResult FoldConstantCaseOp::matchAndRewrite(
        TF::CaseOp op, PatternRewriter& rewriter) const {
      // Extract the constant cond value.
      DenseIntElementsAttr branch;
      if (!matchPattern(op.getBranchIndex(), m_Constant(&branch))) return failure();
    
      int index = *branch.getValues<int>().begin();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. cmd/server_test.go

    	response, err = s.client.Do(request)
    	c.Assert(err, nil)
    	// assert the http response status code.
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	var buffer bytes.Buffer
    	// extract the body of the response.
    	responseBody, err := io.ReadAll(response.Body)
    	c.Assert(err, nil)
    	// assert the http response body content.
    	c.Assert(true, bytes.Equal(responseBody, buffer.Bytes()))
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    Supporting class for matching a feature of an object. FeatureMatcher(Matcher<? super U>, String, String) - Constructor for class org.hamcrest.FeatureMatcher Constructor featureValueOf(T) - Method in class org.hamcrest.FeatureMatcher Implement this to extract the interesting feature. findExpectedType(Class<?>) - Method in class org.hamcrest.internal.ReflectiveTypeFinder H hasItem(Matcher<? super T>) - Static method in class org.hamcrest.core.IsCollectionContaini Creates a matcher for Iterables that only...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      }
      if (padding_attr == tflite::Padding_VALID) {
        return kTfLitePaddingValid;
      }
    
      return inst->emitOpError() << "Invalid padding attribute: " << padding,
             std::nullopt;
    }
    
    // Extracts TfLitePoolParams from a TFL custom op.
    // Template parameter, TFLOp, should be a TFL custom op containing attributes
    // generated from TfLitePoolParams.
    // Returns std::nullopt if conversion fails.
    template <typename TFLOp>
    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/transforms/shape_inference.cc

      if (failed(InferShapeForFunctionReturnType(func))) return false;
    
      return false;
    }
    
    bool ShapeInference::InferShapeForXlaHostComputeMlir(
        _XlaHostComputeMlirOp host_compute_op) {
      // Extract the module and function.
      // The '_XlaHostComputeMlir` verifier verifies that `host_mlir_module`
      // attribute is well formed, so we just return in case of an error in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

        cat "${cert_create_debug_output}" >&2
        echo "=== Failed to generate cloud-pvl-admission certificates: Aborting ===" >&2
        exit 2
      fi
    }
    
    # Using provided master env, extracts value from provided key.
    #
    # Args:
    # $1 master env (kube-env of master; result of calling get-master-env)
    # $2 env key to use
    function get-env-val() {
      local match
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        TFL::QConstOp bias_tfl_op;
        bool fuse_bias_constant =
            FindUserOfType<stablehlo::AddOp>(op) && has_i32_output;
        // Get the desired output type and extract any existing fusible bias
        // as `TFL::QConstOp` so that it can be fused with TFL::FullyConnectedOp`.
        const Type output_type = GetOutputTypeAndOptionallyUpdateBias(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  9. pkg/volume/util/operationexecutor/operation_generator.go

    		kubeClient:      kubeClient,
    		volumePluginMgr: volumePluginMgr,
    		recorder:        recorder,
    		blkUtil:         blkUtil,
    		translator:      csitrans.New(),
    	}
    }
    
    // OperationGenerator interface that extracts out the functions from operation_executor to make it dependency injectable
    type OperationGenerator interface {
    	// Generates the MountVolume function needed to perform the mount of a volume plugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // depends on an op with static output shape like tf.Const.
      absl::StatusOr<mlir::FunctionType> InferLibFunctionType(
          const FunctionBody& fbody);
    
      // Extracts arg and ret nodes from FunctionBody.
      void GetArgsAndRetsFromFunctionBody(
          const FunctionBody& fbody,
          absl::InlinedVector<OutputTensor, 4>* arg_nodes,
          absl::InlinedVector<OutputTensor, 4>* ret_nodes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top