Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 333 for transformAction (0.38 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tpu_dynamic_layout_pass.cc

      return builder->create<TF::TPUCopyWithLayoutOp>(
          execute_launch.getLoc(), llvm::ArrayRef<Type>{input.getType()},
          llvm::ArrayRef<Value>{input, get_layout.getLayout()});
    }
    
    // Performs transformation for a non-replicated input.
    void HandleInput(Value input, const int64_t execute_arg_index,
                     TF::TPUExecuteOp execute, tf_device::LaunchOp execute_launch,
                     tf_device::LaunchOp compile_launch) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

      // this class) and the all the calls match using the given argument matcher.
      //
      // If such a trivial transformation is possible, stash the relevant
      // information needed for the transformation, else indicate that a trivial
      // transformation is not possible by setting `can_transform` to false.
      TrivialTransformInfo(std::optional<func::CallOp> first_call,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

            succeeds("showBuildscript")
            // A jar coming from some file repo is copied into the transformation cache and served from there.
            inArtifactTransformCache("test-1.3-BUILD-SNAPSHOT.jar")
            // A jar coming from remote repo is cached in the global modules cache and served from there.
            // It isn't copied into the transformation cache.
            // The transformed counterparts are not visible when printing classpath data.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/metrics/metrics.go

    		&metrics.HistogramOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "dek_cache_inter_arrival_time_seconds",
    			Help:           "Time (in seconds) of inter arrival of transformation requests.",
    			StabilityLevel: metrics.ALPHA,
    			Buckets:        metrics.ExponentialBuckets(60, 2, 10),
    		},
    		[]string{"transformation_type"},
    	)
    
    	// These metrics are made public to be used by unit tests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 09 22:31:32 UTC 2023
    - 12K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/transform/transform.go

    	// receive all of the transformed bytes.
    	ErrShortDst = errors.New("transform: short destination buffer")
    
    	// ErrShortSrc means that the source buffer has insufficient data to
    	// complete the transformation.
    	ErrShortSrc = errors.New("transform: short source buffer")
    
    	// ErrEndOfSpan means that the input and output (the transformed input)
    	// are not identical.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/text/transform/transform.go

    	// receive all of the transformed bytes.
    	ErrShortDst = errors.New("transform: short destination buffer")
    
    	// ErrShortSrc means that the source buffer has insufficient data to
    	// complete the transformation.
    	ErrShortSrc = errors.New("transform: short source buffer")
    
    	// ErrEndOfSpan means that the input and output (the transformed input)
    	// are not identical.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 21.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/quantize.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    // This transformation pass applies quantization on TFLite dialect.
    
    #include <cstddef>
    #include <string>
    #include <utility>
    
    #include "absl/container/flat_hash_set.h"
    #include "llvm/ADT/STLExtras.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.td

          %2 = "tf.TPUExecuteAndUpdateVariables"(%arg0, %arg1, %compile)
            { device_var_reads_indices = [0, 1],
              device_var_updates_indices = [0, -1] }
        ````
    
        The transformation happens only for on-device variables. The above
        transformation requires `%arg0`, `%arg1` to have the same device assignment
        as the `TPUExecute` op.
      }];
    
      let dependentDialects = [
        "mhlo::MhloDialect",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_weights.cc

        // pass.
        //
        // Note that a constant can be used by multiple ops. For example, if a graph
        // looks like below:
        // const -> while -> quant_op
        //       -> not_quant_op
        //
        // the transformation will be:
        // q_const -> dequant_op -> while -> quant_op
        //                       -> not_quant_op
        // And the dequant_op op will propagate towards quant_op only.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/passes.td

      ];
    }
    
    def ModifyIONodesPass : Pass<"tfl-modify-io-nodes", "mlir::func::FuncOp"> {
      let summary = "Modify the type of the model io nodes";
      let description = [{
          This transformation pass modifies the input and output types of the function
          to what are specified. The task was not just adding cast operations, but,
          instead, using tfl.quantize and tfl.dequantize ops to scale the tensors.
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top