Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 96 for Invert (0.26 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      func.return %1 : tensor<4xf32>
    }
    
    // CHECK-LABEL: testInvolution
    func.func @testInvolution(%arg0: tensor<4xi32>) -> (tensor<4xi32>) {
      // CHECK-NOT: tf.Invert
      %0 = "tf.Invert"(%arg0) : (tensor<4xi32>) -> tensor<4xi32>
      %1 = "tf.Invert"(%0) : (tensor<4xi32>) -> tensor<4xi32>
      func.return %1 : tensor<4xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

           | head -c 64
        )";
      done
      # Finally, convert the ASCII hex to base64 to increase the density.
      echo -n "${out}" | xxd -r -p | base64 -w 0
    }
    
    # Helper for configuring iptables rules for metadata server.
    #
    # $1 is the command flag (-I or -D).
    # $2 is the firewall action (LOG or REJECT).
    # $3 is the prefix for log output.
    # $4 is "!" to optionally invert the uid range.
    function gce-metadata-fw-helper {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    					} else if bo&0x10 == 0x10 {
    						// A branch based on the value of CTR. Invert the CTR comparison against zero bit.
    						bo ^= 0x2
    						invertible = true
    					} else if bo&0x04 == 0x04 {
    						// A branch based on CR bit. Invert the BI comparison bit.
    						bo ^= 0x8
    						invertible = true
    					}
    
    					if invertible {
    						// Rewrite
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/asmz.go

    	op_CDGR    uint32 = 0xB3C5 // FORMAT_RRE        CONVERT FROM FIXED (64 to long HFP)
    	op_CDGTR   uint32 = 0xB3F1 // FORMAT_RRE        CONVERT FROM FIXED (64 to long DFP)
    	op_CDGTRA  uint32 = 0xB3F1 // FORMAT_RRF5       CONVERT FROM FIXED (64 to long DFP)
    	op_CDLFBR  uint32 = 0xB391 // FORMAT_RRF5       CONVERT FROM LOGICAL (32 to long BFP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    [i.pos],"display","none")}var i=this;this.timer&&clearTimeout(this.timer),t?e():Ze.start(this.$el,this.startProps).then(e)}}};var Kr=["x","y","bgx","bgy","rotate","scale","color","backgroundColor","borderColor","opacity","blur","hue","grayscale","invert","saturate","sepia","fopacity","stroke"],Jr={mixins:[ir],props:Kr.reduce(function(t,e){return t[e]="list",t},{}),data:Kr.reduce(function(t,e){return t[e]=void 0,t},{}),computed:{props:function(g,m){var v=this;return Kr.reduce(function(t,e){if(H(g[e]))return...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  7. src/main/webapp/js/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        TensorId tensor = ParseTensorName(input_and_idx.value().first);
        auto remapped_it = remapped_feeds_.find(tensor);
        if (remapped_it != remapped_feeds_.end()) {
          inputs.insert({remapped_it->second, input_and_idx.index()});
        } else {
          inputs.insert({tensor.node(), input_and_idx.index()});
        }
      }
    
      absl::flat_hash_set<absl::string_view> output_node_names;
      std::vector<TensorId> outputs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    void Append(llvm::SmallVectorImpl<ValueT>& values, Range&& range) {
      values.insert(values.end(), range.begin(), range.end());
    }
    
    // Appends all elements in `range` to `values`.
    template <typename ValueT, typename Range, typename... RangeTs>
    void Append(llvm::SmallVectorImpl<ValueT>& values, Range&& range,
                RangeTs&&... ranges) {
      values.insert(values.end(), range.begin(), range.end());
      Append(values, ranges...);
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    		exec(t, db, "INSERT|people|name=Alice,age=?,photo=APHOTO", 1)
    		exec(t, db, "INSERT|people|name=Bob,age=?,photo=BPHOTO", 2)
    		exec(t, db, "INSERT|people|name=Chris,age=?,photo=CPHOTO,bdate=?", 3, chrisBirthday)
    	}
    	if name == "magicquery" {
    		// Magic table name and column, known by fakedb_test.go.
    		exec(t, db, "CREATE|magicquery|op=string,millis=int32")
    		exec(t, db, "INSERT|magicquery|op=sleep,millis=10")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top