Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for untouched (0.28 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_to_vhlo.cc

              }
            }
          }
        });
      });
      return success();
    }
    
    // Legalize StableHLO portion of program to VHLO, leaves TFL untouched
    LogicalResult ApplyStablehloToVhloPatterns(ModuleOp module,
                                               bool is_func_legal) {
      MLIRContext *context = module.getContext();
      ConversionTarget target(*context);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 19:48:51 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_main_function.mlir

      "tf_saved_model.asset"() {filename = "assets/mydata.txt", sym_name = "__tf_saved_model_asset0_mydata.txt"} : () -> ()
    // Session initializer ops and asset ops untouched.
    // CHECK: "tf_saved_model.session_initializer"() <{initializers = [@NoOp]}> : () -> ()
    // CHECK: "tf_saved_model.asset"() <{filename = "assets/mydata.txt", sym_name = "__tf_saved_model_asset0_mydata.txt"}> : () -> ()
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/merge_initializer_function_ops_to_main.mlir

    // Check that the initializers attribute is untouched.
    // CHECK: "tf_saved_model.session_initializer"()
    // CHECK-SAME: initializers = [@NoOp]
    
      func.func @NoOp()
        attributes {tf_saved_model.exported_names = ["__tf_saved_model_session_initializer_NoOp"], tf_saved_model.initializer_type = "init_op"} {
        return
      }
    // The initializer function is untouched when the main function is empty.
    // CHECK: func.func @NoOp
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/workflow/runner_test.go

    				rt.runner.SetAdditionalFlags(rt.setAdditionalFlags)
    			}
    
    			rt.runner.BindToCommand(cmd)
    
    			// in case of no phases, checks that cmd is untouched
    			if len(rt.runner.Phases) == 0 {
    				if cmd.Long != "" {
    					t.Error("cmd.Long is set while it should be leaved untouched\n")
    				}
    
    				if cmd.Flags().Lookup("skip-phases") != nil {
    					t.Error("cmd has skip-phases flag while it should not\n")
    				}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 20:03:45 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationWritingIntegTest.groovy

            createMetadataFile {
                addChecksum("org:foo:1.0", "md5", "abc")
                addChecksum("org:foo:1.0", "sha1", "1234")
                addChecksum("org:bar:1.0", "sha1", "untouched")
                trust("dummy", "artifact")
                trust("other", "artifact", "with", "file.jar", true)
            }
    
            given:
            javaLibrary()
            def foo = uncheckedModule("org", "foo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  6. src/math/big/arith_arm64.s

    // if 'x' and 'z' happen to share the same underlying storage.
    // The overhead of the checking and branching is visible when 'z' are small (~5%),
    // so set a threshold of 32, and remain the small-sized part entirely untouched.
    TEXT ·addVW(SB),NOSPLIT,$0
    	MOVD	z+0(FP), R3
    	MOVD	z_len+8(FP), R0
    	MOVD	x+24(FP), R1
    	MOVD	y+48(FP), R2
    	CMP	$32, R0
    	BGE	large		// large-sized 'z' and 'x'
    	CBZ	R0, len0	// the length of z is 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/DefaultDeleterTest.groovy

            content.assertDoesNotExist()
        }
    
        @Requires(UnitTestPreconditions.Symlinks)
        def "recreates target directory when symlink is found, leaving linked content untouched"() {
            def linked = tmpDir.createDir("linked")
            def content = linked.createFile("content.txt")
            def target = tmpDir.file("target").tap { Files.createSymbolicLink(it.toPath(), linked.toPath()) }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:40:48 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/tests/duplicate_shape_determining_constants.mlir

    // CHECK-DAG: %[[CST_0:.*]] = "tf.Const"
    // CHECK-SAME: dense<1>
    // Check that there are no extra "tf.Const"s existing in this function.
    // CHECK-NOT: "tf.Const"
    
    // Check that the usages of %[[CST]] and %[[CST_0]] are untouched.
    // CHECK: %[[ADD:.*]] = "tf.AddV2"(%[[CST]], %[[CST_0]])
    // CHECK: "tf.Max"({{.*}}, %[[ADD]])
    
    // -----
    
    // CHECK-LABEL: @recursively_duplicate_constants
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 07:44:46 UTC 2022
    - 11K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    ----
    
    Your logger can implement any of the listener interfaces listed below.
    When you register a logger, only the logging for the interfaces it implements is replaced.
    Logging for the other interfaces is left untouched.
    You can find out more about the listener interfaces in <<build_lifecycle.adoc#sec:build_phases,Build lifecycle events>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. pkg/volume/util/resize_util.go

    		return nil, fmt.Errorf("error marshalling json patch: %v", err)
    	}
    	return versionBytes, nil
    }
    
    // MergeResizeConditionOnPVC updates pvc with requested resize conditions
    // leaving other conditions untouched.
    func MergeResizeConditionOnPVC(
    	pvc *v1.PersistentVolumeClaim,
    	resizeConditions []v1.PersistentVolumeClaimCondition) *v1.PersistentVolumeClaim {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 14.8K bytes
    - Viewed (0)
Back to top