Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,519 for emission (0.14 sec)

  1. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/disable_builtin.mlir

    // RUN: not flatbuffer_translate -mlir-to-tflite-flatbuffer -emit-builtin-tflite-ops=false %s 2>&1 | FileCheck %s
    
    // CHECK: 'tfl.add' op is a TFLite builtin op but builtin emission is not enabled
    
    func.func @main(tensor<3x2xi32>) -> tensor<3x2xi32> {
    ^bb0(%arg0: tensor<3x2xi32>):
      %0 = "arith.constant"() {name = "Const2", value = dense<10> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:31:32 UTC 2022
    - 547 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_translate_flags.h

    #ifndef TENSORFLOW_COMPILER_MLIR_LITE_FLATBUFFER_TRANSLATE_FLAGS_H_
    #define TENSORFLOW_COMPILER_MLIR_LITE_FLATBUFFER_TRANSLATE_FLAGS_H_
    
    #include <string>
    
    // These flags are used to control the emission or not of different kinds of ops
    // during the flatbuffer translation.
    extern bool emit_builtin_tflite_ops;
    extern bool emit_select_tf_ops;
    extern bool emit_custom_ops;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 23 05:49:32 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export_flags.h

    #ifndef TENSORFLOW_COMPILER_MLIR_LITE_FLATBUFFER_EXPORT_FLAGS_H_
    #define TENSORFLOW_COMPILER_MLIR_LITE_FLATBUFFER_EXPORT_FLAGS_H_
    
    #include <string>
    
    // These flags are used to control the emission or not of different kinds of ops
    // during the flatbuffer translation.
    extern bool emit_builtin_tflite_ops;
    extern bool emit_select_tf_ops;
    extern bool emit_custom_ops;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 20 17:49:09 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/io/src/test/groovy/org/gradle/internal/io/SkipFirstTextStreamTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.io
    
    import spock.lang.Specification
    
    class SkipFirstTextStreamTest extends Specification {
    
        def "skips the first emission"() {
            given:
            def delegate = Mock(TextStream)
            def skipper = new SkipFirstTextStream(delegate)
    
            when:
            skipper.text("a")
            skipper.text("b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:13 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/cmd/trace/jsontrace.go

    			log.Printf("failed to generate trace: %v", err)
    		}
    	})
    }
    
    // traceContext is a wrapper around a traceviewer.Emitter with some additional
    // information that's useful to most parts of trace viewer JSON emission.
    type traceContext struct {
    	*traceviewer.Emitter
    	startTime trace.Time
    	endTime   trace.Time
    }
    
    // elapsed returns the elapsed time between the trace time and the start time
    // of the trace.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. src/runtime/coro.go

    	}
    
    	// Emit the trace event after getting gnext but before changing curg.
    	// GoSwitch expects that the current G is running and that we haven't
    	// switched yet for correct status emission.
    	if trace.ok() {
    		trace.GoSwitch(gnext, exit)
    	}
    
    	// Start running next, without heavy scheduling machinery.
    	// Set mp.curg and gnext.m and then update scheduling state
    	// directly if possible.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. src/compress/lzw/writer.go

    	// converting a code stream into a byte stream.
    	order Order
    	write func(*Writer, uint32) error
    	nBits uint
    	width uint
    	bits  uint32
    	// hi is the code implied by the next code emission.
    	// overflow is the code at which hi overflows the code width.
    	hi, overflow uint32
    	// savedCode is the accumulated code at the end of the most recent Write
    	// call. It is equal to invalidCode if there was no such call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

            mlir::TF::CreateFallbackToFlexOpsPass(
                toco_flags.tf_quantization_mode()));
      }
      // The below passes only make sense if Builtin TFLite ops are enabled
      // for emission.
      if (pass_config.emit_builtin_tflite_ops) {
        // Run shape inference after variables are converted to constants.
        if (pass_config.shape_inference) {
          pass_manager->addPass(mlir::TF::CreateTFShapeInferencePass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. src/internal/trace/internal/oldtrace/parser.go

    	// The last part is giving correct timestamps to EvGoSysExit events. The
    	// problem with EvGoSysExit is that actual syscall exit timestamp
    	// (ev.Args[2]) is potentially acquired long before event emission. So far
    	// we've used timestamp of event emission (ev.Ts). We could not set ev.Ts =
    	// ev.Args[2] earlier, because it would produce seemingly broken timestamps
    	// (misplaced event). We also can't simply update the timestamp and resort
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  10. plugin/pkg/admission/certificates/approval/admission.go

    // Register registers a plugin
    func Register(plugins *admission.Plugins) {
    	plugins.Register(PluginName, func(config io.Reader) (admission.Interface, error) {
    		return NewPlugin(), nil
    	})
    }
    
    // Plugin holds state for and implements the admission plugin.
    type Plugin struct {
    	*admission.Handler
    	authz authorizer.Authorizer
    }
    
    // SetAuthorizer sets the authorizer.
    func (p *Plugin) SetAuthorizer(authz authorizer.Authorizer) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 3.2K bytes
    - Viewed (0)
Back to top